DeskTop.js 698 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. ];
  627. //中山小学学生桌面图标的全局变量
  628. U.MD.D.I.guzmsStudentDeskIcon = [
  629. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  630. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  631. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  632. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  633. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  634. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  635. ];
  636. //福田
  637. U.MD.D.I.gdjgTeacherDeskIcon = [
  638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  640. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  641. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  642. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  643. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  644. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  645. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  646. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  647. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  650. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  651. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  652. ];
  653. //gdjg
  654. U.MD.D.I.gdjgAdminDeskIcon = [
  655. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  656. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  657. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  658. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  659. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  660. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  661. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  662. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  663. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  666. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  667. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  668. ];
  669. //hk
  670. U.MD.D.I.hkteacherDeskIcon = [
  671. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  672. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  673. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  674. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  675. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  676. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  677. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  678. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  679. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  680. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  681. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  682. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  684. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  687. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  690. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  693. ];
  694. //ricoh
  695. U.MD.D.I.ricohteacherDeskIcon = [
  696. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  697. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  700. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  701. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  702. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  703. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  704. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  705. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkStudentDeskIcon = [
  709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  712. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  715. ];
  716. //hk
  717. U.MD.D.I.hkaceteacherDeskIcon = [
  718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  722. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  724. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  725. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  726. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  727. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  728. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  729. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  730. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  731. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  735. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  736. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  737. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  738. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  739. ];
  740. //hk
  741. U.MD.D.I.hkaceStudentDeskIcon = [
  742. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  745. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  747. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  748. ];
  749. //香海正覺蓮社佛教正覺中學
  750. U.MD.D.I.hkZJLSteacherDeskIcon = [
  751. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  752. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  753. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  754. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  758. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  759. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  760. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  761. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  762. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  763. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  764. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  767. ];
  768. //香海正覺蓮社佛教正覺中學
  769. U.MD.D.I.hkZJLSStudentDeskIcon = [
  770. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. ];
  775. //云海
  776. U.MD.D.I.yunhaiTeacherDeskIcon = [
  777. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  778. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  779. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  780. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  784. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  785. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  786. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  787. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  788. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  789. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  790. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  791. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  792. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  795. ];
  796. //福田
  797. U.MD.D.I.heyuanTeacherDeskIcon = [
  798. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  799. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  800. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  802. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  803. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  804. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  805. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //福田
  812. U.MD.D.I.heyuanAdminDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  821. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  826. U.MD.D.I.szherTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  834. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  836. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  837. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  838. ];
  839. //dsei
  840. U.MD.D.I.dseiTeacherDeskIcon = [
  841. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  842. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  843. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  844. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  845. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  846. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  847. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  848. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  849. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  850. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  851. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  852. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  853. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  854. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  855. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  856. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  857. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  858. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  859. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  860. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  861. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  862. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  863. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  864. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  865. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  866. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  867. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  868. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  869. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  870. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  871. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  872. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  873. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  874. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  875. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  876. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  877. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  878. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  880. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  881. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  883. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  884. ];
  885. //dsei
  886. U.MD.D.I.dseiAdminDeskIcon = [
  887. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  888. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  889. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  890. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  891. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  892. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  893. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  894. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  895. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  896. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  897. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  898. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  899. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  900. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  901. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  902. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  903. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  904. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  905. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  906. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  907. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  908. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  909. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  910. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  911. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  912. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  913. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  914. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  915. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  916. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  917. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  918. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  919. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  920. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  921. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  922. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  923. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  924. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  928. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  930. ];
  931. //dsei
  932. U.MD.D.I.dseiStudentDeskIcon = [
  933. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  934. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  935. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  936. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  938. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  939. ];
  940. //未来教育基地
  941. U.MD.D.I.szjkyTeacherDeskIcon = [
  942. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  943. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  944. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  945. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  946. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  947. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  948. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  949. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  950. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  951. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  952. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  953. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  954. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  955. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  958. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  959. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  960. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  961. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  962. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  963. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  964. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  965. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  966. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  967. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  968. ];
  969. //未来教育基地
  970. U.MD.D.I.szjkyAdminDeskIcon = [
  971. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  972. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  973. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  974. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  975. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  976. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  977. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  978. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  979. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  980. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  981. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  982. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  983. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  984. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  988. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  989. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  990. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  991. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  992. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  993. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  994. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  995. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  996. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  997. ];
  998. //未来教育基地
  999. U.MD.D.I.szjkyStudentDeskIcon = [
  1000. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1001. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1002. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1005. ];
  1006. //成华教育局
  1007. U.MD.D.I.chjyjTeacherDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjAdminDeskIcon = [
  1025. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1026. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1030. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. ];
  1041. //成华教育局chjyj
  1042. U.MD.D.I.chjyjStudentDeskIcon = [
  1043. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcStudentDeskIcon = [
  1050. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. ];
  1055. //tpc
  1056. U.MD.D.I.tpcTeacherDeskIcon = [
  1057. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1058. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1063. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1064. ];
  1065. //tpc
  1066. U.MD.D.I.tpcAdminDeskIcon = [
  1067. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1068. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1069. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1070. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1071. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1072. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //THU-IOE
  1076. U.MD.D.I.thuioeTeacherDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1080. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1081. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1082. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1083. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1084. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1087. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1088. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1089. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1090. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1091. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1092. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1093. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1094. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1095. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1096. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1097. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1098. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1099. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1100. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1101. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1102. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1103. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1104. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1105. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1106. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1107. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1108. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1109. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1110. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //THU-IOE
  1118. U.MD.D.I.thuioeStudentDeskIcon = [
  1119. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1120. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1121. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1122. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. ];
  1124. //jccssyl
  1125. U.MD.D.I.jccssylTeacherDeskIcon = [
  1126. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1127. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1128. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1129. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1130. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1131. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1132. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1133. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1134. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1135. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1136. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1137. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1138. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1139. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1141. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1142. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1143. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1144. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1145. ];
  1146. //jccssyl
  1147. U.MD.D.I.jccssylStudentDeskIcon = [
  1148. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1149. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1150. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1152. ];
  1153. //cale
  1154. U.MD.D.I.caleTeacherDeskIcon = [
  1155. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1156. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1157. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1158. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1159. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1160. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1161. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1162. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1167. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1168. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1170. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1171. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1172. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1173. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1174. ];
  1175. //cale
  1176. U.MD.D.I.caleStudentDeskIcon = [
  1177. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1178. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1179. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1180. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1181. ];
  1182. //lqwmsgzs
  1183. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1184. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1185. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1186. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1187. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1188. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1189. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1190. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1191. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1192. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1193. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1194. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1195. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1196. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1197. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1198. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1199. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1200. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1201. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1204. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1205. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1206. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1207. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1208. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1209. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1210. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1211. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1212. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1213. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1214. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1215. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1216. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1217. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1218. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1219. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1220. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1221. ];
  1222. //lqwmsgzs
  1223. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1224. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1228. ];
  1229. //盐田区幼儿园
  1230. U.MD.D.I.ytyTeacherDeskIcon = [
  1231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1233. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1237. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1238. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. ];
  1245. //盐田区幼儿园
  1246. U.MD.D.I.ytyStudentDeskIcon = [
  1247. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1248. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1249. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1250. ];
  1251. //scnuai
  1252. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1253. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1254. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1258. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1259. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1260. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1261. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1262. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1263. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1264. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1265. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1268. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1269. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1270. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1271. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1272. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1273. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1274. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1275. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiAdminDeskIcon = [
  1279. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1280. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1284. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1285. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1289. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1290. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1291. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1294. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1295. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1296. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1297. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1298. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1299. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1300. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1301. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiStudentDeskIcon = [
  1305. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1306. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1307. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1308. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1309. ];
  1310. //cocobiz
  1311. U.MD.D.I.cocobizteacherDeskIcon = [
  1312. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1313. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1314. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1315. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1316. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1317. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1318. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1319. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1320. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1321. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1322. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1323. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1324. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1325. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1329. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1330. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1331. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1332. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1333. ];
  1334. //cocobiz
  1335. U.MD.D.I.cocobizStudentDeskIcon = [
  1336. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1337. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1338. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1339. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1342. ];
  1343. //xxzjky
  1344. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1345. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1346. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1347. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1348. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1352. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1356. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1357. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1358. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1365. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1366. ];
  1367. //xxzjky
  1368. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1369. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. ];
  1376. //nsfx
  1377. U.MD.D.I.nsfxTeacherDeskIcon = [
  1378. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1379. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1380. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1381. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1385. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1386. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1387. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1388. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1389. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1390. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1393. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1394. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1395. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1396. ];
  1397. //nsfx
  1398. U.MD.D.I.nsfxStudentDeskIcon = [
  1399. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1400. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1401. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1403. ];
  1404. //stia
  1405. U.MD.D.I.stiaTeacherDeskIcon = [
  1406. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1407. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1409. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1410. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1413. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1416. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1417. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1418. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1419. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1420. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1421. ];
  1422. //stia
  1423. U.MD.D.I.stiaStudentDeskIcon = [
  1424. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1425. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1426. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1427. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1428. ];
  1429. //szdjg
  1430. U.MD.D.I.szdjgTeacherDeskIcon = [
  1431. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1432. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. ];
  1434. //szdjg
  1435. U.MD.D.I.szdjgStudentDeskIcon = [
  1436. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. ];
  1441. //010607
  1442. U.MD.D.I.x010607TeacherDeskIcon = [
  1443. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1444. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1446. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1447. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1450. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1451. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1452. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1453. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1454. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1455. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1456. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1457. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1458. ];
  1459. //010607
  1460. U.MD.D.I.x010607StudentDeskIcon = [
  1461. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1462. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1463. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1464. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.x010608TeacherDeskIcon = [
  1468. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1469. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1470. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1471. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1472. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1473. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1474. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1475. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1476. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1477. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1478. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1479. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1480. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1481. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1482. ];
  1483. //010608
  1484. U.MD.D.I.x010608StudentDeskIcon = [
  1485. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. ];
  1490. //xhly
  1491. U.MD.D.I.xhlyTeacherDeskIcon = [
  1492. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1493. ];
  1494. //010608
  1495. U.MD.D.I.xhlyStudentDeskIcon = [
  1496. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSteacherDeskIcon = [
  1500. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1501. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1502. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1503. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1506. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1507. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1508. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1509. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1510. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1511. ];
  1512. //北师大
  1513. U.MD.D.I.BSDNSstudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //CUHK_EDU
  1520. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1536. ];
  1537. //CUHK_EDU
  1538. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //010503
  1545. U.MD.D.I.x010503TeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1556. ];
  1557. //010503
  1558. U.MD.D.I.x010503StudentDeskIcon = [
  1559. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1562. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1563. ];
  1564. //SPROUT Lab
  1565. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1566. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1567. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1569. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1570. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1571. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1572. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1573. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1574. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1575. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1576. ];
  1577. //SPROUT Lab
  1578. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1579. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1583. ];
  1584. //010204
  1585. U.MD.D.I.x010204TeacherDeskIcon = [
  1586. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1587. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. ];
  1589. //010204
  1590. U.MD.D.I.x010204StudentDeskIcon = [
  1591. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //trail
  1597. U.MD.D.I.trailTeacherDeskIcon = [
  1598. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1601. ];
  1602. //trail
  1603. U.MD.D.I.trailStudentDeskIcon = [
  1604. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1605. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1606. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. ];
  1609. //010504
  1610. U.MD.D.I.x010504TeacherDeskIcon = [
  1611. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1612. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1614. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1615. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1616. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1617. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1621. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1622. ];
  1623. //010504
  1624. U.MD.D.I.x010504StudentDeskIcon = [
  1625. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. ];
  1630. //010505
  1631. U.MD.D.I.x010505TeacherDeskIcon = [
  1632. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1633. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1635. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1638. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1639. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1640. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1641. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1642. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1643. ];
  1644. //010505
  1645. U.MD.D.I.x010505StudentDeskIcon = [
  1646. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //SCNUET
  1652. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1656. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1657. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1658. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1659. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1660. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1661. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1662. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1663. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1664. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1665. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1666. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1667. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1668. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1670. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1671. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1672. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1673. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1674. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1675. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1676. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1677. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1678. ];
  1679. //SCNUET
  1680. U.MD.D.I.SCNUETAdminDeskIcon = [
  1681. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1682. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1683. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1684. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1685. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1686. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1687. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1688. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1689. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1690. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1691. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1692. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1693. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1694. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1695. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1696. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1698. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1699. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1700. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1701. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1702. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1703. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1704. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1705. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1706. ];
  1707. //SCNUET
  1708. U.MD.D.I.SCNUETStudentDeskIcon = [
  1709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. ];
  1714. //x020201
  1715. U.MD.D.I.x020201TeacherDeskIcon = [
  1716. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1717. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1719. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1720. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1723. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1725. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1728. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1729. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1730. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1732. ];
  1733. //x020201
  1734. U.MD.D.I.x020201AdminDeskIcon = [
  1735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1737. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1738. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1740. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1741. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1744. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1745. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1746. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1747. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1750. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1751. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1752. ];
  1753. //020201
  1754. U.MD.D.I.x020201StudentDeskIcon = [
  1755. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1757. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1758. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1759. ];
  1760. //010611
  1761. U.MD.D.I.x010611TeacherDeskIcon = [
  1762. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1763. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1764. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1765. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1766. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1767. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1768. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1769. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1770. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1771. ];
  1772. //010611
  1773. U.MD.D.I.x010611StudentDeskIcon = [
  1774. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1775. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1776. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1778. ];
  1779. //010612
  1780. U.MD.D.I.x010612TeacherDeskIcon = [
  1781. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1782. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1783. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1784. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1785. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1786. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1789. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1791. ];
  1792. //010612
  1793. U.MD.D.I.x010612StudentDeskIcon = [
  1794. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1795. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1796. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1798. ];
  1799. //tianyuan
  1800. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1801. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1802. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1803. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1804. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1810. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1811. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1812. ];
  1813. //010611
  1814. U.MD.D.I.tianyuanStudentDeskIcon = [
  1815. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1817. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. ];
  1820. //320101
  1821. U.MD.D.I.x320101TeacherDeskIcon = [
  1822. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1823. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1824. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1825. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1826. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1827. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1828. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1829. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1830. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1831. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1832. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1833. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1834. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1835. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1836. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1837. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1838. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1839. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1840. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1841. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1842. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1843. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1844. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1845. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1846. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1847. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1848. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1849. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1850. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1851. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1852. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1853. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1854. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1856. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1857. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1858. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1859. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1860. ];
  1861. //320101
  1862. U.MD.D.I.x320101StudentDeskIcon = [
  1863. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1864. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1865. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1867. ];
  1868. //szsy
  1869. U.MD.D.I.szsyTeacherDeskIcon = [
  1870. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1871. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1872. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1873. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1874. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1875. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1876. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1877. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1878. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1879. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1880. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1881. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1883. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1884. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1885. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1886. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1887. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1888. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1889. ];
  1890. //szsy
  1891. U.MD.D.I.szsyStudentDeskIcon = [
  1892. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1893. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1894. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1895. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1896. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1897. ];
  1898. //010404
  1899. U.MD.D.I.x010404TeacherDeskIcon = [
  1900. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1901. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1902. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1903. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1904. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1905. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1906. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1907. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1908. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1909. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1910. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1911. ];
  1912. //010404
  1913. U.MD.D.I.x010404StudentDeskIcon = [
  1914. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1915. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1916. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1917. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1918. ];
  1919. //#region 桌面初始化a
  1920. /**
  1921. * 初始化桌面的起始函数
  1922. *
  1923. */
  1924. U.MD.D.I.init = function () {
  1925. if ($("#U_MD_D_K")[0]) {
  1926. //初始化桌面图标
  1927. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1928. // var clickUrl = ':12588/requestIp.php';
  1929. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1930. // U.MD.D.I.Ip = data;
  1931. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1932. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1933. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1934. // })
  1935. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1936. // })
  1937. }
  1938. }
  1939. /**
  1940. * 模式切换
  1941. *
  1942. */
  1943. U.MD.D.I.ModeCheck = function (type) {
  1944. if (US.Config.type == type) {
  1945. return
  1946. }
  1947. US.Config.type = type
  1948. $('.U_PBL_Check .active')[0].className = ''
  1949. if (type == 1) {
  1950. $('.U_PBL_Check div')[0].className = 'active'
  1951. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1952. } else {
  1953. $('.U_PBL_Check div')[1].className = 'active'
  1954. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1955. }
  1956. //初始化桌面图标
  1957. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1958. if (type == 2) {
  1959. U.MD.D.I.openApplication("project")
  1960. }
  1961. }
  1962. /**
  1963. * 隐藏任务栏
  1964. *
  1965. * @param {element} 桌面元素
  1966. */
  1967. U.MD.D.I.hiddenTaskbar = function (el) {
  1968. //任务栏位置变小
  1969. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1970. //桌面的位置变大
  1971. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1972. }
  1973. /**
  1974. * 隐藏任务栏
  1975. *
  1976. * @param {element} 桌面元素
  1977. */
  1978. U.MD.D.I.hiddenTaskbarout = function (el) {
  1979. //任务栏位置变小
  1980. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1981. //任务栏位置变化
  1982. U.selectEl(el).css({ "bottom": "-60px" });
  1983. //桌面的位置变大
  1984. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1985. }
  1986. }
  1987. /**
  1988. * 初始化打印桌面图标
  1989. *
  1990. * @param {element} 桌面元素
  1991. */
  1992. U.MD.D.I.initDesktopIcons = function (el, type) {
  1993. var i, //用于循环
  1994. _content, //桌面图标元素
  1995. _iconcontent, //桌面图标元素
  1996. _frag = $$("frag"), //定义一个碎片元素
  1997. _type = US.userInfo.type,
  1998. _org = US.userInfo.org,
  1999. _oid = US.userInfo.organizeid,
  2000. _role = US.userInfo.role,
  2001. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2002. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2003. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2004. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2005. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2006. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2007. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2008. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2009. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2010. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2011. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2012. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2013. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2014. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2015. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2016. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2017. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2018. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2019. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2020. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2021. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2022. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2023. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2024. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2025. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2026. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2027. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2028. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2029. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2030. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2031. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2032. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2033. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2034. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2035. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2036. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2037. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2038. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2039. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2040. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2041. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2042. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2043. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2044. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2045. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2046. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2047. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2048. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2049. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2050. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2051. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2052. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2053. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2054. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2055. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2056. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2057. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2058. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2059. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2060. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2061. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2062. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2063. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2064. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2065. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2066. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2067. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2068. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2069. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2070. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2071. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2072. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2073. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2074. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2075. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2076. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2077. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2078. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2079. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2080. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2081. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2082. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2083. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2084. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2085. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2086. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2087. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2088. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2089. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2090. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2091. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2092. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2093. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2094. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2095. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2096. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2097. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2098. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2099. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2100. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2101. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2102. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2103. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2104. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2105. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2106. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2107. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2108. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2109. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2110. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2111. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2112. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2113. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2114. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2115. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2116. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2117. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2118. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2119. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2120. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2121. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2122. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2123. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926'];
  2124. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d'];
  2125. //清楚桌面图标
  2126. el.innerHTML = "";
  2127. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2128. _teacherDesktopIconInfo.push(
  2129. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2130. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } }, { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } }, { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } }, { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2131. )
  2132. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2133. }
  2134. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2135. _teacherDesktopIconInfo.push(
  2136. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2137. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2138. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2139. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2140. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2141. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2142. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2143. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2144. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2145. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2146. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2147. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2148. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2149. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2150. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2151. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2152. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2153. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2154. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2155. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2156. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2157. )
  2158. }
  2159. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2160. _teacherDesktopIconInfo.push(
  2161. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2162. )
  2163. }
  2164. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2165. _nsfxTeacherDeskIconInfo.push(
  2166. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2167. )
  2168. }
  2169. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2170. // _teacherDesktopIconInfo.push(
  2171. // )
  2172. // }
  2173. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2174. _teacherDesktopIconInfo.push(
  2175. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2176. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2177. )
  2178. }
  2179. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2180. _teacherDesktopIconInfo.push(
  2181. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2183. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2184. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2185. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2186. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2187. )
  2188. _studentDesktopIconInfo.push(
  2189. )
  2190. }
  2191. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2192. _teacherDesktopIconInfo.push(
  2193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2194. )
  2195. _studentDesktopIconInfo.push(
  2196. )
  2197. }
  2198. //010606 组织
  2199. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2200. _teacherDesktopIconInfo.push(
  2201. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2202. )
  2203. _studentDesktopIconInfo.push(
  2204. )
  2205. }
  2206. //麒麟二中 和 民新小学
  2207. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2208. _teacherDesktopIconInfo.push(
  2209. )
  2210. }
  2211. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2212. _teacherDesktopIconInfo.push(
  2213. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2214. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2215. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2216. )
  2217. }
  2218. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2219. _hkTeacherDeskIconInfo.push(
  2220. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2221. )
  2222. }
  2223. //北师大附中(010601)
  2224. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2225. // _teacherDesktopIconInfo.push(
  2226. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2227. // )
  2228. // _studentDesktopIconInfo.push(
  2229. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2230. // )
  2231. // }
  2232. //樂善堂余近卿中學
  2233. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2234. _teacherDesktopIconInfo.push(
  2235. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2236. )
  2237. }
  2238. // Education Artificial Intelligence
  2239. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2240. _teacherDesktopIconInfo.push(
  2241. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2242. )
  2243. }
  2244. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2245. _teacherDesktopIconInfo.push(
  2246. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2247. )
  2248. }
  2249. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2250. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2251. _teacherDesktopIconInfo.push(
  2252. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2253. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2254. )
  2255. }
  2256. //麒麟二中
  2257. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2258. _studentDesktopIconInfo.push(
  2259. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2260. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2261. )
  2262. }
  2263. //万科双语
  2264. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2265. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2266. if (el.Name == '项目管理') {
  2267. el.Name = 'PBL项目'
  2268. }
  2269. return el
  2270. })
  2271. _studentDesktopIconInfo3.push(
  2272. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2273. )
  2274. }
  2275. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2276. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2277. return el.Name != '魔盒识字' && el.Name != '24点'
  2278. })
  2279. }
  2280. if ((_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") && _type == 2) {
  2281. _studentDesktopIconInfo.push(
  2282. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2283. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2284. )
  2285. }
  2286. //循环创建桌面图标
  2287. if (type == 1) {
  2288. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2289. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2290. _content = $$("div", {
  2291. className: "U_MD_D_KO",
  2292. "onmousedown": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_studentDesktopIconInfo[i]]),
  2296. "onclick": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_studentDesktopIconInfo[i]])
  2300. }, _frag); //
  2301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2304. }
  2305. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2306. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2307. _content = $$("div", {
  2308. className: "U_MD_D_KO",
  2309. "onmousedown": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2313. "onclick": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_hkZJLSStudentDeskIconInfo[i]])
  2317. }, _frag); //
  2318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2321. } //
  2322. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2323. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2324. _content = $$("div", {
  2325. className: "U_MD_D_KO",
  2326. "onmousedown": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_ytyStudentDeskIconInfo[i]]),
  2330. "onclick": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_ytyStudentDeskIconInfo[i]])
  2334. }, _frag); //
  2335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2338. } //
  2339. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2340. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2341. _content = $$("div", {
  2342. className: "U_MD_D_KO",
  2343. "onmousedown": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_jccssylStudentDeskIconInfo[i]]),
  2347. "onclick": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_jccssylStudentDeskIconInfo[i]])
  2351. }, _frag); //
  2352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2355. }
  2356. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2357. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2358. _content = $$("div", {
  2359. className: "U_MD_D_KO",
  2360. "onmousedown": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_scnuaiStudentDeskIconInfo[i]]),
  2364. "onclick": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_scnuaiStudentDeskIconInfo[i]])
  2368. }, _frag); //
  2369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2372. }
  2373. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2374. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2375. _content = $$("div", {
  2376. className: "U_MD_D_KO",
  2377. "onmousedown": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_caleStudentDeskIconInfo[i]]),
  2381. "onclick": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_caleStudentDeskIconInfo[i]])
  2385. }, _frag); //
  2386. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2387. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2388. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2389. }
  2390. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2391. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2392. _content = $$("div", {
  2393. className: "U_MD_D_KO",
  2394. "onmousedown": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_thuioeStudentDeskIconInfo[i]]),
  2398. "onclick": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_thuioeStudentDeskIconInfo[i]])
  2402. }, _frag); //
  2403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2406. }
  2407. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2408. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2409. _content = $$("div", {
  2410. className: "U_MD_D_KO",
  2411. "onmousedown": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_tpcStudentDeskIconInfo[i]]),
  2415. "onclick": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_tpcStudentDeskIconInfo[i]])
  2419. }, _frag); //
  2420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2423. } //
  2424. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2425. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2426. _content = $$("div", {
  2427. className: "U_MD_D_KO",
  2428. "onmousedown": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_chjyjStudentDeskIconInfo[i]]),
  2432. "onclick": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_chjyjStudentDeskIconInfo[i]])
  2436. }, _frag); //
  2437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2440. }
  2441. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2442. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2443. _content = $$("div", {
  2444. className: "U_MD_D_KO",
  2445. "onmousedown": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_szjkyStudentDeskIconInfo[i]]),
  2449. "onclick": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_szjkyStudentDeskIconInfo[i]])
  2453. }, _frag); //
  2454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2457. }
  2458. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2459. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2460. _content = $$("div", {
  2461. className: "U_MD_D_KO",
  2462. "onmousedown": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_x020201StudentDeskIconInfo[i]]),
  2466. "onclick": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_x020201StudentDeskIconInfo[i]])
  2470. }, _frag); //
  2471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2474. }
  2475. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2476. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2477. _content = $$("div", {
  2478. className: "U_MD_D_KO",
  2479. "onmousedown": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_SCNUETStudentDeskIconInfo[i]]),
  2483. "onclick": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_SCNUETStudentDeskIconInfo[i]])
  2487. }, _frag); //
  2488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2491. }
  2492. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2493. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2494. _content = $$("div", {
  2495. className: "U_MD_D_KO",
  2496. "onmousedown": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_dseiStudentDeskIconInfo[i]]),
  2500. "onclick": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_dseiStudentDeskIconInfo[i]])
  2504. }, _frag); //
  2505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2508. }
  2509. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2510. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2511. _content = $$("div", {
  2512. className: "U_MD_D_KO",
  2513. "onmousedown": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2517. "onclick": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2521. }, _frag); //
  2522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2525. }
  2526. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2527. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2528. _content = $$("div", {
  2529. className: "U_MD_D_KO",
  2530. "onmousedown": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_nsfxStudentDeskIconInfo[i]]),
  2534. "onclick": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_nsfxStudentDeskIconInfo[i]])
  2538. }, _frag); //
  2539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2542. }
  2543. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2544. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2545. _content = $$("div", {
  2546. className: "U_MD_D_KO",
  2547. "onmousedown": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_stiaStudentDeskIconInfo[i]]),
  2551. "onclick": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_stiaStudentDeskIconInfo[i]])
  2555. }, _frag); //
  2556. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2557. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2558. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2559. }
  2560. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2561. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2562. _content = $$("div", {
  2563. className: "U_MD_D_KO",
  2564. "onmousedown": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_szdjgStudentDeskIconInfo[i]]),
  2568. "onclick": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_szdjgStudentDeskIconInfo[i]])
  2572. }, _frag); //
  2573. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2574. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2575. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2576. }
  2577. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2578. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2579. _content = $$("div", {
  2580. className: "U_MD_D_KO",
  2581. "onmousedown": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_x010607StudentDeskIconInfo[i]]),
  2585. "onclick": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_x010607StudentDeskIconInfo[i]])
  2589. }, _frag); //
  2590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2593. }
  2594. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2595. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2596. _content = $$("div", {
  2597. className: "U_MD_D_KO",
  2598. "onmousedown": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_xhlyStudentDeskIconInfo[i]]),
  2602. "onclick": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_xhlyStudentDeskIconInfo[i]])
  2606. }, _frag); //
  2607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2610. }
  2611. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2612. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2613. _content = $$("div", {
  2614. className: "U_MD_D_KO",
  2615. "onmousedown": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2619. "onclick": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2623. }, _frag); //
  2624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2627. }
  2628. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2629. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2630. _content = $$("div", {
  2631. className: "U_MD_D_KO",
  2632. "onmousedown": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_x010503StudentDeskIconInfo[i]]),
  2636. "onclick": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_x010503StudentDeskIconInfo[i]])
  2640. }, _frag); //
  2641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2644. }
  2645. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2646. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2647. _content = $$("div", {
  2648. className: "U_MD_D_KO",
  2649. "onmousedown": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_x010504StudentDeskIconInfo[i]]),
  2653. "onclick": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_x010504StudentDeskIconInfo[i]])
  2657. }, _frag); //
  2658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2661. }
  2662. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2663. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2664. _content = $$("div", {
  2665. className: "U_MD_D_KO",
  2666. "onmousedown": U.UF.C.closure(function (obj) {
  2667. //防止拖动图标即打开了桌面应用
  2668. U.MD.D.click(this, obj);
  2669. }, [_x010505StudentDeskIconInfo[i]]),
  2670. "onclick": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_x010505StudentDeskIconInfo[i]])
  2674. }, _frag); //
  2675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2678. }
  2679. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2680. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2681. _content = $$("div", {
  2682. className: "U_MD_D_KO",
  2683. "onmousedown": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_x010404StudentDeskIconInfo[i]]),
  2687. "onclick": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_x010404StudentDeskIconInfo[i]])
  2691. }, _frag); //
  2692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2695. }
  2696. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2697. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2698. _content = $$("div", {
  2699. className: "U_MD_D_KO",
  2700. "onmousedown": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_x010204StudentDeskIconInfo[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_x010204StudentDeskIconInfo[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2712. }
  2713. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2714. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2715. _content = $$("div", {
  2716. className: "U_MD_D_KO",
  2717. "onmousedown": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_x320101StudentDeskIconInfo[i]]),
  2721. "onclick": U.UF.C.closure(function (obj) {
  2722. //防止拖动图标即打开了桌面应用
  2723. U.MD.D.click(this, obj);
  2724. }, [_x320101StudentDeskIconInfo[i]])
  2725. }, _frag); //
  2726. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2727. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2728. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2729. }
  2730. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2731. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2732. _content = $$("div", {
  2733. className: "U_MD_D_KO",
  2734. "onmousedown": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_trailStudentDeskIconInfo[i]]),
  2738. "onclick": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_trailStudentDeskIconInfo[i]])
  2742. }, _frag); //
  2743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2746. }
  2747. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2748. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2749. _content = $$("div", {
  2750. className: "U_MD_D_KO",
  2751. "onmousedown": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2755. "onclick": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2759. }, _frag); //
  2760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2763. }
  2764. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2765. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2766. _content = $$("div", {
  2767. className: "U_MD_D_KO",
  2768. "onmousedown": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_szsyStudentDeskIconInfo[i]]),
  2772. "onclick": U.UF.C.closure(function (obj) {
  2773. //防止拖动图标即打开了桌面应用
  2774. U.MD.D.click(this, obj);
  2775. }, [_szsyStudentDeskIconInfo[i]])
  2776. }, _frag); //
  2777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2780. }
  2781. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2782. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2783. _content = $$("div", {
  2784. className: "U_MD_D_KO",
  2785. "onmousedown": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_x010608StudentDeskIconInfo[i]]),
  2789. "onclick": U.UF.C.closure(function (obj) {
  2790. //防止拖动图标即打开了桌面应用
  2791. U.MD.D.click(this, obj);
  2792. }, [_x010608StudentDeskIconInfo[i]])
  2793. }, _frag); //
  2794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2797. }
  2798. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2799. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2800. _content = $$("div", {
  2801. className: "U_MD_D_KO",
  2802. "onmousedown": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_x010611StudentDeskIconInfo[i]]),
  2806. "onclick": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_x010611StudentDeskIconInfo[i]])
  2810. }, _frag); //
  2811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2814. }
  2815. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2816. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2817. _content = $$("div", {
  2818. className: "U_MD_D_KO",
  2819. "onmousedown": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_x010612StudentDeskIconInfo[i]]),
  2823. "onclick": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_x010612StudentDeskIconInfo[i]])
  2827. }, _frag); //
  2828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2831. }
  2832. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2833. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2834. _content = $$("div", {
  2835. className: "U_MD_D_KO",
  2836. "onmousedown": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_tianyuantudentDeskIconInfo[i]]),
  2840. "onclick": U.UF.C.closure(function (obj) {
  2841. //防止拖动图标即打开了桌面应用
  2842. U.MD.D.click(this, obj);
  2843. }, [_tianyuantudentDeskIconInfo[i]])
  2844. }, _frag); //
  2845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2848. }
  2849. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2850. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2851. _content = $$("div", {
  2852. className: "U_MD_D_KO",
  2853. "onmousedown": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_siesStudentDeskIconInfo[i]]),
  2857. "onclick": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_siesStudentDeskIconInfo[i]])
  2861. }, _frag); //
  2862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2865. }
  2866. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2867. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2868. _content = $$("div", {
  2869. className: "U_MD_D_KO",
  2870. "onmousedown": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_guzmsStudentDeskIconInfo[i]]),
  2874. "onclick": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_guzmsStudentDeskIconInfo[i]])
  2878. }, _frag); //
  2879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2882. }
  2883. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2884. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2885. _content = $$("div", {
  2886. className: "U_MD_D_KO",
  2887. "onmousedown": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_hkStudentDeskIconInfo[i]]),
  2891. "onclick": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_hkStudentDeskIconInfo[i]])
  2895. }, _frag); //
  2896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2899. }
  2900. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2901. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2902. _content = $$("div", {
  2903. className: "U_MD_D_KO",
  2904. "onmousedown": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_hkaceStudentDeskIconInfo[i]]),
  2908. "onclick": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_hkaceStudentDeskIconInfo[i]])
  2912. }, _frag); //
  2913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2916. }
  2917. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2918. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2919. _content = $$("div", {
  2920. className: "U_MD_D_KO",
  2921. "onmousedown": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2925. "onclick": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_BSDNSstudentDesktopIconInfo[i]])
  2929. }, _frag); //
  2930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2933. }
  2934. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2935. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2936. _content = $$("div", {
  2937. className: "U_MD_D_KO",
  2938. "onmousedown": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_cocobizStudentDeskIconInfo[i]]),
  2942. "onclick": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_cocobizStudentDeskIconInfo[i]])
  2946. }, _frag); //
  2947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2950. }
  2951. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2952. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2953. _content = $$("div", {
  2954. className: "U_MD_D_KO",
  2955. "onmousedown": U.UF.C.closure(function (obj) {
  2956. //防止拖动图标即打开了桌面应用
  2957. U.MD.D.click(this, obj);
  2958. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2959. "onclick": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_xxzjkyStudentDeskIconInfo[i]])
  2963. }, _frag); //
  2964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2967. }
  2968. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2969. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2970. _content = $$("div", {
  2971. className: "U_MD_D_KO",
  2972. "onmousedown": U.UF.C.closure(function (obj) {
  2973. //防止拖动图标即打开了桌面应用
  2974. U.MD.D.click(this, obj);
  2975. }, [_studentDesktopIconInfo[i]]),
  2976. "onclick": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_studentDesktopIconInfo[i]])
  2980. }, _frag); //
  2981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2984. }
  2985. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2986. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2987. _content = $$("div", {
  2988. className: "U_MD_D_KO",
  2989. "onmousedown": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_tcStudentDeskIconInfo[i]]),
  2993. "onclick": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_tcStudentDeskIconInfo[i]])
  2997. }, _frag); //
  2998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3001. }
  3002. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3003. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3004. _content = $$("div", {
  3005. className: "U_MD_D_KO",
  3006. "onmousedown": U.UF.C.closure(function (obj) {
  3007. //防止拖动图标即打开了桌面应用
  3008. U.MD.D.click(this, obj);
  3009. }, [_szscStudentDeskIconInfo[i]]),
  3010. "onclick": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_szscStudentDeskIconInfo[i]])
  3014. }, _frag); //
  3015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3018. }
  3019. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3020. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3021. _content = $$("div", {
  3022. className: "U_MD_D_KO",
  3023. "onmousedown": U.UF.C.closure(function (obj) {
  3024. //防止拖动图标即打开了桌面应用
  3025. U.MD.D.click(this, obj);
  3026. }, [_studentDesktopIconInfo3[i]]),
  3027. "onclick": U.UF.C.closure(function (obj) {
  3028. //防止拖动图标即打开了桌面应用
  3029. U.MD.D.click(this, obj);
  3030. }, [_studentDesktopIconInfo3[i]])
  3031. }, _frag); //
  3032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3035. }
  3036. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  3037. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3038. _content = $$("div", {
  3039. className: "U_MD_D_KO",
  3040. "onmousedown": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_studentDesktopIconInfo2[i]]),
  3044. "onclick": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_studentDesktopIconInfo2[i]])
  3048. }, _frag); //
  3049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3052. }
  3053. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3054. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3055. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3056. continue
  3057. }
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_wanketeacherDesktopIconInfo[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_wanketeacherDesktopIconInfo[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3072. }
  3073. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3074. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3075. _content = $$("div", {
  3076. className: "U_MD_D_KO",
  3077. "onmousedown": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_wankeAdminDesktopIconInfo[i]]),
  3081. "onclick": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_wankeAdminDesktopIconInfo[i]])
  3085. }, _frag); //
  3086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3089. }
  3090. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3091. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3092. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3093. continue
  3094. }
  3095. _content = $$("div", {
  3096. className: "U_MD_D_KO",
  3097. "onmousedown": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3101. "onclick": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_scnuaiTeacherDeskIconInfo[i]])
  3105. }, _frag); //
  3106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3109. }
  3110. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3111. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3112. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3113. continue
  3114. }
  3115. _content = $$("div", {
  3116. className: "U_MD_D_KO",
  3117. "onmousedown": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3121. "onclick": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_BSDNSteacherDesktopIconInfo[i]])
  3125. }, _frag); //
  3126. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3127. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3128. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3129. }
  3130. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3131. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3132. _content = $$("div", {
  3133. className: "U_MD_D_KO",
  3134. "onmousedown": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_scnuaiAdminDeskIconInfo[i]]),
  3138. "onclick": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_scnuaiAdminDeskIconInfo[i]])
  3142. }, _frag); //
  3143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3146. }
  3147. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3148. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3149. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3150. continue
  3151. }
  3152. _content = $$("div", {
  3153. className: "U_MD_D_KO",
  3154. "onmousedown": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_jccssylTeacherDeskIconInfo[i]]),
  3158. "onclick": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_jccssylTeacherDeskIconInfo[i]])
  3162. }, _frag); //
  3163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3166. }
  3167. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3168. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3169. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3170. continue
  3171. }
  3172. _content = $$("div", {
  3173. className: "U_MD_D_KO",
  3174. "onmousedown": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_caleTeacherDeskIconInfo[i]]),
  3178. "onclick": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_caleTeacherDeskIconInfo[i]])
  3182. }, _frag); //
  3183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3186. }
  3187. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3188. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_tpcOrganizerDeskIconInfo[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_tpcOrganizerDeskIconInfo[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3203. }
  3204. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3205. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3206. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3207. continue
  3208. }
  3209. _content = $$("div", {
  3210. className: "U_MD_D_KO",
  3211. "onmousedown": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_tpcTeacherDeskIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_tpcTeacherDeskIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3225. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3226. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3227. continue
  3228. }
  3229. _content = $$("div", {
  3230. className: "U_MD_D_KO",
  3231. "onmousedown": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_teacherDesktopIconInfo2[i]]),
  3235. "onclick": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_teacherDesktopIconInfo2[i]])
  3239. }, _frag); //
  3240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3243. }
  3244. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3245. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3246. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3247. continue
  3248. }
  3249. _content = $$("div", {
  3250. className: "U_MD_D_KO",
  3251. "onmousedown": U.UF.C.closure(function (obj) {
  3252. //防止拖动图标即打开了桌面应用
  3253. U.MD.D.click(this, obj);
  3254. }, [_thuioeTeacherDeskIconInfo[i]]),
  3255. "onclick": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_thuioeTeacherDeskIconInfo[i]])
  3259. }, _frag); //
  3260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3263. }
  3264. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3265. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3266. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3267. continue
  3268. }
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_lotechTeacherDeskIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_lotechTeacherDeskIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3283. }//
  3284. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3285. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3287. continue
  3288. }
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3305. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3307. continue
  3308. }
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_siesTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_siesTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3325. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3327. continue
  3328. }
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_guzmsTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_guzmsTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3345. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_longhuaTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_longhuaTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3365. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3366. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3367. continue
  3368. }
  3369. _content = $$("div", {
  3370. className: "U_MD_D_KO",
  3371. "onmousedown": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_ytyTeacherDeskIconInfo[i]]),
  3375. "onclick": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_ytyTeacherDeskIconInfo[i]])
  3379. }, _frag); //
  3380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3383. }
  3384. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3385. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3386. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3387. continue
  3388. }
  3389. _content = $$("div", {
  3390. className: "U_MD_D_KO",
  3391. "onmousedown": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_yunhaiTeacherDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3403. } //_hkStudentDeskIconInfo
  3404. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3405. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3406. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3407. continue
  3408. }
  3409. _content = $$("div", {
  3410. className: "U_MD_D_KO",
  3411. "onmousedown": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3415. "onclick": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3419. }, _frag); //
  3420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3423. }
  3424. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3425. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3426. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3427. continue
  3428. }
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_ricohTeacherDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_ricohTeacherDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3443. }
  3444. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3445. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3446. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3447. continue
  3448. }
  3449. _content = $$("div", {
  3450. className: "U_MD_D_KO",
  3451. "onmousedown": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_hkTeacherDeskIconInfo[i]]),
  3455. "onclick": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_hkTeacherDeskIconInfo[i]])
  3459. }, _frag); //
  3460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3463. }
  3464. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3465. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3466. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3467. continue
  3468. }
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_hkaceTeacherDeskIconInfo[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_hkaceTeacherDeskIconInfo[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3483. }
  3484. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3485. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3486. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_cocobizTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_cocobizTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3505. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3506. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3507. continue
  3508. }
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖动图标即打开了桌面应用
  3513. U.MD.D.click(this, obj);
  3514. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3523. }
  3524. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3525. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3526. _content = $$("div", {
  3527. className: "U_MD_D_KO",
  3528. "onmousedown": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_gdjgAdminDeskIconInfo[i]]),
  3532. "onclick": U.UF.C.closure(function (obj) {
  3533. //防止拖动图标即打开了桌面应用
  3534. U.MD.D.click(this, obj);
  3535. }, [_gdjgAdminDeskIconInfo[i]])
  3536. }, _frag); //
  3537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3540. }
  3541. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3542. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3543. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3544. continue
  3545. }
  3546. _content = $$("div", {
  3547. className: "U_MD_D_KO",
  3548. "onmousedown": U.UF.C.closure(function (obj) {
  3549. //防止拖动图标即打开了桌面应用
  3550. U.MD.D.click(this, obj);
  3551. }, [_gdjgTeacherDeskIconInfo[i]]),
  3552. "onclick": U.UF.C.closure(function (obj) {
  3553. //防止拖动图标即打开了桌面应用
  3554. U.MD.D.click(this, obj);
  3555. }, [_gdjgTeacherDeskIconInfo[i]])
  3556. }, _frag); //
  3557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3560. }
  3561. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3562. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3563. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3564. continue
  3565. }
  3566. _content = $$("div", {
  3567. className: "U_MD_D_KO",
  3568. "onmousedown": U.UF.C.closure(function (obj) {
  3569. //防止拖动图标即打开了桌面应用
  3570. U.MD.D.click(this, obj);
  3571. }, [_szherTeacherDeskIconInfo[i]]),
  3572. "onclick": U.UF.C.closure(function (obj) {
  3573. //防止拖动图标即打开了桌面应用
  3574. U.MD.D.click(this, obj);
  3575. }, [_szherTeacherDeskIconInfo[i]])
  3576. }, _frag); //
  3577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3580. }
  3581. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3582. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3583. _content = $$("div", {
  3584. className: "U_MD_D_KO",
  3585. "onmousedown": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_heyuannAdminDeskIconInfo[i]]),
  3589. "onclick": U.UF.C.closure(function (obj) {
  3590. //防止拖动图标即打开了桌面应用
  3591. U.MD.D.click(this, obj);
  3592. }, [_heyuannAdminDeskIconInfo[i]])
  3593. }, _frag); //
  3594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3597. }
  3598. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3599. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3600. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3601. continue
  3602. }
  3603. _content = $$("div", {
  3604. className: "U_MD_D_KO",
  3605. "onmousedown": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_heyuanTeacherDeskIconInfo[i]]),
  3609. "onclick": U.UF.C.closure(function (obj) {
  3610. //防止拖动图标即打开了桌面应用
  3611. U.MD.D.click(this, obj);
  3612. }, [_heyuanTeacherDeskIconInfo[i]])
  3613. }, _frag); //
  3614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3617. } //
  3618. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3619. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3620. _content = $$("div", {
  3621. className: "U_MD_D_KO",
  3622. "onmousedown": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_dseiAdminDeskIconInfo[i]]),
  3626. "onclick": U.UF.C.closure(function (obj) {
  3627. //防止拖动图标即打开了桌面应用
  3628. U.MD.D.click(this, obj);
  3629. }, [_dseiAdminDeskIconInfo[i]])
  3630. }, _frag); //
  3631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3634. }
  3635. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3636. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3637. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3638. continue
  3639. }
  3640. _content = $$("div", {
  3641. className: "U_MD_D_KO",
  3642. "onmousedown": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_dseiTeacherDeskIconInfo[i]]),
  3646. "onclick": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_dseiTeacherDeskIconInfo[i]])
  3650. }, _frag); //
  3651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3654. } //
  3655. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3656. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3657. _content = $$("div", {
  3658. className: "U_MD_D_KO",
  3659. "onmousedown": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_chjyjAdminDeskIconInfo[i]]),
  3663. "onclick": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_chjyjAdminDeskIconInfo[i]])
  3667. }, _frag); //
  3668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3671. }//
  3672. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3673. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3674. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3675. continue
  3676. }
  3677. _content = $$("div", {
  3678. className: "U_MD_D_KO",
  3679. "onmousedown": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_chjyjTeacherDeskIconInfo[i]]),
  3683. "onclick": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_chjyjTeacherDeskIconInfo[i]])
  3687. }, _frag); //
  3688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3691. }
  3692. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3693. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3694. _content = $$("div", {
  3695. className: "U_MD_D_KO",
  3696. "onmousedown": U.UF.C.closure(function (obj) {
  3697. //防止拖动图标即打开了桌面应用
  3698. U.MD.D.click(this, obj);
  3699. }, [_szjkyAdminDeskIconInfo[i]]),
  3700. "onclick": U.UF.C.closure(function (obj) {
  3701. //防止拖动图标即打开了桌面应用
  3702. U.MD.D.click(this, obj);
  3703. }, [_szjkyAdminDeskIconInfo[i]])
  3704. }, _frag); //
  3705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3708. }//
  3709. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3710. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3711. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3712. continue
  3713. }
  3714. _content = $$("div", {
  3715. className: "U_MD_D_KO",
  3716. "onmousedown": U.UF.C.closure(function (obj) {
  3717. //防止拖动图标即打开了桌面应用
  3718. U.MD.D.click(this, obj);
  3719. }, [_szjkyTeacherDeskIconInfo[i]]),
  3720. "onclick": U.UF.C.closure(function (obj) {
  3721. //防止拖动图标即打开了桌面应用
  3722. U.MD.D.click(this, obj);
  3723. }, [_szjkyTeacherDeskIconInfo[i]])
  3724. }, _frag); //
  3725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3728. }
  3729. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3730. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_x020201AdminDeskIconInfo[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_x020201AdminDeskIconInfo[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3745. }//
  3746. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3747. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3748. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_x020201TeacherDeskIconInfo[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_x020201TeacherDeskIconInfo[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3765. }
  3766. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3767. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3768. _content = $$("div", {
  3769. className: "U_MD_D_KO",
  3770. "onmousedown": U.UF.C.closure(function (obj) {
  3771. //防止拖动图标即打开了桌面应用
  3772. U.MD.D.click(this, obj);
  3773. }, [_SCNUETAdminDeskIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_SCNUETAdminDeskIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3782. }//
  3783. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3784. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3785. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3786. continue
  3787. }
  3788. _content = $$("div", {
  3789. className: "U_MD_D_KO",
  3790. "onmousedown": U.UF.C.closure(function (obj) {
  3791. //防止拖动图标即打开了桌面应用
  3792. U.MD.D.click(this, obj);
  3793. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_SCNUETTeacherDeskIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3804. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3805. _content = $$("div", {
  3806. className: "U_MD_D_KO",
  3807. "onmousedown": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_futianAdminDeskIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_futianAdminDeskIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3819. }
  3820. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3821. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3822. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3823. continue
  3824. }
  3825. _content = $$("div", {
  3826. className: "U_MD_D_KO",
  3827. "onmousedown": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_futianTeacherDeskIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_futianTeacherDeskIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3841. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3842. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3843. continue
  3844. }
  3845. _content = $$("div", {
  3846. className: "U_MD_D_KO",
  3847. "onmousedown": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_MingdeTeacherDeskIcon[i]]),
  3851. "onclick": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_MingdeTeacherDeskIcon[i]])
  3855. }, _frag); //
  3856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3859. }
  3860. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3861. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3862. _content = $$("div", {
  3863. className: "U_MD_D_KO",
  3864. "onmousedown": U.UF.C.closure(function (obj) {
  3865. //防止拖动图标即打开了桌面应用
  3866. U.MD.D.click(this, obj);
  3867. }, [_lhsAdminDesktopIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_lhsAdminDesktopIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3878. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3879. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3880. continue
  3881. }
  3882. _content = $$("div", {
  3883. className: "U_MD_D_KO",
  3884. "onmousedown": U.UF.C.closure(function (obj) {
  3885. //防止拖动图标即打开了桌面应用
  3886. U.MD.D.click(this, obj);
  3887. }, [_lhsteacherDesktopIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_lhsteacherDesktopIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3896. }
  3897. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3898. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3899. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3900. continue
  3901. }
  3902. _content = $$("div", {
  3903. className: "U_MD_D_KO",
  3904. "onmousedown": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_zhoujiateacherDesktopIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3916. }
  3917. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3918. for (i = 0; i < _hanDeskIcon.length; i++) {
  3919. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3920. continue
  3921. }
  3922. _content = $$("div", {
  3923. className: "U_MD_D_KO",
  3924. "onmousedown": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_hanDeskIcon[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_hanDeskIcon[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3936. }
  3937. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3938. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3939. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3940. continue
  3941. }
  3942. _content = $$("div", {
  3943. className: "U_MD_D_KO",
  3944. "onmousedown": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_orgStemDeskIcon[i]]),
  3948. "onclick": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_orgStemDeskIcon[i]])
  3952. }, _frag); //
  3953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3956. }
  3957. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3958. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3959. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3960. continue
  3961. }
  3962. _content = $$("div", {
  3963. className: "U_MD_D_KO",
  3964. "onmousedown": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_szulsDeskIcon[i]]),
  3968. "onclick": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_szulsDeskIcon[i]])
  3972. }, _frag); //
  3973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3976. }
  3977. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3978. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3979. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3980. continue
  3981. }
  3982. _content = $$("div", {
  3983. className: "U_MD_D_KO",
  3984. "onmousedown": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_orgDesktopIconInfo[i]]),
  3988. "onclick": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_orgDesktopIconInfo[i]])
  3992. }, _frag); //
  3993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3996. }
  3997. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3998. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3999. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4000. continue
  4001. }
  4002. _content = $$("div", {
  4003. className: "U_MD_D_KO",
  4004. "onmousedown": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_schoolDesktopIconInfo[i]]),
  4008. "onclick": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_schoolDesktopIconInfo[i]])
  4012. }, _frag); //
  4013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4016. }
  4017. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4018. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4019. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4020. continue
  4021. }
  4022. _content = $$("div", {
  4023. className: "U_MD_D_KO",
  4024. "onmousedown": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_GMteacherDesktopIconInfo[i]]),
  4028. "onclick": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_GMteacherDesktopIconInfo[i]])
  4032. }, _frag); //
  4033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4036. }
  4037. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4038. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4039. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4040. continue
  4041. }
  4042. _content = $$("div", {
  4043. className: "U_MD_D_KO",
  4044. "onmousedown": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_SONGteacherDesktopIconInfo[i]]),
  4048. "onclick": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_SONGteacherDesktopIconInfo[i]])
  4052. }, _frag); //
  4053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4056. }
  4057. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4058. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4059. _content = $$("div", {
  4060. className: "U_MD_D_KO",
  4061. "onmousedown": U.UF.C.closure(function (obj) {
  4062. //防止拖动图标即打开了桌面应用
  4063. U.MD.D.click(this, obj);
  4064. }, [_GMstudentDesktopIconInfo[i]]),
  4065. "onclick": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_GMstudentDesktopIconInfo[i]])
  4069. }, _frag); //
  4070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4073. }
  4074. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4075. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4076. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4077. continue
  4078. }
  4079. _content = $$("div", {
  4080. className: "U_MD_D_KO",
  4081. "onmousedown": U.UF.C.closure(function (obj) {
  4082. //防止拖动图标即打开了桌面应用
  4083. U.MD.D.click(this, obj);
  4084. }, [_tcTeacherDeskIconInfo[i]]),
  4085. "onclick": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_tcTeacherDeskIconInfo[i]])
  4089. }, _frag); //
  4090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4093. }
  4094. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4095. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4096. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4097. continue
  4098. }
  4099. _content = $$("div", {
  4100. className: "U_MD_D_KO",
  4101. "onmousedown": U.UF.C.closure(function (obj) {
  4102. //防止拖动图标即打开了桌面应用
  4103. U.MD.D.click(this, obj);
  4104. }, [_tcOrganizerDeskIconInfo[i]]),
  4105. "onclick": U.UF.C.closure(function (obj) {
  4106. //防止拖动图标即打开了桌面应用
  4107. U.MD.D.click(this, obj);
  4108. }, [_tcOrganizerDeskIconInfo[i]])
  4109. }, _frag); //
  4110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4113. }
  4114. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4115. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4116. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4117. continue
  4118. }
  4119. _content = $$("div", {
  4120. className: "U_MD_D_KO",
  4121. "onmousedown": U.UF.C.closure(function (obj) {
  4122. //防止拖动图标即打开了桌面应用
  4123. U.MD.D.click(this, obj);
  4124. }, [_szscTeacherDeskIconInfo[i]]),
  4125. "onclick": U.UF.C.closure(function (obj) {
  4126. //防止拖动图标即打开了桌面应用
  4127. U.MD.D.click(this, obj);
  4128. }, [_szscTeacherDeskIconInfo[i]])
  4129. }, _frag); //
  4130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4133. }
  4134. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4135. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4136. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4137. continue
  4138. }
  4139. _content = $$("div", {
  4140. className: "U_MD_D_KO",
  4141. "onmousedown": U.UF.C.closure(function (obj) {
  4142. //防止拖动图标即打开了桌面应用
  4143. U.MD.D.click(this, obj);
  4144. }, [_szscOrganizerDeskIconInfo[i]]),
  4145. "onclick": U.UF.C.closure(function (obj) {
  4146. //防止拖动图标即打开了桌面应用
  4147. U.MD.D.click(this, obj);
  4148. }, [_szscOrganizerDeskIconInfo[i]])
  4149. }, _frag); //
  4150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4153. }
  4154. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4155. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4156. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4157. continue
  4158. }
  4159. _content = $$("div", {
  4160. className: "U_MD_D_KO",
  4161. "onmousedown": U.UF.C.closure(function (obj) {
  4162. //防止拖动图标即打开了桌面应用
  4163. U.MD.D.click(this, obj);
  4164. }, [_nsfxTeacherDeskIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_nsfxTeacherDeskIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4173. }
  4174. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4175. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4176. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4177. continue
  4178. }
  4179. _content = $$("div", {
  4180. className: "U_MD_D_KO",
  4181. "onmousedown": U.UF.C.closure(function (obj) {
  4182. //防止拖动图标即打开了桌面应用
  4183. U.MD.D.click(this, obj);
  4184. }, [_stiaTeacherDeskIconInfo[i]]),
  4185. "onclick": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_stiaTeacherDeskIconInfo[i]])
  4189. }, _frag); //
  4190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4193. }
  4194. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4195. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4196. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4197. continue
  4198. }
  4199. _content = $$("div", {
  4200. className: "U_MD_D_KO",
  4201. "onmousedown": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_szdjgTeacherDeskIconInfo[i]]),
  4205. "onclick": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_szdjgTeacherDeskIconInfo[i]])
  4209. }, _frag); //
  4210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4213. }
  4214. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4215. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4216. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4217. continue
  4218. }
  4219. _content = $$("div", {
  4220. className: "U_MD_D_KO",
  4221. "onmousedown": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_x010607TeacherDeskIconInfo[i]]),
  4225. "onclick": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_x010607TeacherDeskIconInfo[i]])
  4229. }, _frag); //
  4230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4233. }
  4234. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4235. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4236. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4237. continue
  4238. }
  4239. _content = $$("div", {
  4240. className: "U_MD_D_KO",
  4241. "onmousedown": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_xhlyTeacherDeskIconInfo[i]]),
  4245. "onclick": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_xhlyTeacherDeskIconInfo[i]])
  4249. }, _frag); //
  4250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4253. }
  4254. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4255. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4256. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4257. continue
  4258. }
  4259. _content = $$("div", {
  4260. className: "U_MD_D_KO",
  4261. "onmousedown": U.UF.C.closure(function (obj) {
  4262. //防止拖动图标即打开了桌面应用
  4263. U.MD.D.click(this, obj);
  4264. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4265. "onclick": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4269. }, _frag); //
  4270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4273. }
  4274. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4275. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4276. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4277. continue
  4278. }
  4279. _content = $$("div", {
  4280. className: "U_MD_D_KO",
  4281. "onmousedown": U.UF.C.closure(function (obj) {
  4282. //防止拖动图标即打开了桌面应用
  4283. U.MD.D.click(this, obj);
  4284. }, [_x010503TeacherDeskIconInfo[i]]),
  4285. "onclick": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_x010503TeacherDeskIconInfo[i]])
  4289. }, _frag); //
  4290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4293. }
  4294. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4295. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4296. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4297. continue
  4298. }
  4299. _content = $$("div", {
  4300. className: "U_MD_D_KO",
  4301. "onmousedown": U.UF.C.closure(function (obj) {
  4302. //防止拖动图标即打开了桌面应用
  4303. U.MD.D.click(this, obj);
  4304. }, [_x010504TeacherDeskIconInfo[i]]),
  4305. "onclick": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_x010504TeacherDeskIconInfo[i]])
  4309. }, _frag); //
  4310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4313. }
  4314. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4315. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4316. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4317. continue
  4318. }
  4319. _content = $$("div", {
  4320. className: "U_MD_D_KO",
  4321. "onmousedown": U.UF.C.closure(function (obj) {
  4322. //防止拖动图标即打开了桌面应用
  4323. U.MD.D.click(this, obj);
  4324. }, [_x010505TeacherDeskIconInfo[i]]),
  4325. "onclick": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_x010505TeacherDeskIconInfo[i]])
  4329. }, _frag); //
  4330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4333. }
  4334. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4335. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4336. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4337. continue
  4338. }
  4339. _content = $$("div", {
  4340. className: "U_MD_D_KO",
  4341. "onmousedown": U.UF.C.closure(function (obj) {
  4342. //防止拖动图标即打开了桌面应用
  4343. U.MD.D.click(this, obj);
  4344. }, [_x010404TeacherDeskIconInfo[i]]),
  4345. "onclick": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_x010404TeacherDeskIconInfo[i]])
  4349. }, _frag); //
  4350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4353. }
  4354. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4355. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4356. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4357. continue
  4358. }
  4359. _content = $$("div", {
  4360. className: "U_MD_D_KO",
  4361. "onmousedown": U.UF.C.closure(function (obj) {
  4362. //防止拖动图标即打开了桌面应用
  4363. U.MD.D.click(this, obj);
  4364. }, [_x010204TeacherDeskIconInfo[i]]),
  4365. "onclick": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_x010204TeacherDeskIconInfo[i]])
  4369. }, _frag); //
  4370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4373. }
  4374. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4375. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4376. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4377. continue
  4378. }
  4379. _content = $$("div", {
  4380. className: "U_MD_D_KO",
  4381. "onmousedown": U.UF.C.closure(function (obj) {
  4382. //防止拖动图标即打开了桌面应用
  4383. U.MD.D.click(this, obj);
  4384. }, [_x320101TeacherDeskIconInfo[i]]),
  4385. "onclick": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_x320101TeacherDeskIconInfo[i]])
  4389. }, _frag); //
  4390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4395. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4396. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4397. continue
  4398. }
  4399. _content = $$("div", {
  4400. className: "U_MD_D_KO",
  4401. "onmousedown": U.UF.C.closure(function (obj) {
  4402. //防止拖动图标即打开了桌面应用
  4403. U.MD.D.click(this, obj);
  4404. }, [_trailTeacherDeskIconInfo[i]]),
  4405. "onclick": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_trailTeacherDeskIconInfo[i]])
  4409. }, _frag); //
  4410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4413. }
  4414. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4415. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4416. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4417. continue
  4418. }
  4419. _content = $$("div", {
  4420. className: "U_MD_D_KO",
  4421. "onmousedown": U.UF.C.closure(function (obj) {
  4422. //防止拖动图标即打开了桌面应用
  4423. U.MD.D.click(this, obj);
  4424. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4425. "onclick": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4429. }, _frag); //
  4430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4433. }
  4434. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4435. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4436. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4437. continue
  4438. }
  4439. _content = $$("div", {
  4440. className: "U_MD_D_KO",
  4441. "onmousedown": U.UF.C.closure(function (obj) {
  4442. //防止拖动图标即打开了桌面应用
  4443. U.MD.D.click(this, obj);
  4444. }, [_szsyTeacherDeskIconInfo[i]]),
  4445. "onclick": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_szsyTeacherDeskIconInfo[i]])
  4449. }, _frag); //
  4450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4453. }
  4454. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4455. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4456. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4457. continue
  4458. }
  4459. _content = $$("div", {
  4460. className: "U_MD_D_KO",
  4461. "onmousedown": U.UF.C.closure(function (obj) {
  4462. //防止拖动图标即打开了桌面应用
  4463. U.MD.D.click(this, obj);
  4464. }, [_x010608TeacherDeskIconInfo[i]]),
  4465. "onclick": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_x010608TeacherDeskIconInfo[i]])
  4469. }, _frag); //
  4470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4473. }
  4474. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4475. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4476. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4477. continue
  4478. }
  4479. _content = $$("div", {
  4480. className: "U_MD_D_KO",
  4481. "onmousedown": U.UF.C.closure(function (obj) {
  4482. //防止拖动图标即打开了桌面应用
  4483. U.MD.D.click(this, obj);
  4484. }, [_x010611TeacherDeskIconInfo[i]]),
  4485. "onclick": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_x010611TeacherDeskIconInfo[i]])
  4489. }, _frag); //
  4490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4493. }
  4494. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4495. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4496. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4497. continue
  4498. }
  4499. _content = $$("div", {
  4500. className: "U_MD_D_KO",
  4501. "onmousedown": U.UF.C.closure(function (obj) {
  4502. //防止拖动图标即打开了桌面应用
  4503. U.MD.D.click(this, obj);
  4504. }, [_x010612TeacherDeskIconInfo[i]]),
  4505. "onclick": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_x010612TeacherDeskIconInfo[i]])
  4509. }, _frag); //
  4510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4513. }
  4514. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4515. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4516. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4517. continue
  4518. }
  4519. _content = $$("div", {
  4520. className: "U_MD_D_KO",
  4521. "onmousedown": U.UF.C.closure(function (obj) {
  4522. //防止拖动图标即打开了桌面应用
  4523. U.MD.D.click(this, obj);
  4524. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4525. "onclick": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_tianyuanTeacherDeskIconInfo[i]])
  4529. }, _frag); //
  4530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4533. }
  4534. } else {
  4535. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4536. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4537. continue
  4538. }
  4539. _content = $$("div", {
  4540. className: "U_MD_D_KO",
  4541. "onmousedown": U.UF.C.closure(function (obj) {
  4542. //防止拖动图标即打开了桌面应用
  4543. U.MD.D.click(this, obj);
  4544. }, [_teacherDesktopIconInfo[i]]),
  4545. "onclick": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_teacherDesktopIconInfo[i]])
  4549. }, _frag); //
  4550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4553. }
  4554. }
  4555. } else {
  4556. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4557. _content = $$("div", {
  4558. className: "U_MD_D_KO",
  4559. style: { 'width': '124px', 'height': '145px' },
  4560. "onmousedown": U.UF.C.closure(function (obj) {
  4561. //防止拖动图标即打开了桌面应用
  4562. U.MD.D.click(this, obj);
  4563. }, [_easyDesktopIconInfo[i]]),
  4564. "onclick": U.UF.C.closure(function (obj) {
  4565. //防止拖动图标即打开了桌面应用
  4566. U.MD.D.click(this, obj);
  4567. }, [_easyDesktopIconInfo[i]])
  4568. }, _frag); //
  4569. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4572. }
  4573. }
  4574. if (type == 1) {
  4575. //加载好后给图标定位
  4576. U.MD.D.iconPostion($(_frag).Child());
  4577. } else {
  4578. //加载好后给图标定位
  4579. U.MD.D.iconPostion2($(_frag).Child());
  4580. }
  4581. //把图标加载到页面
  4582. el.appendChild(_frag);
  4583. if(_type == 2){
  4584. U.selectEl(".U_MD_D_RW").css("display", "none");
  4585. }
  4586. }
  4587. /**
  4588. * 显示任务栏
  4589. *
  4590. * @param {element} 桌面元素
  4591. */
  4592. U.MD.D.I.displayTaskbar = function (el) {
  4593. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4594. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4595. //任务栏位置变化
  4596. U.selectEl(el).css({ "bottom": "0px" });
  4597. //桌面位置变话
  4598. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4599. }
  4600. }
  4601. //#region 桌面图标拖动逻辑
  4602. /**
  4603. * 桌面排列图标
  4604. *
  4605. * @param {element} 桌面元素
  4606. * @param {object} 上下相距的距离
  4607. * @param {object} 左右相距的距离
  4608. * @return {object} 命名空间
  4609. */
  4610. U.MD.D.iconPostion = function (childs, top, left) {
  4611. var i; //用于循环处理
  4612. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4613. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4614. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4615. for (i = 0; i < childs.length; i++) {
  4616. //如果竖排top超过了范围处理
  4617. if (top + 95 > US.height - 10) {
  4618. //left超过了页面范围处理,则向上重叠打印处理
  4619. if ((left + 180) > US.width) {
  4620. top -= 110;
  4621. left -= 90;
  4622. }
  4623. //没有超过范围,那么left+90添加到下一个竖排打印
  4624. else {
  4625. left += 90;
  4626. top = 15;
  4627. };
  4628. }
  4629. //给图标的位置赋值
  4630. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4631. if (i < childs.length - 1) {
  4632. //页面图标每次向下加95
  4633. top += 95;
  4634. }
  4635. }
  4636. //返回最后调用的图标的位置
  4637. return [top, left];
  4638. }
  4639. /**
  4640. * 桌面排列图标
  4641. *
  4642. * @param {element} 桌面元素
  4643. * @param {object} 上下相距的距离
  4644. * @param {object} 左右相距的距离
  4645. * @return {object} 命名空间
  4646. */
  4647. U.MD.D.iconPostion2 = function (childs, top, left) {
  4648. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4649. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4650. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4651. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4652. for (i = 0; i < childs.length; i++) {
  4653. //如果竖排top超过了范围处理
  4654. if (left + 150 > US.width - 10) {
  4655. //left超过了页面范围处理,则向上重叠打印处理
  4656. if ((top + 180) > US.Height) {
  4657. top -= 150;
  4658. left -= 150;
  4659. }
  4660. //没有超过范围,那么left+90添加到下一个竖排打印
  4661. else {
  4662. top += 150;
  4663. left = ol;
  4664. };
  4665. }
  4666. //给图标的位置赋值
  4667. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4668. if (i < childs.length - 1) {
  4669. //页面图标每次向下加95
  4670. left += 150;
  4671. }
  4672. }
  4673. //返回最后调用的图标的位置
  4674. return [top, left];
  4675. }
  4676. /**
  4677. * 桌面点击事件逻辑
  4678. *
  4679. * @param {element} 桌面元素
  4680. * @param {object} 上下相距的距离
  4681. * @param {object} 左右相距的距离
  4682. * @return {object} 命名空间
  4683. */
  4684. U.MD.D.click = function (el, obj) {
  4685. var _buttonnumber = event.button; //点击的按钮的事件值
  4686. var _userinfo = US.userInfo;
  4687. U.UF.EV.stopBubble(); //阻止向上冒泡
  4688. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4689. if (_buttonnumber < 2) {
  4690. //如果是click事件的处理
  4691. if (event.type == "click") {
  4692. //如果元素在mousemove事件中没有移动则出发click事件
  4693. if (!U.MD.D.I.IsDrag) {
  4694. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4695. U.alert("请先登录您的账号!");
  4696. setTimeout(() => {
  4697. U.MD.U.L.login();
  4698. }, 2000);
  4699. } else {
  4700. //打开应用处理
  4701. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4702. }
  4703. }
  4704. }
  4705. //如果是mouse事件的处理
  4706. else {
  4707. if (US.Config.type == '1') {
  4708. //拖动处理,添加拖动和拖动结束事件
  4709. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4710. }
  4711. }
  4712. U.MD.D.I.IsDrag = false;
  4713. }
  4714. }
  4715. /**
  4716. * 拖动的处理
  4717. *
  4718. */
  4719. U.MD.D.iconMove = function () {
  4720. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4721. U.MD.D.I.IsDrag = true;
  4722. }
  4723. /**
  4724. * 拖动结束后,这里是定位处理,以网状的形式定位
  4725. *
  4726. * @param {element} 拖动的元素
  4727. * @return {object} 命名空间
  4728. */
  4729. U.MD.D.iconUp = function (el) {
  4730. var _top = 15,
  4731. _left = 20,
  4732. _margin,
  4733. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4734. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4735. if (_positioninfo["OT"] > 15) {
  4736. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4737. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4738. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4739. }
  4740. if (_positioninfo["OL"] > 20) {
  4741. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4742. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4743. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4744. }
  4745. //while循环判断么一个重叠的元素
  4746. do {
  4747. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4748. _top = _positioninfo[0] + 95; //得到定位后的top
  4749. _left = _positioninfo[1]; //得到定位后的left
  4750. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4751. }
  4752. /**
  4753. * 判断拖动后图标是否重叠
  4754. *
  4755. * @param {element} 拖动的元素
  4756. * @param {element} 桌面所有的元素
  4757. * @param {array} 拖动元素的位置
  4758. ----------[0] 上 top
  4759. ----------[1] 左 left
  4760. * @return {object} 命名空间
  4761. */
  4762. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4763. //循环所有的图标
  4764. for (var i = 0; i < childs.length; i++) {
  4765. //判断有没有和该图标诶子重叠的元素
  4766. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4767. return childs[i]; //如果有返回
  4768. }
  4769. }
  4770. }
  4771. //#endregion
  4772. //#endregion
  4773. //#region 桌面应用
  4774. /**
  4775. * 打开应用
  4776. *
  4777. * @param {string} 类型
  4778. -----------------Disk 网盘系统
  4779. -----------------PDisk 学习系统网盘
  4780. -----------------Poto 图片
  4781. -----------------Video 视频
  4782. -----------------Music 音乐
  4783. -----------------Word word
  4784. -----------------Excel excel
  4785. -----------------Txt 记事本
  4786. -----------------PB 学习系统
  4787. -----------------Blog 朋友圈系统
  4788. -----------------FTP ftp系统
  4789. -----------------Group 好友群
  4790. -----------------SY 首页系统
  4791. -----------------Set 个人设置
  4792. -----------------XSet 系统设置
  4793. -----------------App 我们所有的app
  4794. -----------------BC c.1473.cn 平台
  4795. -----------------CWeb d.1473.cn 变成平台
  4796. -----------------其他的外联系统 我们统一用iframe打开
  4797. * @param {array} 类型
  4798. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4799. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4800. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4801. 如果第一个参数为其他,则无第二个参数
  4802. * @returns {array}
  4803. */
  4804. window.addEventListener('message', function (e) { // 监听 message 事件
  4805. // alert(e.data.type);
  4806. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4807. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4808. //3是展示全部阶段 2学生 1老师 4专家
  4809. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4810. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4811. //3是展示全部阶段 2学生 1老师 4专家
  4812. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4813. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4814. //3是展示全部阶段 2学生 1老师 4专家
  4815. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4816. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4817. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4818. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4819. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4820. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4821. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4822. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4823. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4824. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4825. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4826. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4827. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4828. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4829. //3是展示全部阶段 2学生 1老师 4专家
  4830. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4831. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4832. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4833. U.MD.D.I.selectUser();
  4834. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4835. var _formel = document.getElementById("study");
  4836. U.UF.F.windowZooming(_formel);
  4837. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4838. var _formel = document.getElementById("studyDetail");
  4839. U.UF.F.windowZooming(_formel);
  4840. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4841. var _formel = document.getElementById("studyDetail");
  4842. U.UF.F.windowZooming(_formel);
  4843. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4844. var _formel = document.getElementById("studentStudy");
  4845. U.UF.F.windowZooming(_formel);
  4846. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4847. // var _formel = document.getElementById("study");
  4848. //如果最大化了,那么就把他缩小
  4849. // if (_formel.ismaximize) {
  4850. // return;
  4851. // }
  4852. // U.UF.F.windowZooming(_formel);
  4853. // U.UF.F.topWindow(_formel);
  4854. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4855. // var _formel = document.getElementById("studyDetail");
  4856. //如果最大化了,那么就把他缩小
  4857. // if (_formel.ismaximize) {
  4858. // return;
  4859. // }
  4860. // U.UF.F.windowZooming(_formel);
  4861. // U.UF.F.topWindow(_formel);
  4862. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4863. // var _formel = document.getElementById("studentStudy");
  4864. // if (_formel.ismaximize) {
  4865. // return;
  4866. // }
  4867. // U.UF.F.windowZooming(_formel);
  4868. // U.UF.F.topWindow(_formel);
  4869. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4870. var _formel = document.getElementById("study");
  4871. // if (_formel.ismaximize) {
  4872. // return;
  4873. // }
  4874. // U.UF.F.windowZooming(_formel);
  4875. U.UF.F.topWindow(_formel);
  4876. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4877. var _formel = document.getElementById("studentIndex");
  4878. U.UF.F.windowZooming(_formel);
  4879. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4880. var _formel = document.getElementById("studyDetailS");
  4881. U.UF.F.windowZooming(_formel);
  4882. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4883. var _formel = document.getElementById("studioIndex");
  4884. U.UF.F.windowZooming(_formel);
  4885. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4886. var _formel = document.getElementById("studyDetailStudio");
  4887. U.UF.F.windowZooming(_formel);
  4888. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4889. var _formel = document.getElementById("studyDetailStudio");
  4890. U.UF.F.windowZooming(_formel);
  4891. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4892. var _formel = document.getElementById("studyDetailNT");
  4893. U.UF.F.windowZooming(_formel);
  4894. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4895. var _formel = document.getElementById("studyDetailS");
  4896. U.UF.F.windowZooming(_formel);
  4897. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4898. var _formel = document.getElementById("studyDetailS");
  4899. U.UF.F.topWindow(_formel);
  4900. } else if (e.data.tools && e.data.tools == "1") {
  4901. // U.MD.D.I.openApplication("whiteboard")
  4902. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4903. } else if (e.data.tools && e.data.tools == "2") {
  4904. U.MD.D.I.openApplication("note")
  4905. } else if (e.data.tools && e.data.tools == "3") {
  4906. // U.MD.D.I.openApplication("mind")
  4907. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4908. } else if (e.data.tools && e.data.tools == "4") {
  4909. U.MD.D.I.openApplication("investigation")
  4910. } else if (e.data.tools && e.data.tools == "6") {
  4911. // U.MD.D.I.openApplication("doc")
  4912. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4913. } else if (e.data.tools && e.data.tools == "7") {
  4914. // U.MD.D.I.openApplication("mindNetwork")
  4915. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4916. } else if (e.data.tools && e.data.tools == "8") {
  4917. U.MD.D.I.openApplication("library")
  4918. } else if (e.data.tools && e.data.tools == "17") {
  4919. U.MD.D.I.openApplication("stuLibrary")
  4920. } else if (e.data.tools && e.data.tools == "18") {
  4921. U.MD.D.I.openApplication("train")
  4922. } else if (e.data.tools && e.data.tools == "21") {
  4923. U.MD.D.I.openApplication("program")
  4924. } else if (e.data.tools && e.data.tools == "22") {
  4925. U.MD.D.I.openApplication("AIprogram2")
  4926. } else if (e.data.tools && e.data.tools == "23") {
  4927. U.MD.D.I.openApplication("Pythonprogram")
  4928. } else if (e.data.tools && e.data.tools == "24") {
  4929. U.MD.D.I.openApplication("AIprogram")
  4930. } else if (e.data.tools && e.data.tools == "25") {
  4931. U.MD.D.I.openApplication("sys")
  4932. } else if (e.data.tools && e.data.tools == "26") {
  4933. // U.MD.D.I.openApplication("courseDesign")
  4934. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4935. } else if (e.data.tools && e.data.tools == "31") {
  4936. U.MD.D.I.openApplication("netWorkPanel")
  4937. } else if (e.data.tools && e.data.tools == "32") {
  4938. U.MD.D.I.openApplication("codeEdit")
  4939. } else if (e.data.tools && e.data.tools == "57") {
  4940. U.MD.D.I.openApplication("CocoPi")
  4941. } else if (e.data.tools && e.data.tools == "63") {
  4942. U.MD.D.I.openApplication("Wood")
  4943. } else if (e.data.tools && e.data.tools == "58") {
  4944. U.MD.D.I.openApplication("car")
  4945. } else if (e.data.tools && e.data.tools == "59") {
  4946. U.MD.D.I.openApplication("lineSearch")
  4947. } else if (e.data.tools && e.data.tools == "60") {
  4948. U.MD.D.I.openApplication("deepLearning")
  4949. } else if (e.data.tools && e.data.tools == "61") {
  4950. U.MD.D.I.openApplication("allHistory")
  4951. } else if (e.data.tools && e.data.tools == "28") {
  4952. U.MD.D.I.openApplication("translation")
  4953. } else if (e.data.tools && e.data.tools == "37") {
  4954. U.MD.D.I.openApplication("mohe")
  4955. } else if (e.data.tools && e.data.tools == "38") {
  4956. U.MD.D.I.openApplication("24game")
  4957. } else if (e.data.tools && e.data.tools == "39") {
  4958. U.MD.D.I.openApplication("GeoGebra")
  4959. } else if (e.data.tools && e.data.tools == "43") {
  4960. U.MD.D.I.openApplication("studentEvaluate")
  4961. } else if (e.data.tools && e.data.tools == "44") {
  4962. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4963. } else if (e.data.tools && e.data.tools == "46") {
  4964. U.MD.D.I.openApplication("project")
  4965. } else if (e.data.tools && e.data.tools == "71") {
  4966. U.MD.D.I.openApplication("aigptCourse")
  4967. } else if (e.data.tools && e.data.tools == "72") {
  4968. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  4969. } else if (e.data.tools && e.data.tools == "1s") {
  4970. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4971. } else if (e.data.tools && e.data.tools == "3s") {
  4972. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4973. } else if (e.data.tools && e.data.tools == "6s") {
  4974. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4975. } else if (e.data.tools && e.data.tools == "1studio") {
  4976. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4977. } else if (e.data.tools && e.data.tools == "3studio") {
  4978. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4979. } else if (e.data.tools && e.data.tools == "6studio") {
  4980. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4981. } else if (e.data.tools && e.data.tools == "3y") {
  4982. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4983. } else if (e.data.tools && e.data.tools == "1y") {
  4984. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4985. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4986. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4987. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4988. U.MD.D.I.openApplication("AIAnalyse")
  4989. } else if (e.data.tools && e.data.tools == "1teacher") {
  4990. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4991. } else if (e.data.tools && e.data.tools == "3teacher") {
  4992. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4993. } else if (e.data.tools && e.data.tools == "7teacher") {
  4994. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4995. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4996. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4997. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4998. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4999. } else if (e.data.tools && e.data.tools == "1E") {
  5000. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5001. } else if (e.data.tools && e.data.tools == "3E") {
  5002. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5003. } else if (e.data.tools && e.data.tools == "57y") {
  5004. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5005. } else if (e.data.tools && e.data.tools == "57u") {
  5006. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5007. } else if (e.data.tools && e.data.tools == "57teacher") {
  5008. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5009. } else if (e.data.tools && e.data.tools == "64") {
  5010. U.MD.D.I.openApplication("AIChat")
  5011. } else if (e.data.tools && e.data.tools == "66") {
  5012. U.MD.D.I.openApplication("formulaEdi")
  5013. } else if (e.data.tools && e.data.tools == "67") {
  5014. U.MD.D.I.openApplication("molStr")
  5015. } else if (e.data.tools && e.data.tools == "68") {
  5016. U.MD.D.I.openApplication("timeAxis")
  5017. } else if (e.data.tools && e.data.tools == "openCourse") {
  5018. let _data = {
  5019. typea: e.data.typea || '',
  5020. typeb: e.data.typeb || '',
  5021. typed: e.data.typed || '',
  5022. }
  5023. U.MD.D.I.openInApplication("index", _data)
  5024. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5025. let _data = {
  5026. classid: e.data.classid || '',
  5027. }
  5028. U.MD.D.I.openInApplication("dataClass", _data)
  5029. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5030. let _data = {
  5031. cid: e.data.cid || '',
  5032. gid: e.data.gid || '',
  5033. }
  5034. U.MD.D.I.openInApplication("opencCscl", _data)
  5035. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5036. U.MD.D.I.openApplication("dataBoardTest")
  5037. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5038. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5039. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5040. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5041. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5042. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5043. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5044. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5045. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5046. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5047. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5048. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5049. }else if (e.data.tools && e.data.tools == "loginSz") {
  5050. U.MD.D.I.openInApplication("loginSz")
  5051. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5052. if($('#classroom_observation_board')[0]){
  5053. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5054. }
  5055. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5056. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5057. if($('#classroom_observation_ob_comment')[0]){
  5058. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5059. }
  5060. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5061. }else if (e.data.tools && e.data.tools == "logout"){
  5062. U.MD.U.LO.logoutSystem()
  5063. }else if (e.data.tools && e.data.tools == "getLogin"){
  5064. let _iframe = $('#UI_Login')[0];
  5065. if (_iframe) {
  5066. var userInfo = US.userInfo;
  5067. var type = 2
  5068. if(userInfo && userInfo.userid){
  5069. type = 1
  5070. }
  5071. _contentWindow = _iframe.contentWindow;
  5072. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5073. }
  5074. }
  5075. });
  5076. U.MD.D.I.selectUser = function () {
  5077. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5078. if (res.value[0].length > 0) {
  5079. US.userInfo = res.value[0][0];
  5080. $(".userName")[0].innerHTML = US.userInfo.username;
  5081. }
  5082. }, [], { "type": "GET", "withCredentials": true });
  5083. }
  5084. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5085. var _userinfo = US.userInfo, //登录用户信息
  5086. _userid = US.userInfo.userid, //登录用户id
  5087. _oid = _userinfo.organizeid,
  5088. _type = US.userInfo.type,
  5089. _org = US.userInfo.org,
  5090. _role = US.userInfo.role,
  5091. _classId = US.userInfo.classid;
  5092. if (_type == 4) {
  5093. tType = 4
  5094. }
  5095. switch (str) {
  5096. case "studyDetailNT": //无终端模式
  5097. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5098. setTimeout(() => {
  5099. U.MD.U.L.login();
  5100. }, 2000);
  5101. } else {
  5102. _formdiv = new U.UF.UI.form(
  5103. "课程详情",
  5104. $$("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 }), {
  5105. "id": "studyDetailNT",
  5106. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5112. break;
  5113. }
  5114. case "studyDetail":
  5115. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5116. setTimeout(() => {
  5117. U.MD.U.L.login();
  5118. }, 2000);
  5119. } else {
  5120. _formdiv = new U.UF.UI.form(
  5121. "课程详情",
  5122. $$("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 }), {
  5123. "id": "studyDetail",
  5124. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //创建窗体
  5129. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5130. break;
  5131. }
  5132. case "studyDetailTrain":
  5133. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5134. setTimeout(() => {
  5135. U.MD.U.L.login();
  5136. }, 2000);
  5137. } else {
  5138. _formdiv = new U.UF.UI.form(
  5139. "培训详情",
  5140. $$("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 }), {
  5141. "id": "studyDetailTrain",
  5142. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5148. break;
  5149. }
  5150. case "studyDetailS":
  5151. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5152. setTimeout(() => {
  5153. U.MD.U.L.login();
  5154. }, 2000);
  5155. } else {
  5156. _formdiv = new U.UF.UI.form(
  5157. "项目详情",
  5158. $$("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 }), {
  5159. "id": "studyDetailS",
  5160. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. _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); } }
  5166. break;
  5167. }
  5168. case "studyDetailStudio":
  5169. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5170. setTimeout(() => {
  5171. U.MD.U.L.login();
  5172. }, 2000);
  5173. } else {
  5174. _formdiv = new U.UF.UI.form(
  5175. "工作详情",
  5176. $$("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 }), {
  5177. "id": "studyDetailStudio",
  5178. "style": { "width": "95%", "height": "95%", "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/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5184. break;
  5185. }
  5186. case "studyDetailS5":
  5187. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5188. setTimeout(() => {
  5189. U.MD.U.L.login();
  5190. }, 2000);
  5191. } else {
  5192. _formdiv = new U.UF.UI.form(
  5193. "项目详情",
  5194. $$("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 }), {
  5195. "id": "studyDetailS",
  5196. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //创建窗体
  5201. _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); } }
  5202. break;
  5203. }
  5204. case "studyDetailGM":
  5205. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5206. setTimeout(() => {
  5207. U.MD.U.L.login();
  5208. }, 2000);
  5209. } else {
  5210. _formdiv = new U.UF.UI.form(
  5211. "课程详情",
  5212. $$("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 }), {
  5213. "id": "studyDetail",
  5214. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5215. "onresize": function () { }
  5216. }, {
  5217. closecallback: function () { }
  5218. }, { "style": { "height": "36px" } }).form; //创建窗体
  5219. _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); } }
  5220. break;
  5221. }
  5222. case "hanUrl":
  5223. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5224. setTimeout(() => {
  5225. U.MD.U.L.login();
  5226. }, 2000);
  5227. } else {
  5228. _formdiv = new U.UF.UI.form(
  5229. "汉字宫",
  5230. $$("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" }), {
  5231. "id": "hanUrl",
  5232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5233. "onresize": function () { }
  5234. }, {
  5235. closecallback: function () { }
  5236. }, { "style": { "height": "36px" } }).form; //创建窗体
  5237. _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); } }
  5238. break;
  5239. }
  5240. case "index":
  5241. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5242. setTimeout(() => {
  5243. U.MD.U.L.login();
  5244. }, 2000);
  5245. } else {
  5246. _formdiv = new U.UF.UI.form(
  5247. "课程中心",
  5248. $$("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 }), {
  5249. "id": "study",
  5250. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5251. "onresize": function () { }
  5252. }, {
  5253. closecallback: function () { }
  5254. }, { "style": { "height": "36px" } }).form; //创建窗体
  5255. _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); } }
  5256. break;
  5257. }
  5258. case "dataClass":
  5259. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5260. setTimeout(() => {
  5261. U.MD.U.L.login();
  5262. }, 2000);
  5263. } else {
  5264. _formdiv = new U.UF.UI.form(
  5265. "数据报告",
  5266. $$("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 }), {
  5267. "id": "dataClass",
  5268. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5269. "onresize": function () { }
  5270. }, {
  5271. closecallback: function () { }
  5272. }, { "style": { "height": "36px" } }).form; //创建窗体
  5273. _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); } }
  5274. break;
  5275. }
  5276. case "opencCscl":
  5277. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5278. setTimeout(() => {
  5279. U.MD.U.L.login();
  5280. }, 2000);
  5281. } else {
  5282. _formdiv = new U.UF.UI.form(
  5283. "协同建构",
  5284. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5285. "id": "futureClass",
  5286. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5287. "onresize": function () { }
  5288. }, {
  5289. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5290. }, { "style": { "height": "36px" } }).form; //创建窗体
  5291. _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); } }
  5292. break;
  5293. }
  5294. case "openCourseUpdate":
  5295. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5296. setTimeout(() => {
  5297. U.MD.U.L.login();
  5298. }, 2000);
  5299. } else {
  5300. _formdiv = new U.UF.UI.form(
  5301. "课程管理",
  5302. $$("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 }), {
  5303. "id": "openCourseUpdate",
  5304. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5305. "onresize": function () { }
  5306. }, {
  5307. closecallback: function () { }
  5308. }, { "style": { "height": "36px" } }).form; //创建窗体
  5309. break;
  5310. }
  5311. case "openNewCourseUpdate":
  5312. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5313. setTimeout(() => {
  5314. U.MD.U.L.login();
  5315. }, 2000);
  5316. } else {
  5317. _formdiv = new U.UF.UI.form(
  5318. "课程管理",
  5319. $$("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 }), {
  5320. "id": "openCourseUpdate",
  5321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5322. "onresize": function () { }
  5323. }, {
  5324. closecallback: function () { }
  5325. }, { "style": { "height": "36px" } }).form; //创建窗体
  5326. break;
  5327. }
  5328. case "openCourseEUpdate":
  5329. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5330. setTimeout(() => {
  5331. U.MD.U.L.login();
  5332. }, 2000);
  5333. } else {
  5334. _formdiv = new U.UF.UI.form(
  5335. "课程管理",
  5336. $$("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 }), {
  5337. "id": "openCourseUpdate",
  5338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5339. "onresize": function () { }
  5340. }, {
  5341. closecallback: function () { }
  5342. }, { "style": { "height": "36px" } }).form; //创建窗体
  5343. break;
  5344. }
  5345. case "openCourseAiUpdate":
  5346. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5347. setTimeout(() => {
  5348. U.MD.U.L.login();
  5349. }, 2000);
  5350. } else {
  5351. _formdiv = new U.UF.UI.form(
  5352. "课程管理",
  5353. $$("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 }), {
  5354. "id": "openCourseUpdate",
  5355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5356. "onresize": function () { }
  5357. }, {
  5358. closecallback: function () { }
  5359. }, { "style": { "height": "36px" } }).form; //创建窗体
  5360. break;
  5361. }
  5362. case "openCourseAiUpdate2":
  5363. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5364. setTimeout(() => {
  5365. U.MD.U.L.login();
  5366. }, 2000);
  5367. } else {
  5368. _formdiv = new U.UF.UI.form(
  5369. "课程管理",
  5370. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5371. "id": "openCourseUpdate",
  5372. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5373. "onresize": function () { }
  5374. }, {
  5375. closecallback: function () { }
  5376. }, { "style": { "height": "36px" } }).form; //创建窗体
  5377. break;
  5378. }
  5379. case "openCourseNewUpdate":
  5380. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5381. setTimeout(() => {
  5382. U.MD.U.L.login();
  5383. }, 2000);
  5384. } else {
  5385. _formdiv = new U.UF.UI.form(
  5386. "课程管理",
  5387. $$("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 }), {
  5388. "id": "openCourseUpdate",
  5389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5390. "onresize": function () { }
  5391. }, {
  5392. closecallback: function () { }
  5393. }, { "style": { "height": "36px" } }).form; //创建窗体
  5394. break;
  5395. }
  5396. case "inviteLoginSz":
  5397. _formdiv = new U.UF.UI.form(
  5398. "随机码登录",
  5399. $$("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://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5400. "id": "loginSz",
  5401. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5402. "onresize": function () { }
  5403. }, {
  5404. closecallback: function () { }
  5405. }, { "style": { "height": "36px" } }).form; //创建窗体
  5406. break;
  5407. case "loginSz":
  5408. _formdiv = new U.UF.UI.form(
  5409. "教师登录",
  5410. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn/ResourcesLogin" }), {
  5411. "id": "loginSz",
  5412. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5413. "onresize": function () { }
  5414. }, {
  5415. closecallback: function () { }
  5416. }, { "style": { "height": "36px" } }).form; //创建窗体
  5417. break;
  5418. case "teacher":
  5419. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5420. setTimeout(() => {
  5421. U.MD.U.L.login();
  5422. }, 2000);
  5423. } else {
  5424. _formdiv = new U.UF.UI.form(
  5425. "教师管理",
  5426. $$("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 }), {
  5427. "id": "teacher",
  5428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. break;
  5434. }
  5435. case "dataBoardSZArea":
  5436. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5437. setTimeout(() => {
  5438. U.MD.U.L.login();
  5439. }, 2000);
  5440. } else {
  5441. _formdiv = new U.UF.UI.form(
  5442. "综合数据看板",
  5443. $$("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 }), {
  5444. "id": "dataBoardSZArea",
  5445. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5446. "onresize": function () { }
  5447. }, {
  5448. closecallback: function () { }
  5449. }, { "style": { "height": "36px" } }).form; //创建窗体
  5450. break;
  5451. }
  5452. case "dataBoardSZCity":
  5453. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5454. setTimeout(() => {
  5455. U.MD.U.L.login();
  5456. }, 2000);
  5457. } else {
  5458. _formdiv = new U.UF.UI.form(
  5459. "综合数据看板",
  5460. $$("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 }), {
  5461. "id": "dataBoardSZCity",
  5462. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //创建窗体
  5467. break;
  5468. }
  5469. case "classroom_observation_board":
  5470. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5471. setTimeout(() => {
  5472. U.MD.U.L.login();
  5473. }, 2000);
  5474. } else {
  5475. _formdiv = new U.UF.UI.form(
  5476. "课堂观察",
  5477. $$("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 }), {
  5478. "id": "classroom_observation_board",
  5479. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5480. "onresize": function () { }
  5481. }, {
  5482. closecallback: function () { }
  5483. }, { "style": { "height": "36px" } }).form; //创建窗体
  5484. break;
  5485. }
  5486. case "classroom_observation_ob_comment":
  5487. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5488. setTimeout(() => {
  5489. U.MD.U.L.login();
  5490. }, 2000);
  5491. } else {
  5492. _formdiv = new U.UF.UI.form(
  5493. "课堂审核",
  5494. $$("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 }), {
  5495. "id": "classroom_observation_ob_comment",
  5496. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5497. "onresize": function () { }
  5498. }, {
  5499. closecallback: function () { }
  5500. }, { "style": { "height": "36px" } }).form; //创建窗体
  5501. break;
  5502. }
  5503. case "gptConfig":
  5504. _formdiv = new U.UF.UI.form(
  5505. data.name ? data.name : "应用中心",
  5506. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5507. "id": "gptConfig" + data.id,
  5508. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. break;
  5514. }
  5515. }
  5516. U.MD.D.I.openApplication = function (str, obj, info) {
  5517. obj = obj || {};
  5518. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5519. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5520. _userinfo = US.userInfo, //登录用户信息
  5521. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5522. _oid = obj.organizeid || _userinfo.organizeid,
  5523. _type = US.userInfo.type,
  5524. _org = US.userInfo.org,
  5525. _role = US.userInfo.role,
  5526. _classId = US.userInfo.classid,
  5527. _TscreenType = 1
  5528. _screenType = 2,
  5529. _SscreenType = 3;
  5530. let iframeBool = true
  5531. if(U.UF.UI.form.allForm[str]){
  5532. iframeBool = false
  5533. }
  5534. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5535. return;
  5536. }
  5537. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5538. switch (str) {
  5539. case "studnetProject": //好友打开
  5540. _formdiv = new U.UF.UI.form(
  5541. "我的项目",
  5542. $$("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 }), {
  5543. "id": "studnetProject",
  5544. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _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); } }
  5550. break;
  5551. case "studentEvaluate": //好友打开
  5552. _formdiv = new U.UF.UI.form(
  5553. "我的评价",
  5554. $$("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 }), {
  5555. "id": "studentEvaluate",
  5556. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _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); } }
  5562. break;
  5563. case "my":
  5564. _formdiv = new U.UF.UI.form(
  5565. "我的资料",
  5566. $$("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 }), {
  5567. "id": "my",
  5568. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _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); } }
  5574. break;
  5575. case "program":
  5576. _formdiv = new U.UF.UI.form(
  5577. "编程平台",
  5578. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5579. "id": "program",
  5580. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _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); } }
  5586. break;
  5587. case "library":
  5588. _formdiv = new U.UF.UI.form(
  5589. "素材库",
  5590. $$("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 }), {
  5591. "id": "library",
  5592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () { }
  5596. }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. _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); } }
  5598. break;
  5599. case "whiteboard":
  5600. _formdiv = new U.UF.UI.form(
  5601. "电子白板",
  5602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5603. "id": "whiteboard",
  5604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. _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); } }
  5610. break;
  5611. case "investigation":
  5612. _formdiv = new U.UF.UI.form(
  5613. "问卷调查",
  5614. $$("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 }), {
  5615. "id": "investigation",
  5616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //创建窗体
  5621. _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); } }
  5622. break;
  5623. case "note":
  5624. _formdiv = new U.UF.UI.form(
  5625. "便签分类",
  5626. $$("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 }), {
  5627. "id": "note",
  5628. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //创建窗体
  5633. _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); } }
  5634. break;
  5635. // case "score":
  5636. // _formdiv = new U.UF.UI.form(
  5637. // "量规评分",
  5638. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5639. // "id": "score",
  5640. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5641. // "onresize": function() {}
  5642. // }, {
  5643. // closecallback: function() {}
  5644. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5645. // _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); } }
  5646. // break;
  5647. case "mind":
  5648. _formdiv = new U.UF.UI.form(
  5649. "思维导图",
  5650. $$("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"
  5651. "id": "mind",
  5652. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5653. "onresize": function () { }
  5654. }, {
  5655. closecallback: function () { }
  5656. }, { "style": { "height": "36px" } }).form; //创建窗体
  5657. _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); } }
  5658. break;
  5659. case "doc":
  5660. // U.MD.D.I.isRoom();
  5661. _formdiv = new U.UF.UI.form(
  5662. "协同文档",
  5663. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5664. "id": "doc",
  5665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5666. "onresize": function () { }
  5667. }, {
  5668. closecallback: function () { }
  5669. }, { "style": { "height": "36px" } }).form; //创建窗体
  5670. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5671. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5672. // })
  5673. _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); } }
  5674. break;
  5675. case "studentStudy":
  5676. _formdiv = new U.UF.UI.form(
  5677. "课程中心",
  5678. $$("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
  5679. "id": "studentStudy",
  5680. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5686. break;
  5687. case "train": //好友打开
  5688. _formdiv = new U.UF.UI.form(
  5689. "训练平台",
  5690. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5691. "id": "train",
  5692. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5693. "onresize": function () { }
  5694. }, {
  5695. closecallback: function () { }
  5696. }, { "style": { "height": "36px" } }).form; //创建窗体
  5697. _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); } }
  5698. break;
  5699. case "mindNetwork": //好友打开
  5700. _formdiv = new U.UF.UI.form(
  5701. "思维网格",
  5702. $$("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 }), {
  5703. "id": "mindNetwork",
  5704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5705. "onresize": function () { }
  5706. }, {
  5707. closecallback: function () { }
  5708. }, { "style": { "height": "36px" } }).form; //创建窗体
  5709. _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); } }
  5710. break;
  5711. case "studentClassRoom": //好友打开
  5712. _formdiv = new U.UF.UI.form(
  5713. "实时课堂",
  5714. $$("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 }), {
  5715. "id": "studentClassRoom",
  5716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5722. setTimeout(() => {
  5723. U.UF.F.windowZooming(_formdiv)
  5724. }, 0);
  5725. break;
  5726. }
  5727. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5728. switch (str) {
  5729. case "studnetProject": //好友打开
  5730. _formdiv = new U.UF.UI.form(
  5731. "我的项目",
  5732. $$("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 }), {
  5733. "id": "studnetProject",
  5734. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5740. break;
  5741. case "studentEvaluate": //好友打开
  5742. _formdiv = new U.UF.UI.form(
  5743. "我的评价",
  5744. $$("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 }), {
  5745. "id": "studentEvaluate",
  5746. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //创建窗体
  5751. _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); } }
  5752. break;
  5753. case "my":
  5754. _formdiv = new U.UF.UI.form(
  5755. "我的资料",
  5756. $$("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 }), {
  5757. "id": "my",
  5758. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5759. "onresize": function () { }
  5760. }, {
  5761. closecallback: function () { }
  5762. }, { "style": { "height": "36px" } }).form; //创建窗体
  5763. _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); } }
  5764. break;
  5765. case "program":
  5766. _formdiv = new U.UF.UI.form(
  5767. "编程平台",
  5768. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5769. "id": "program",
  5770. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5776. break;
  5777. case "library":
  5778. _formdiv = new U.UF.UI.form(
  5779. "素材库",
  5780. $$("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 }), {
  5781. "id": "library",
  5782. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5783. "onresize": function () { }
  5784. }, {
  5785. closecallback: function () { }
  5786. }, { "style": { "height": "36px" } }).form; //创建窗体
  5787. _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); } }
  5788. break;
  5789. case "whiteboard":
  5790. _formdiv = new U.UF.UI.form(
  5791. "电子白板",
  5792. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5793. "id": "whiteboard",
  5794. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5795. "onresize": function () { }
  5796. }, {
  5797. closecallback: function () { }
  5798. }, { "style": { "height": "36px" } }).form; //创建窗体
  5799. _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); } }
  5800. break;
  5801. case "investigation":
  5802. _formdiv = new U.UF.UI.form(
  5803. "问卷调查",
  5804. $$("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 }), {
  5805. "id": "investigation",
  5806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //创建窗体
  5811. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5812. break;
  5813. case "note":
  5814. _formdiv = new U.UF.UI.form(
  5815. "便签分类",
  5816. $$("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 }), {
  5817. "id": "note",
  5818. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5819. "onresize": function () { }
  5820. }, {
  5821. closecallback: function () { }
  5822. }, { "style": { "height": "36px" } }).form; //创建窗体
  5823. _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); } }
  5824. break;
  5825. // case "score":
  5826. // _formdiv = new U.UF.UI.form(
  5827. // "量规评分",
  5828. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5829. // "id": "score",
  5830. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5831. // "onresize": function() {}
  5832. // }, {
  5833. // closecallback: function() {}
  5834. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5835. // _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); } }
  5836. // break;
  5837. case "mind":
  5838. _formdiv = new U.UF.UI.form(
  5839. "思维导图",
  5840. $$("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"
  5841. "id": "mind",
  5842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. _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); } }
  5848. break;
  5849. case "doc":
  5850. // U.MD.D.I.isRoom();
  5851. _formdiv = new U.UF.UI.form(
  5852. "协同文档",
  5853. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5854. "id": "doc",
  5855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5861. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5862. })
  5863. _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); } }
  5864. break;
  5865. case "train": //好友打开
  5866. _formdiv = new U.UF.UI.form(
  5867. "训练平台",
  5868. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5869. "id": "train",
  5870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5871. "onresize": function () { }
  5872. }, {
  5873. closecallback: function () { }
  5874. }, { "style": { "height": "36px" } }).form; //创建窗体
  5875. _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); } }
  5876. break;
  5877. case "studentStudy":
  5878. _formdiv = new U.UF.UI.form(
  5879. "课程中心",
  5880. $$("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
  5881. "id": "studentStudy",
  5882. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5883. "onresize": function () { }
  5884. }, {
  5885. closecallback: function () { }
  5886. }, { "style": { "height": "36px" } }).form; //创建窗体
  5887. _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); } }
  5888. break;
  5889. case "mindNetwork": //好友打开
  5890. _formdiv = new U.UF.UI.form(
  5891. "思维网格",
  5892. $$("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 }), {
  5893. "id": "mindNetwork",
  5894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. _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); } }
  5900. break;
  5901. case "studentClassRoom": //好友打开
  5902. _formdiv = new U.UF.UI.form(
  5903. "实时课堂",
  5904. $$("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 }), {
  5905. "id": "studentClassRoom",
  5906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5907. "onresize": function () { }
  5908. }, {
  5909. closecallback: function () { }
  5910. }, { "style": { "height": "36px" } }).form; //创建窗体
  5911. _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); } }
  5912. setTimeout(() => {
  5913. U.UF.F.windowZooming(_formdiv)
  5914. }, 0);
  5915. break;
  5916. }
  5917. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5918. //选择应用处理
  5919. switch (str) {
  5920. case "project": //好友打开
  5921. _formdiv = new U.UF.UI.form(
  5922. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5923. $$("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 }), {
  5924. "id": "project",
  5925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. _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); } }
  5931. break;
  5932. case "student":
  5933. _formdiv = new U.UF.UI.form(
  5934. "学生管理",
  5935. $$("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 }), {
  5936. "id": "student",
  5937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _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); } }
  5943. break;
  5944. case "evaluate":
  5945. _formdiv = new U.UF.UI.form(
  5946. "学生评价",
  5947. $$("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 }), {
  5948. "id": "evaluate",
  5949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5950. "onresize": function () { }
  5951. }, {
  5952. closecallback: function () { }
  5953. }, { "style": { "height": "36px" } }).form; //创建窗体
  5954. _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); } }
  5955. break;
  5956. case "sys":
  5957. _formdiv = new U.UF.UI.form(
  5958. "目标管理",
  5959. $$("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 }), {
  5960. "id": "sys",
  5961. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. _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); } }
  5967. break;
  5968. case "courseDesign":
  5969. _formdiv = new U.UF.UI.form(
  5970. "项目设计",
  5971. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5972. "id": "courseDesign",
  5973. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5974. "onresize": function () { }
  5975. }, {
  5976. closecallback: function () { }
  5977. }, { "style": { "height": "36px" } }).form; //创建窗体
  5978. _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); } }
  5979. break;
  5980. case "program":
  5981. _formdiv = new U.UF.UI.form(
  5982. "编程平台",
  5983. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5984. "id": "program",
  5985. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. _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); } }
  5991. break;
  5992. case "class":
  5993. _formdiv = new U.UF.UI.form(
  5994. "班级管理",
  5995. $$("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 }), {
  5996. "id": "class",
  5997. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5998. "onresize": function () { }
  5999. }, {
  6000. closecallback: function () { }
  6001. }, { "style": { "height": "36px" } }).form; //创建窗体
  6002. _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); } }
  6003. break;
  6004. case "Grade":
  6005. _formdiv = new U.UF.UI.form(
  6006. "年级管理",
  6007. $$("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 }), {
  6008. "id": "Grade",
  6009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _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); } }
  6015. break;
  6016. case "teacherOffice":
  6017. _formdiv = new U.UF.UI.form(
  6018. "教研室",
  6019. $$("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 }), {
  6020. "id": "teacherOffice",
  6021. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6022. "onresize": function () { }
  6023. }, {
  6024. closecallback: function () { }
  6025. }, { "style": { "height": "36px" } }).form; //创建窗体
  6026. _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); } }
  6027. break;
  6028. case "my":
  6029. _formdiv = new U.UF.UI.form(
  6030. "我的资料",
  6031. $$("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 }), {
  6032. "id": "my",
  6033. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6034. "onresize": function () { }
  6035. }, {
  6036. closecallback: function () { }
  6037. }, { "style": { "height": "36px" } }).form; //创建窗体
  6038. _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); } }
  6039. break;
  6040. case "notice":
  6041. _formdiv = new U.UF.UI.form(
  6042. "通知公告",
  6043. $$("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 }), {
  6044. "id": "notice",
  6045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6046. "onresize": function () { }
  6047. }, {
  6048. closecallback: function () { }
  6049. }, { "style": { "height": "36px" } }).form; //创建窗体
  6050. _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); } }
  6051. break;
  6052. case "library":
  6053. _formdiv = new U.UF.UI.form(
  6054. "素材库",
  6055. $$("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 }), {
  6056. "id": "library",
  6057. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //创建窗体
  6062. _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); } }
  6063. break;
  6064. case "whiteboard":
  6065. _formdiv = new U.UF.UI.form(
  6066. "电子白板",
  6067. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6068. "id": "whiteboard",
  6069. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6070. "onresize": function () { }
  6071. }, {
  6072. closecallback: function () { }
  6073. }, { "style": { "height": "36px" } }).form; //创建窗体
  6074. _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); } }
  6075. break;
  6076. case "investigation":
  6077. _formdiv = new U.UF.UI.form(
  6078. "问卷调查",
  6079. $$("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 }), {
  6080. "id": "investigation",
  6081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. _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); } }
  6087. break;
  6088. case "note":
  6089. _formdiv = new U.UF.UI.form(
  6090. "便签分类",
  6091. $$("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 }), {
  6092. "id": "note",
  6093. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //创建窗体
  6098. _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); } }
  6099. break;
  6100. // case "score":
  6101. // _formdiv = new U.UF.UI.form(
  6102. // "量规评分",
  6103. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6104. // "id": "score",
  6105. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6106. // "onresize": function() {}
  6107. // }, {
  6108. // closecallback: function() {}
  6109. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6110. // _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); } }
  6111. // break;
  6112. case "mind":
  6113. _formdiv = new U.UF.UI.form(
  6114. "思维导图",
  6115. $$("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"
  6116. "id": "mind",
  6117. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6118. "onresize": function () { }
  6119. }, {
  6120. closecallback: function () { }
  6121. }, { "style": { "height": "36px" } }).form; //创建窗体
  6122. _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); } }
  6123. break;
  6124. case "doc":
  6125. // U.MD.D.I.isRoom();
  6126. _formdiv = new U.UF.UI.form(
  6127. "协同文档",
  6128. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6129. "id": "doc",
  6130. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6131. "onresize": function () { }
  6132. }, {
  6133. closecallback: function () { }
  6134. }, { "style": { "height": "36px" } }).form; //创建窗体
  6135. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6136. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6137. })
  6138. _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); } }
  6139. break;
  6140. case "study":
  6141. _formdiv = new U.UF.UI.form(
  6142. "课程中心",
  6143. $$("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
  6144. "id": "study",
  6145. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, { "style": { "height": "36px" } }).form; //创建窗体
  6150. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6151. break;
  6152. case "mindNetwork": //好友打开
  6153. _formdiv = new U.UF.UI.form(
  6154. "思维网格",
  6155. $$("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 }), {
  6156. "id": "mindNetwork",
  6157. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6158. "onresize": function () { }
  6159. }, {
  6160. closecallback: function () { }
  6161. }, { "style": { "height": "36px" } }).form; //创建窗体
  6162. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6163. break;
  6164. case "train": //好友打开
  6165. _formdiv = new U.UF.UI.form(
  6166. "训练平台",
  6167. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6168. "id": "mindNetwork",
  6169. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, { "style": { "height": "36px" } }).form; //创建窗体
  6174. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6175. break;
  6176. case "teacherClassRoom": //好友打开
  6177. _formdiv = new U.UF.UI.form(
  6178. "实时课堂",
  6179. $$("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 }), {
  6180. "id": "teacherClassRoom",
  6181. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6182. "onresize": function () { }
  6183. }, {
  6184. closecallback: function () { }
  6185. }, { "style": { "height": "36px" } }).form; //创建窗体
  6186. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6187. setTimeout(() => {
  6188. U.UF.F.windowZooming(_formdiv)
  6189. }, 0);
  6190. break;
  6191. }
  6192. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6193. switch (str) {
  6194. case "project": //好友打开
  6195. _formdiv = new U.UF.UI.form(
  6196. "课程管理",
  6197. $$("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 }), {
  6198. "id": "project",
  6199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6200. "onresize": function () { }
  6201. }, {
  6202. closecallback: function () { }
  6203. }, { "style": { "height": "36px" } }).form; //创建窗体
  6204. _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); } }
  6205. break;
  6206. case "evaluate":
  6207. _formdiv = new U.UF.UI.form(
  6208. "学生评价",
  6209. $$("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 }), {
  6210. "id": "evaluate",
  6211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6212. "onresize": function () { }
  6213. }, {
  6214. closecallback: function () { }
  6215. }, { "style": { "height": "36px" } }).form; //创建窗体
  6216. _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); } }
  6217. break;
  6218. case "notice":
  6219. _formdiv = new U.UF.UI.form(
  6220. "通知公告",
  6221. $$("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 }), {
  6222. "id": "notice",
  6223. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6224. "onresize": function () { }
  6225. }, {
  6226. closecallback: function () { }
  6227. }, { "style": { "height": "36px" } }).form; //创建窗体
  6228. _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); } }
  6229. break;
  6230. case "stuLibrary":
  6231. _formdiv = new U.UF.UI.form(
  6232. "学习资料",
  6233. $$("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 }), {
  6234. "id": "stuLibrary",
  6235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6236. "onresize": function () { }
  6237. }, {
  6238. closecallback: function () { }
  6239. }, { "style": { "height": "36px" } }).form; //创建窗体
  6240. _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); } }
  6241. break;
  6242. case "program":
  6243. _formdiv = new U.UF.UI.form(
  6244. "编程平台",
  6245. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6246. "id": "program",
  6247. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6248. "onresize": function () { }
  6249. }, {
  6250. closecallback: function () { }
  6251. }, { "style": { "height": "36px" } }).form; //创建窗体
  6252. _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); } }
  6253. break;
  6254. case "whiteboard":
  6255. _formdiv = new U.UF.UI.form(
  6256. "电子白板",
  6257. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6258. "id": "whiteboard",
  6259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6260. "onresize": function () { }
  6261. }, {
  6262. closecallback: function () { }
  6263. }, { "style": { "height": "36px" } }).form; //创建窗体
  6264. _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); } }
  6265. break;
  6266. case "investigation":
  6267. _formdiv = new U.UF.UI.form(
  6268. "问卷调查",
  6269. $$("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 }), {
  6270. "id": "investigation",
  6271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6272. "onresize": function () { }
  6273. }, {
  6274. closecallback: function () { }
  6275. }, { "style": { "height": "36px" } }).form; //创建窗体
  6276. _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); } }
  6277. break;
  6278. case "mind":
  6279. _formdiv = new U.UF.UI.form(
  6280. "思维导图",
  6281. $$("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"
  6282. "id": "mind",
  6283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6284. "onresize": function () { }
  6285. }, {
  6286. closecallback: function () { }
  6287. }, { "style": { "height": "36px" } }).form; //创建窗体
  6288. _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); } }
  6289. break;
  6290. case "doc":
  6291. // U.MD.D.I.isRoom();
  6292. _formdiv = new U.UF.UI.form(
  6293. "协同文档",
  6294. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6295. "id": "doc",
  6296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6297. "onresize": function () { }
  6298. }, {
  6299. closecallback: function () { }
  6300. }, { "style": { "height": "36px" } }).form; //创建窗体
  6301. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6302. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6303. })
  6304. _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); } }
  6305. break;
  6306. case "study":
  6307. _formdiv = new U.UF.UI.form(
  6308. "课程中心",
  6309. $$("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
  6310. "id": "study",
  6311. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6312. "onresize": function () { }
  6313. }, {
  6314. closecallback: function () { }
  6315. }, { "style": { "height": "36px" } }).form; //创建窗体
  6316. _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); } }
  6317. break;
  6318. case "mindNetwork": //好友打开
  6319. _formdiv = new U.UF.UI.form(
  6320. "思维网格",
  6321. $$("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 }), {
  6322. "id": "mindNetwork",
  6323. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6324. "onresize": function () { }
  6325. }, {
  6326. closecallback: function () { }
  6327. }, { "style": { "height": "36px" } }).form; //创建窗体
  6328. _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); } }
  6329. break;
  6330. case "train": //好友打开
  6331. _formdiv = new U.UF.UI.form(
  6332. "训练平台",
  6333. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6334. "id": "train",
  6335. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6336. "onresize": function () { }
  6337. }, {
  6338. closecallback: function () { }
  6339. }, { "style": { "height": "36px" } }).form; //创建窗体
  6340. _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); } }
  6341. break;
  6342. case "sys":
  6343. _formdiv = new U.UF.UI.form(
  6344. "目标管理",
  6345. $$("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 }), {
  6346. "id": "sys",
  6347. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6348. "onresize": function () { }
  6349. }, {
  6350. closecallback: function () { }
  6351. }, { "style": { "height": "36px" } }).form; //创建窗体
  6352. _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); } }
  6353. break;
  6354. case "courseDesign":
  6355. _formdiv = new U.UF.UI.form(
  6356. "项目设计",
  6357. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6358. "id": "courseDesign",
  6359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6360. "onresize": function () { }
  6361. }, {
  6362. closecallback: function () { }
  6363. }, { "style": { "height": "36px" } }).form; //创建窗体
  6364. _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); } }
  6365. break;
  6366. }
  6367. } else if (!_type) {
  6368. switch (str) {
  6369. case "my":
  6370. _formdiv = new U.UF.UI.form(
  6371. "我的资料",
  6372. $$("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 }), {
  6373. "id": "my",
  6374. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6375. "onresize": function () { }
  6376. }, {
  6377. closecallback: function () { }
  6378. }, { "style": { "height": "36px" } }).form; //创建窗体
  6379. _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); } }
  6380. break;
  6381. }
  6382. }
  6383. switch (str) {
  6384. // AIprogram2 AI体验 aihub.cocorobo.cn
  6385. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6386. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6387. case "formulaEdi": //公式编辑
  6388. _formdiv = new U.UF.UI.form(
  6389. "公式编辑",
  6390. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6391. "id": "formulaEdi",
  6392. "style": { "width": "70%", "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/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6398. break;
  6399. case "molStr": //分子结构
  6400. _formdiv = new U.UF.UI.form(
  6401. "分子结构",
  6402. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6403. "id": "molStr",
  6404. "style": { "width": "70%", "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/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6410. break;
  6411. case "timeAxis": //时间轴
  6412. _formdiv = new U.UF.UI.form(
  6413. "时间轴",
  6414. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6415. "id": "timeAxis",
  6416. "style": { "width": "70%", "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/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6422. break;
  6423. case "AIprogram2": //AI体验
  6424. _formdiv = new U.UF.UI.form(
  6425. "AI体验",
  6426. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6427. "id": "AIprogram2",
  6428. "style": { "width": "70%", "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/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6434. break;
  6435. case "Pythonprogram": //python编程
  6436. _formdiv = new U.UF.UI.form(
  6437. "Python编程",
  6438. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6439. "id": "Pythonprogram",
  6440. "style": { "width": "70%", "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/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6446. break;
  6447. case "AIprogram": //ai编程
  6448. _formdiv = new U.UF.UI.form(
  6449. "AI编程平台",
  6450. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6451. "id": "AIprogram",
  6452. "style": { "width": "70%", "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/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6458. break;
  6459. case "CocoPi": //CocoPi
  6460. _formdiv = new U.UF.UI.form(
  6461. "CocoPi",
  6462. $$("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" }), {
  6463. "id": "CocoPi",
  6464. "style": { "width": "70%", "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/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6470. break;
  6471. case "Wood": //Wood
  6472. _formdiv = new U.UF.UI.form(
  6473. "海龟编程",
  6474. $$("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/" }), {
  6475. "id": "Wood",
  6476. "style": { "width": "70%", "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/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6482. break;
  6483. case "car": //模拟驾驶
  6484. _formdiv = new U.UF.UI.form(
  6485. "模拟驾驶",
  6486. $$("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/" }), {
  6487. "id": "car",
  6488. "style": { "width": "70%", "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/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6494. break;
  6495. case "lineSearch": //路径搜索
  6496. _formdiv = new U.UF.UI.form(
  6497. "路径搜索",
  6498. $$("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/" }), {
  6499. "id": "lineSearch",
  6500. "style": { "width": "70%", "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/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6506. break;
  6507. case "deepLearning": //深度学习
  6508. _formdiv = new U.UF.UI.form(
  6509. "深度学习",
  6510. $$("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/#" }), {
  6511. "id": "deepLearning",
  6512. "style": { "width": "70%", "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/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6518. break;
  6519. case "allHistory": //深度学习
  6520. _formdiv = new U.UF.UI.form(
  6521. "全历史",
  6522. $$("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/" }), {
  6523. "id": "allHistory",
  6524. "style": { "width": "70%", "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/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6530. break;
  6531. case "chatPDF": //ai编程
  6532. _formdiv = new U.UF.UI.form(
  6533. "chatPDF",
  6534. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6535. "id": "chatPDF",
  6536. "style": { "width": "70%", "height": "90%", "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/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6542. break;
  6543. case "resources": //国家教育
  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": "https://so.eduyun.cn/synResource" }), {
  6547. "id": "resources",
  6548. "style": { "width": "80%", "height": "90%", "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/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6554. break;
  6555. case "codeEdit": //源码编辑
  6556. _formdiv = new U.UF.UI.form(
  6557. "源码编辑",
  6558. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6559. "id": "codeEdit",
  6560. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6561. "onresize": function () { }
  6562. }, {
  6563. closecallback: function () { }
  6564. }, { "style": { "height": "36px" } }).form; //创建窗体
  6565. _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); } }
  6566. break; //
  6567. case "MindMap": //MindMap
  6568. _formdiv = new U.UF.UI.form(
  6569. "MindMap",
  6570. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6571. "id": "MindMap",
  6572. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6573. "onresize": function () { }
  6574. }, {
  6575. closecallback: function () { }
  6576. }, { "style": { "height": "36px" } }).form; //创建窗体
  6577. _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); } }
  6578. break;
  6579. case "netWorkPanel": //netWorkPanel
  6580. _formdiv = new U.UF.UI.form(
  6581. "netWorkPanel",
  6582. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6583. "id": "netWorkPanel",
  6584. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6585. "onresize": function () { }
  6586. }, {
  6587. closecallback: function () { }
  6588. }, { "style": { "height": "36px" } }).form; //创建窗体
  6589. _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); } }
  6590. break;
  6591. case "GeoGebra": //GeoGebra
  6592. _formdiv = new U.UF.UI.form(
  6593. "GeoGebra",
  6594. $$("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" }), {
  6595. "id": "GeoGebra",
  6596. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6597. "onresize": function () { }
  6598. }, {
  6599. closecallback: function () { }
  6600. }, { "style": { "height": "36px" } }).form; //创建窗体
  6601. _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); } }
  6602. break;
  6603. case "translation": //翻译
  6604. _formdiv = new U.UF.UI.form(
  6605. "翻译",
  6606. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6607. "id": "translation",
  6608. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6609. "onresize": function () { }
  6610. }, {
  6611. closecallback: function () { }
  6612. }, { "style": { "height": "36px" } }).form; //创建窗体
  6613. _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); } }
  6614. break;
  6615. case "mohe": //魔盒
  6616. _formdiv = new U.UF.UI.form(
  6617. "魔盒识字",
  6618. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6619. "id": "mohe",
  6620. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6621. "onresize": function () { }
  6622. }, {
  6623. closecallback: function () { }
  6624. }, { "style": { "height": "36px" } }).form; //创建窗体
  6625. _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); } }
  6626. break;
  6627. case "24game": //24点
  6628. _formdiv = new U.UF.UI.form(
  6629. "24点",
  6630. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6631. "id": "24game",
  6632. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6633. "onresize": function () { }
  6634. }, {
  6635. closecallback: function () { }
  6636. }, { "style": { "height": "36px" } }).form; //创建窗体
  6637. _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); } }
  6638. break;
  6639. case "case":
  6640. _formdiv = new U.UF.UI.form(
  6641. "课程进展",
  6642. $$("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 }), {
  6643. "id": "case",
  6644. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6645. "onresize": function () { }
  6646. }, {
  6647. closecallback: function () { }
  6648. }, { "style": { "height": "36px" } }).form; //创建窗体
  6649. _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); } }
  6650. break;
  6651. case "snf":
  6652. _formdiv = new U.UF.UI.form(
  6653. "赛诺梵",
  6654. $$("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" }), {
  6655. "id": "snf",
  6656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6657. "onresize": function () { }
  6658. }, {
  6659. closecallback: function () { }
  6660. }, { "style": { "height": "36px" } }).form; //创建窗体
  6661. _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); } }
  6662. break;
  6663. case "hanFamily":
  6664. _formdiv = new U.UF.UI.form(
  6665. "汉字家族",
  6666. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6667. "id": "hanFamily",
  6668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6669. "onresize": function () { }
  6670. }, {
  6671. closecallback: function () { }
  6672. }, { "style": { "height": "36px" } }).form; //创建窗体
  6673. _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); } }
  6674. break;
  6675. case "hanClassics":
  6676. _formdiv = new U.UF.UI.form(
  6677. "国学经典",
  6678. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6679. "id": "hanClassics",
  6680. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6681. "onresize": function () { }
  6682. }, {
  6683. closecallback: function () { }
  6684. }, { "style": { "height": "36px" } }).form; //创建窗体
  6685. _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); } }
  6686. break;
  6687. case "hanTraining":
  6688. _formdiv = new U.UF.UI.form(
  6689. "笔画训练",
  6690. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6691. "id": "hanTraining",
  6692. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6693. "onresize": function () { }
  6694. }, {
  6695. closecallback: function () { }
  6696. }, { "style": { "height": "36px" } }).form; //创建窗体
  6697. _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); } }
  6698. break;
  6699. case "hanClass":
  6700. _formdiv = new U.UF.UI.form(
  6701. "书法课堂",
  6702. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6703. "id": "hanClass",
  6704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6705. "onresize": function () { }
  6706. }, {
  6707. closecallback: function () { }
  6708. }, { "style": { "height": "36px" } }).form; //创建窗体
  6709. _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); } }
  6710. break;
  6711. case "han":
  6712. _formdiv = new U.UF.UI.form(
  6713. "汉字宫",
  6714. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6715. "id": "han",
  6716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6717. "onresize": function () { }
  6718. }, {
  6719. closecallback: function () { }
  6720. }, { "style": { "height": "36px" } }).form; //创建窗体
  6721. _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); } }
  6722. break;
  6723. case "projectGM": //课程管理
  6724. _formdiv = new U.UF.UI.form(
  6725. "课程管理",
  6726. $$("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 }), {
  6727. "id": "projectGM",
  6728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6729. "onresize": function () { }
  6730. }, {
  6731. closecallback: function () { }
  6732. }, { "style": { "height": "36px" } }).form; //创建窗体
  6733. _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); } }
  6734. break;
  6735. case "studyGM": //课程中心
  6736. _formdiv = new U.UF.UI.form(
  6737. "课程中心",
  6738. $$("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
  6739. "id": "study",
  6740. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6741. "onresize": function () { }
  6742. }, {
  6743. closecallback: function () { }
  6744. }, { "style": { "height": "36px" } }).form; //创建窗体
  6745. _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); } }
  6746. break;
  6747. // studentGM
  6748. case "studentGM": //学生管理
  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/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6752. "id": "studentGM",
  6753. "style": { "width": "90%", "height": "90%", "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/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6759. break;
  6760. case "evaluateGM": //学生评价
  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/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6764. "id": "evaluateGM",
  6765. "style": { "width": "90%", "height": "90%", "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/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6771. break;
  6772. // classGM
  6773. case "classGM": //班级管理
  6774. _formdiv = new U.UF.UI.form(
  6775. "班级管理",
  6776. $$("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 }), {
  6777. "id": "classGM",
  6778. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6779. "onresize": function () { }
  6780. }, {
  6781. closecallback: function () { }
  6782. }, { "style": { "height": "36px" } }).form; //创建窗体
  6783. _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); } }
  6784. break;
  6785. // dataGM
  6786. case "dataGM":
  6787. _formdiv = new U.UF.UI.form(
  6788. "我的资料",
  6789. $$("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 }), {
  6790. "id": "dataGM",
  6791. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6792. "onresize": function () { }
  6793. }, {
  6794. closecallback: function () { }
  6795. }, { "style": { "height": "36px" } }).form; //创建窗体
  6796. _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); } }
  6797. break;
  6798. // caseGM
  6799. case "caseGM": //课程进展
  6800. _formdiv = new U.UF.UI.form(
  6801. "课程进展",
  6802. $$("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 }), {
  6803. "id": "caseGM",
  6804. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6805. "onresize": function () { }
  6806. }, {
  6807. closecallback: function () { }
  6808. }, { "style": { "height": "36px" } }).form; //创建窗体
  6809. _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); } }
  6810. break;
  6811. // meterialGM
  6812. case "meterialGM": //素材库
  6813. _formdiv = new U.UF.UI.form(
  6814. "素材库",
  6815. $$("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 }), {
  6816. "id": "meterialGM",
  6817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6818. "onresize": function () { }
  6819. }, {
  6820. closecallback: function () { }
  6821. }, { "style": { "height": "36px" } }).form; //创建窗体
  6822. _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); } }
  6823. break;
  6824. // evaluateSGM
  6825. case "evaluateSGM": //我的评价
  6826. _formdiv = new U.UF.UI.form(
  6827. "我的评价",
  6828. $$("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 }), {
  6829. "id": "evaluateSGM",
  6830. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6831. "onresize": function () { }
  6832. }, {
  6833. closecallback: function () { }
  6834. }, { "style": { "height": "36px" } }).form; //创建窗体
  6835. _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); } }
  6836. break;
  6837. case "jupyter": //jupyter
  6838. _formdiv = new U.UF.UI.form(
  6839. "jupyter",
  6840. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6841. "id": "jupyter",
  6842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6843. "onresize": function () { }
  6844. }, {
  6845. closecallback: function () { }
  6846. }, { "style": { "height": "36px" } }).form; //创建窗体
  6847. _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); } }
  6848. break;
  6849. case "number": //数字实验室
  6850. _formdiv = new U.UF.UI.form(
  6851. "数字实验室",
  6852. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6853. "id": "number",
  6854. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6855. "onresize": function () { }
  6856. }, {
  6857. closecallback: function () { }
  6858. }, { "style": { "height": "36px" } }).form; //创建窗体
  6859. _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); } }
  6860. break;
  6861. case "studentCourse": //项目管理 学生
  6862. _formdiv = new U.UF.UI.form(
  6863. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6864. $$("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 }), {
  6865. "id": "studentCourse",
  6866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6867. "onresize": function () { }
  6868. }, {
  6869. closecallback: function () { }
  6870. }, { "style": { "height": "36px" } }).form; //创建窗体
  6871. _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); } }
  6872. break;
  6873. case "studentCourseS": //项目管理 老师
  6874. _formdiv = new U.UF.UI.form(
  6875. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6876. $$("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 }), {
  6877. "id": "studentCourseS",
  6878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6879. "onresize": function () { }
  6880. }, {
  6881. closecallback: function () { }
  6882. }, { "style": { "height": "36px" } }).form; //创建窗体
  6883. _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); } }
  6884. break;
  6885. case "studentIndex": //项目中心
  6886. _formdiv = new U.UF.UI.form(
  6887. "项目中心",
  6888. $$("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 }), {
  6889. "id": "studentIndex",
  6890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6891. "onresize": function () { }
  6892. }, {
  6893. closecallback: function () { }
  6894. }, { "style": { "height": "36px" } }).form; //创建窗体
  6895. _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); } }
  6896. break;
  6897. case "CaseDesignS":
  6898. _formdiv = new U.UF.UI.form(
  6899. "项目进展",
  6900. $$("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 }), {
  6901. "id": "case",
  6902. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6903. "onresize": function () { }
  6904. }, {
  6905. closecallback: function () { }
  6906. }, { "style": { "height": "36px" } }).form; //创建窗体
  6907. _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); } }
  6908. break;
  6909. case "tcStudent": //腾讯学生管理
  6910. _formdiv = new U.UF.UI.form(
  6911. "学生管理",
  6912. $$("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 }), {
  6913. "id": "tcStudent",
  6914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6915. "onresize": function () { }
  6916. }, {
  6917. closecallback: function () { }
  6918. }, { "style": { "height": "36px" } }).form; //创建窗体
  6919. _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); } }
  6920. break;
  6921. case "tcSchool": //腾讯学校管理
  6922. _formdiv = new U.UF.UI.form(
  6923. "学校管理",
  6924. $$("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 }), {
  6925. "id": "tcSchool",
  6926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6927. "onresize": function () { }
  6928. }, {
  6929. closecallback: function () { }
  6930. }, { "style": { "height": "36px" } }).form; //创建窗体
  6931. _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); } }
  6932. break;
  6933. case "tcTeacher": //腾讯学校管理
  6934. _formdiv = new U.UF.UI.form(
  6935. "教师管理",
  6936. $$("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 }), {
  6937. "id": "tcTeacher",
  6938. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6939. "onresize": function () { }
  6940. }, {
  6941. closecallback: function () { }
  6942. }, { "style": { "height": "36px" } }).form; //创建窗体
  6943. _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); } }
  6944. break;
  6945. case "teacher":
  6946. _formdiv = new U.UF.UI.form(
  6947. "教师管理",
  6948. $$("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 }), {
  6949. "id": "teacher",
  6950. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6951. "onresize": function () { }
  6952. }, {
  6953. closecallback: function () { }
  6954. }, { "style": { "height": "36px" } }).form; //创建窗体
  6955. _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); } }
  6956. break;
  6957. case "tcData": //腾讯我的资料
  6958. _formdiv = new U.UF.UI.form(
  6959. "我的资料",
  6960. $$("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 }), {
  6961. "id": "tcData",
  6962. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6963. "onresize": function () { }
  6964. }, {
  6965. closecallback: function () { }
  6966. }, { "style": { "height": "36px" } }).form; //创建窗体
  6967. _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); } }
  6968. break;
  6969. case "tcNotice": //腾讯消息通知
  6970. _formdiv = new U.UF.UI.form(
  6971. "消息通知",
  6972. $$("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 }), {
  6973. "id": "tcNotice",
  6974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6975. "onresize": function () { }
  6976. }, {
  6977. closecallback: function () { }
  6978. }, { "style": { "height": "36px" } }).form; //创建窗体
  6979. _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); } }
  6980. break;
  6981. case "myReport": //好友打开
  6982. _formdiv = new U.UF.UI.form(
  6983. "我的评价",
  6984. $$("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 }), {
  6985. "id": "myReport",
  6986. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6987. "onresize": function () { }
  6988. }, {
  6989. closecallback: function () { }
  6990. }, { "style": { "height": "36px" } }).form; //创建窗体
  6991. _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); } }
  6992. break;
  6993. case "learnAna": //好友打开
  6994. _formdiv = new U.UF.UI.form(
  6995. "学习分析",
  6996. $$("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 }), {
  6997. "id": "learnAna",
  6998. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6999. "onresize": function () { }
  7000. }, {
  7001. closecallback: function () { }
  7002. }, { "style": { "height": "36px" } }).form; //创建窗体
  7003. _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); } }
  7004. break;
  7005. case "AIChat": //AI共创
  7006. _formdiv = new U.UF.UI.form(
  7007. "AI共创",
  7008. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7009. "id": "AIChat",
  7010. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7011. "onresize": function () { }
  7012. }, {
  7013. istop: true,
  7014. closecallback: function () { $("#aichat_icon").remove(); },
  7015. narrowcallback: function () {
  7016. if (!$("#aichat_icon")[0]) {
  7017. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7018. }
  7019. },
  7020. }, { "style": { "height": "36px" } }).form; //创建窗体
  7021. _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); } }
  7022. break;
  7023. case "ainew": //AI共创
  7024. _formdiv = new U.UF.UI.form(
  7025. "AI协同",
  7026. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7027. "id": "ainew",
  7028. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7029. "onresize": function () { }
  7030. }, {
  7031. closecallback: function () { }
  7032. }, { "style": { "height": "36px" } }).form; //创建窗体
  7033. _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); } }
  7034. break;
  7035. case "gpt4": //gpt4
  7036. _formdiv = new U.UF.UI.form(
  7037. "AI助手",
  7038. $$("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 }), {
  7039. "id": "gpt4",
  7040. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7041. "onresize": function () { }
  7042. }, {
  7043. closecallback: function () { }
  7044. }, { "style": { "height": "36px" } }).form; //创建窗体
  7045. _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); } }
  7046. break;
  7047. case "aigpt": //gpt4
  7048. _formdiv = new U.UF.UI.form(
  7049. "AI助手+",
  7050. $$("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 }), {
  7051. "id": "aigpt",
  7052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7053. "onresize": function () { }
  7054. }, {
  7055. closecallback: function () {
  7056. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7057. }
  7058. }, { "style": { "height": "36px" } }).form; //创建窗体
  7059. _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); } }
  7060. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7061. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7062. })
  7063. break;
  7064. case "aiKnowledge": //aiKnowledge
  7065. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7066. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7067. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7068. }
  7069. _formdiv = new U.UF.UI.form(
  7070. "知识建构",
  7071. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7072. "id": "aiKnowledge",
  7073. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7074. "onresize": function () { }
  7075. }, {
  7076. closecallback: function () { }
  7077. }, { "style": { "height": "36px" } }).form; //创建窗体
  7078. _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); } }
  7079. break;
  7080. case "futureClass": //AI共创
  7081. _formdiv = new U.UF.UI.form(
  7082. "协同建构",
  7083. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  7084. "id": "synergyCourse",
  7085. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7086. "onresize": function () { }
  7087. }, {
  7088. closecallback: function () {
  7089. $("iframe", _formdiv)[0].contentWindow.loginout();
  7090. }
  7091. }, { "style": { "height": "36px" } }).form; //创建窗体
  7092. _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); } }
  7093. break;
  7094. case "aiagent": //ai agent
  7095. _formdiv = new U.UF.UI.form(
  7096. "AI Agent",
  7097. $$("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" }), {
  7098. "id": "AIAgent",
  7099. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7100. "onresize": function () { }
  7101. }, {
  7102. closecallback: function () { }
  7103. }, { "style": { "height": "36px" } }).form; //创建窗体
  7104. _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); } }
  7105. break;
  7106. case "dataBoard": //数据看板
  7107. _formdiv = new U.UF.UI.form(
  7108. "数据看板",
  7109. $$("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 }), {
  7110. "id": "dataBoard",
  7111. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7112. "onresize": function () { }
  7113. }, {
  7114. closecallback: function () { }
  7115. }, { "style": { "height": "36px" } }).form; //创建窗体
  7116. _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); } }
  7117. break;
  7118. case "dataBoardSies": //数据融合
  7119. _formdiv = new U.UF.UI.form(
  7120. "数据融合",
  7121. $$("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 }), {
  7122. "id": "dataBoardSies",
  7123. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7124. "onresize": function () { }
  7125. }, {
  7126. closecallback: function () { }
  7127. }, { "style": { "height": "36px" } }).form; //创建窗体
  7128. _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); } }
  7129. break;
  7130. case "dataBoardNew": //数据看板
  7131. _formdiv = new U.UF.UI.form(
  7132. "综合看板",
  7133. $$("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 }), {
  7134. "id": "dataBoardNew",
  7135. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7136. "onresize": function () { }
  7137. }, {
  7138. closecallback: function () { }
  7139. }, { "style": { "height": "36px" } }).form; //创建窗体
  7140. _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); } }
  7141. break;
  7142. case "dataBoardTest": //数据看板
  7143. _formdiv = new U.UF.UI.form(
  7144. "评测看板",
  7145. $$("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 }), {
  7146. "id": "dataBoardTest",
  7147. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7148. "onresize": function () { }
  7149. }, {
  7150. closecallback: function () { }
  7151. }, { "style": { "height": "36px" } }).form; //创建窗体
  7152. _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); } }
  7153. break;
  7154. case "AIAnalyse": //AI共创
  7155. _formdiv = new U.UF.UI.form(
  7156. "AI分析",
  7157. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7158. "id": "AIAnalyse",
  7159. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7160. "onresize": function () { }
  7161. }, {
  7162. closecallback: function () { }
  7163. }, { "style": { "height": "36px" } }).form; //创建窗体
  7164. _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); } }
  7165. break;
  7166. case "studioCourse": //AI共创
  7167. _formdiv = new U.UF.UI.form(
  7168. "工作管理",
  7169. $$("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 }), {
  7170. "id": "studioCourse",
  7171. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7172. "onresize": function () { }
  7173. }, {
  7174. closecallback: function () { }
  7175. }, { "style": { "height": "36px" } }).form; //创建窗体
  7176. _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); } }
  7177. break;
  7178. case "studioIndex": //AI共创
  7179. _formdiv = new U.UF.UI.form(
  7180. "工作中心",
  7181. $$("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 }), {
  7182. "id": "studioIndex",
  7183. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7184. "onresize": function () { }
  7185. }, {
  7186. closecallback: function () { }
  7187. }, { "style": { "height": "36px" } }).form; //创建窗体
  7188. _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); } }
  7189. break;
  7190. case "source":
  7191. _formdiv = new U.UF.UI.form(
  7192. "教学资源",
  7193. $$("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 }), {
  7194. "id": "source",
  7195. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7196. "onresize": function () { }
  7197. }, {
  7198. closecallback: function () { }
  7199. }, { "style": { "height": "36px" } }).form; //创建窗体
  7200. _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); } }
  7201. break;
  7202. case "testTeacher":
  7203. _formdiv = new U.UF.UI.form(
  7204. "智能表单",
  7205. $$("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 }), {
  7206. "id": "testTeacher",
  7207. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7208. "onresize": function () { }
  7209. }, {
  7210. closecallback: function () { }
  7211. }, { "style": { "height": "36px" } }).form; //创建窗体
  7212. _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); } }
  7213. break;
  7214. case "testStudent":
  7215. _formdiv = new U.UF.UI.form(
  7216. "教师中心",
  7217. $$("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 }), {
  7218. "id": "testStudent",
  7219. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7220. "onresize": function () { }
  7221. }, {
  7222. closecallback: function () { }
  7223. }, { "style": { "height": "36px" } }).form; //创建窗体
  7224. _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); } }
  7225. break;
  7226. case "testTeacherSies":
  7227. _formdiv = new U.UF.UI.form(
  7228. "教师管理",
  7229. $$("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 }), {
  7230. "id": "testTeacherSies",
  7231. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7232. "onresize": function () { }
  7233. }, {
  7234. closecallback: function () { }
  7235. }, { "style": { "height": "36px" } }).form; //创建窗体
  7236. _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); } }
  7237. break;
  7238. case "testStudentSies":
  7239. _formdiv = new U.UF.UI.form(
  7240. "教师中心",
  7241. $$("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 }), {
  7242. "id": "testStudentSies",
  7243. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7244. "onresize": function () { }
  7245. }, {
  7246. closecallback: function () { }
  7247. }, { "style": { "height": "36px" } }).form; //创建窗体
  7248. _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); } }
  7249. break;
  7250. case "ytpbl": //消息通知
  7251. _formdiv = new U.UF.UI.form(
  7252. "案例征集",
  7253. $$("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 }), {
  7254. "id": "ytpbl",
  7255. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7256. "onresize": function () { }
  7257. }, {
  7258. closecallback: function () { }
  7259. }, { "style": { "height": "36px" } }).form; //创建窗体
  7260. _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); } }
  7261. // 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");
  7262. break;
  7263. case "aiCourseResource": //人工智能窗体
  7264. _formdiv = new U.UF.UI.form(
  7265. false,
  7266. $$("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 }), {
  7267. "id": "aiCourseResource",
  7268. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7269. "onresize": function () { },
  7270. "isdrag": false,
  7271. }, {
  7272. closecallback: function () { }
  7273. }, { "style": { "height": "36px" } }).form; //创建窗体
  7274. _taskbar = ''
  7275. break;
  7276. case "szdjgCocooroboX": //图形化编程
  7277. _formdiv = new U.UF.UI.form(
  7278. "图形化编程",
  7279. $$("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" }), {
  7280. "id": "szdjgCocooroboX",
  7281. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7282. "onresize": function () { }
  7283. }, {
  7284. closecallback: function () { }
  7285. }, { "style": { "height": "36px" } }).form; //创建窗体
  7286. _taskbar = ''
  7287. break;
  7288. case "szdjgPython": //python编程
  7289. _formdiv = new U.UF.UI.form(
  7290. "Python编程",
  7291. $$("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" }), {
  7292. "id": "szdjgPython",
  7293. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7294. "onresize": function () { }
  7295. }, {
  7296. closecallback: function () { }
  7297. }, { "style": { "height": "36px" } }).form; //创建窗体
  7298. _taskbar = ''
  7299. break;
  7300. case "Record":
  7301. _formdiv = new U.UF.UI.form(
  7302. "观察记录",
  7303. $$("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 }), {
  7304. "id": "Record",
  7305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7306. "onresize": function () { }
  7307. }, {
  7308. closecallback: function () { }
  7309. }, { "style": { "height": "36px" } }).form; //创建窗体
  7310. _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); } }
  7311. break;
  7312. case "aigptCourse":
  7313. _formdiv = new U.UF.UI.form(
  7314. "AI智能体",
  7315. $$("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' }), {
  7316. "id": "aigptCourse",
  7317. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7318. "onresize": function () { }
  7319. }, {
  7320. closecallback: function () { }
  7321. }, { "style": { "height": "36px" } }).form; //创建窗体
  7322. _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); } }
  7323. break;
  7324. case "classroomObservation":
  7325. _formdiv = new U.UF.UI.form(
  7326. "课堂观察",
  7327. $$("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 }), {
  7328. "id": "classroomObservation",
  7329. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7330. "onresize": function () { }
  7331. }, {
  7332. closecallback: function () { }
  7333. }, { "style": { "height": "36px" } }).form; //创建窗体
  7334. _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); } }
  7335. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7336. break;
  7337. case "pblCourse":
  7338. _formdiv = new U.UF.UI.form(
  7339. "学生PBL",
  7340. $$("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 }), {
  7341. "id": "pblCourse",
  7342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7343. "onresize": function () { }
  7344. }, {
  7345. closecallback: function () { }
  7346. }, { "style": { "height": "36px" } }).form; //创建窗体
  7347. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7348. break;
  7349. case "appStore":
  7350. U.MD.D.addOp('','cocoflowOpen','')
  7351. _formdiv = new U.UF.UI.form(
  7352. "CocoFlow",
  7353. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7354. "id": "appStore",
  7355. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7356. "onresize": function () { }
  7357. }, {
  7358. closecallback: function () { }
  7359. }, { "style": { "height": "36px" } }).form; //创建窗体
  7360. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7361. break;
  7362. case "sassPlatform":
  7363. _formdiv = new U.UF.UI.form(
  7364. "Sass通用后台管理",
  7365. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7366. "id": "sassPlatform",
  7367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7368. "onresize": function () { }
  7369. }, {
  7370. closecallback: function () { }
  7371. }, { "style": { "height": "36px" } }).form; //创建窗体
  7372. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7373. break;
  7374. case "EDU":
  7375. _formdiv = new U.UF.UI.form(
  7376. "EDU",
  7377. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7378. "id": "EDU",
  7379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7380. "onresize": function () { }
  7381. }, {
  7382. closecallback: function () { }
  7383. }, { "style": { "height": "36px" } }).form; //创建窗体
  7384. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7385. break;
  7386. case "knowledge":
  7387. _formdiv = new U.UF.UI.form(
  7388. "知识库",
  7389. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7390. "id": "knowledge",
  7391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7392. "onresize": function () { }
  7393. }, {
  7394. closecallback: function () { }
  7395. }, { "style": { "height": "36px" } }).form; //创建窗体
  7396. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7397. break;
  7398. case "userExamine":
  7399. _formdiv = new U.UF.UI.form(
  7400. "账号申请",
  7401. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  7402. "id": "userExamine",
  7403. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7404. "onresize": function () { }
  7405. }, {
  7406. closecallback: function () { }
  7407. }, { "style": { "height": "36px" } }).form; //创建窗体
  7408. break;
  7409. case "cocoflowDeskTop": //cocoflowDeskTop
  7410. _formdiv = new U.UF.UI.form(
  7411. false,
  7412. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7413. "id": "cocoflowDeskTop",
  7414. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7415. "onresize": function () { },
  7416. "isdrag": false,
  7417. }, {
  7418. closecallback: function () { }
  7419. }, { "style": { "height": "36px" } }).form; //创建窗体
  7420. _taskbar = ''
  7421. break;
  7422. }
  7423. //U.MD.D.I.openClick(str);
  7424. //如果有任务栏信息
  7425. if (_taskbar) {
  7426. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7427. }
  7428. if(iframeBool){
  7429. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7430. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7431. // console.log("iframe进入");
  7432. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7433. // };
  7434. setTimeout(() => {
  7435. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7436. }, 2000);
  7437. }
  7438. }
  7439. // U.MD.D.I.openClick = function(str){
  7440. // var click = '';
  7441. // switch(str){
  7442. // case 'friend':
  7443. // click = '我的好友';
  7444. // break;
  7445. // case 'domain':
  7446. // click = '域名管理';
  7447. // break;
  7448. // case 'disk':
  7449. // click = '我的云盘';
  7450. // break;
  7451. // case 'word':
  7452. // click = 'Word';
  7453. // break;
  7454. // case 'excel':
  7455. // click = 'Execl';
  7456. // break;
  7457. // case 'txt':
  7458. // click = '文本文件';
  7459. // break;
  7460. // case 'lookupFriend':
  7461. // click = '查找好友';
  7462. // break;
  7463. // case 'ftp':
  7464. // click = 'FTP';
  7465. // break;
  7466. // case 'group':
  7467. // click = '群组';
  7468. // break;
  7469. // case 'set':
  7470. // click = '我的设置';
  7471. // break;
  7472. // case 'systemSet':
  7473. // click = '系统设置';
  7474. // break;
  7475. // case 'boomYun':
  7476. // click = '互联办公';
  7477. // break;
  7478. // case 'xz':
  7479. // click = '云端下载';
  7480. // break;
  7481. // case 'client':
  7482. // click = '有思浏览器';
  7483. // break;
  7484. // case 'backEndProgramming':
  7485. // click = '在线后台编程';
  7486. // break;
  7487. // case 'frontEndProgramming':
  7488. // click = '在线前端编程';
  7489. // break;
  7490. // default: break;
  7491. // }
  7492. // if(U.MD.D.I.Ip && click){
  7493. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7494. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7495. // })
  7496. // }
  7497. // }
  7498. /**
  7499. *函数作用:ajax简易函数,使用post格式
  7500. *@param url {data} 后台地址
  7501. *@param data {data} 参数json
  7502. *@param fn {data} 回调函数
  7503. *
  7504. */
  7505. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7506. // var xhr = new XMLHttpRequest();
  7507. // xhr.open("GET",url,true);
  7508. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7509. // xhr.onreadystatechange = function(){
  7510. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7511. // fn.call(this,xhr.responseText);
  7512. // }
  7513. // };
  7514. // xhr.send();
  7515. // }
  7516. /*判断是否是内网IP*/
  7517. // U.MD.D.I.isInnerIPFn = function(str){
  7518. // var curPageUrl = str;
  7519. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7520. // curPageUrl =curPageUrl.replace(reg1,'');
  7521. // // console.log('curPageUrl-1 '+curPageUrl);
  7522. // var reg2 = /\:+/g;//替换冒号为一点
  7523. // curPageUrl =curPageUrl.replace(reg2,'.');
  7524. // // console.log('curPageUrl-2 '+curPageUrl);
  7525. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7526. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7527. // if(curPageUrl[2] != '16'){
  7528. // return ipAddress;
  7529. // }else{
  7530. // return false;
  7531. // }
  7532. // }
  7533. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7534. // //compatibility for firefox and chrome
  7535. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7536. // var pc = new myPeerConnection({
  7537. // iceServers: []
  7538. // }),
  7539. // noop = function() {},
  7540. // localIPs = {},
  7541. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7542. // key;
  7543. // function iterateIP(ip) {
  7544. // if (!localIPs[ip]) onNewIP(ip);
  7545. // localIPs[ip] = true;
  7546. // }
  7547. // //create a bogus data channel
  7548. // pc.createDataChannel("");
  7549. // // create offer and set local description
  7550. // pc.createOffer().then(function(sdp) {
  7551. // sdp.sdp.split('\n').forEach(function(line) {
  7552. // if (line.indexOf('candidate') < 0) return;
  7553. // line.match(ipRegex).forEach(iterateIP);
  7554. // });
  7555. // pc.setLocalDescription(sdp, noop, noop);
  7556. // }).catch(function(reason) {
  7557. // // An error occurred, so handle the failure to connect
  7558. // });
  7559. // //sten for candidate events
  7560. // pc.onicecandidate = function(ice) {
  7561. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7562. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7563. // };
  7564. // }
  7565. // U.MD.D.I.getUserIpBool = function(callback){
  7566. // U.MD.D.I.getUserIP(function(ip){
  7567. // alert("Got IP! :" + ip);
  7568. // });
  7569. //}
  7570. //#endregion
  7571. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7572. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7573. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7574. _userinfo = US.userInfo, //登录用户信息
  7575. _userid = US.userInfo.userid //登录用户id
  7576. let _iframe;
  7577. let _cid = cid,
  7578. _stage = stage,
  7579. _task = task,
  7580. _tool = tool;
  7581. var _jie = $$("div", {
  7582. "style": {
  7583. "position": "absolute",
  7584. "bottom": "50px",
  7585. "right": "50px",
  7586. "zIndex": "9999",
  7587. "backgroundColor": "#2268bc",
  7588. "color": "#fff",
  7589. "padding": "12px 20px",
  7590. "cursor": "pointer",
  7591. "borderRadius": "4px",
  7592. },
  7593. "innerHTML": "提交作业"
  7594. })
  7595. let aTool = ''
  7596. let _loading = document.createElement('div')
  7597. _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;"
  7598. // _loading.id = "";
  7599. let _lchild = document.createElement('div')
  7600. let _limg = document.createElement('img')
  7601. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7602. _limg.style = "width: 26px;margin-right: 10px;"
  7603. _lchild.appendChild(_limg)
  7604. let _lspan = document.createElement('span')
  7605. _lspan.innerHTML = "上传中..."
  7606. _lchild.appendChild(_lspan)
  7607. _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%);"
  7608. _loading.appendChild(_lchild)
  7609. var _box = $$('div', {
  7610. "style": {
  7611. "position": "relative",
  7612. "width": "100%",
  7613. "height": "100%",
  7614. },
  7615. })
  7616. _box.appendChild(_loading)
  7617. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7618. switch (str) {
  7619. case "whiteboard":
  7620. aTool = 1;
  7621. _iframe = $$("iframe", {
  7622. "frameborder": "no",
  7623. "border": "0",
  7624. "scrolling ": "no",
  7625. "style": {
  7626. "cssText": "border:0;width:100%;height:100%"
  7627. },
  7628. "src": "https://beta.iwb.cocorobo.cn/"
  7629. })
  7630. _box.appendChild(_iframe);
  7631. _box.appendChild(_jie);
  7632. _formdiv = new U.UF.UI.form(
  7633. "电子白板",
  7634. _box, {
  7635. "id": "whiteboard" + cid + stage + task + tool,
  7636. "style": {
  7637. "width": "90%",
  7638. "height": "90%",
  7639. "overflow": 'hidden'
  7640. },
  7641. "onresize": function () { }
  7642. }, {
  7643. closecallback: function () { }
  7644. }, {
  7645. "style": {
  7646. "height": "36px"
  7647. }
  7648. }).form; //创建窗体
  7649. _taskbar = {
  7650. "id": str + _formdiv.id,
  7651. "style": {
  7652. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7653. },
  7654. "name": "电子白板",
  7655. "forms": _formdiv,
  7656. "click": function () {
  7657. U.MD.D.I.openApplication(str, obj, info);
  7658. }
  7659. }
  7660. break;
  7661. case "mind":
  7662. aTool = 3;
  7663. _iframe = $$("iframe", {
  7664. "frameborder": "no",
  7665. "border": "0",
  7666. "scrolling ": "no",
  7667. "style": {
  7668. "cssText": "border:0;width:100%;height:100%"
  7669. },
  7670. "src": "/kityminder-editor/dist/index.html"
  7671. })
  7672. _box.appendChild(_iframe);
  7673. _box.appendChild(_jie);
  7674. _formdiv = new U.UF.UI.form(
  7675. "思维导图",
  7676. _box, { //"/jsmind/example/demo.html"
  7677. "id": "mind" + cid + stage + task + tool,
  7678. "style": {
  7679. "width": "90%",
  7680. "height": "90%",
  7681. "overflow": 'hidden'
  7682. },
  7683. "onresize": function () { }
  7684. }, {
  7685. closecallback: function () { }
  7686. }, {
  7687. "style": {
  7688. "height": "36px"
  7689. }
  7690. }).form; //创建窗体
  7691. _taskbar = {
  7692. "id": str + _formdiv.id,
  7693. "style": {
  7694. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7695. },
  7696. "name": "思维导图",
  7697. "forms": _formdiv,
  7698. "click": function () {
  7699. U.MD.D.I.openApplication(str, obj, info);
  7700. }
  7701. }
  7702. break;
  7703. case "MindMap":
  7704. aTool = 3;
  7705. _iframe = $$("iframe", {
  7706. "frameborder": "no",
  7707. "border": "0",
  7708. "scrolling ": "no",
  7709. "style": {
  7710. "cssText": "border:0;width:100%;height:100%"
  7711. },
  7712. "src": "//cloud.cocorobo.cn/mind/"
  7713. })
  7714. _box.appendChild(_iframe);
  7715. _box.appendChild(_jie);
  7716. _formdiv = new U.UF.UI.form(
  7717. "思维导图",
  7718. _box, { //"/jsmind/example/demo.html"
  7719. "id": "mind" + cid + stage + task + tool,
  7720. "style": {
  7721. "width": "90%",
  7722. "height": "90%",
  7723. "overflow": 'hidden'
  7724. },
  7725. "onresize": function () { }
  7726. }, {
  7727. closecallback: function () { }
  7728. }, {
  7729. "style": {
  7730. "height": "36px"
  7731. }
  7732. }).form; //创建窗体
  7733. _taskbar = {
  7734. "id": str + _formdiv.id,
  7735. "style": {
  7736. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7737. },
  7738. "name": "思维导图",
  7739. "forms": _formdiv,
  7740. "click": function () {
  7741. U.MD.D.I.openApplication(str, obj, info);
  7742. }
  7743. }
  7744. break;
  7745. case "doc":
  7746. aTool = 6;
  7747. _iframe = $$("iframe", {
  7748. "frameborder": "no",
  7749. "border": "0",
  7750. "scrolling ": "no",
  7751. "style": {
  7752. "cssText": "border:0;width:100%;height:100%"
  7753. },
  7754. "src": "/Office/Word/WordEditArea.htm"
  7755. })
  7756. _box.appendChild(_iframe);
  7757. _box.appendChild(_jie);
  7758. _formdiv = new U.UF.UI.form(
  7759. "协同文档",
  7760. _box, {
  7761. "id": "doc" + cid + stage + task + tool,
  7762. "style": {
  7763. "width": "90%",
  7764. "height": "90%",
  7765. "overflow": 'hidden'
  7766. },
  7767. "onresize": function () { }
  7768. }, {
  7769. closecallback: function () { }
  7770. }, {
  7771. "style": {
  7772. "height": "36px"
  7773. }
  7774. }).form; //创建窗体
  7775. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7776. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7777. })
  7778. _taskbar = {
  7779. "id": str + _formdiv.id,
  7780. "style": {
  7781. "backgroundImage": "url(/img/icon/doc.png)"
  7782. },
  7783. "name": "协同文档",
  7784. "forms": _formdiv,
  7785. "click": function () {
  7786. U.MD.D.I.openApplication(str, obj, info);
  7787. }
  7788. }
  7789. break;
  7790. case "mindNetwork": //好友打开
  7791. aTool = 7;
  7792. _iframe = $$("iframe", {
  7793. "webkitallowfullscreen": "",
  7794. "mozallowfullscreen": "",
  7795. "allowfullscreen": "",
  7796. "frameborder": "no",
  7797. "border": "0",
  7798. "scrolling ": "no",
  7799. "style": {
  7800. "cssText": "border:0; width:100%; height:100%;"
  7801. },
  7802. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7803. })
  7804. _box.appendChild(_iframe);
  7805. _box.appendChild(_jie);
  7806. _formdiv = new U.UF.UI.form(
  7807. "思维网格",
  7808. _box, {
  7809. "id": "mindNetwork" + cid + stage + task + tool,
  7810. "style": {
  7811. "width": "90%",
  7812. "height": "90%",
  7813. "overflow": 'hidden'
  7814. },
  7815. "onresize": function () { }
  7816. }, {
  7817. closecallback: function () { }
  7818. }, {
  7819. "style": {
  7820. "height": "36px"
  7821. }
  7822. }).form; //创建窗体
  7823. _taskbar = {
  7824. "id": str + _formdiv.id,
  7825. "style": {
  7826. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7827. },
  7828. "name": "思维网格",
  7829. "forms": _formdiv,
  7830. "click": function () {
  7831. U.MD.D.I.openApplication(str, obj, info);
  7832. }
  7833. }
  7834. break;
  7835. case "courseDesign":
  7836. _iframe = $$("iframe", {
  7837. "webkitallowfullscreen": "",
  7838. "mozallowfullscreen": "",
  7839. "allowfullscreen": "",
  7840. "frameborder": "no",
  7841. "border": "0",
  7842. "scrolling ": "no",
  7843. "style": {
  7844. "cssText": "border:0; width:100%; height:100%;"
  7845. },
  7846. "src": "/course-design-vue"
  7847. })
  7848. _box.appendChild(_iframe);
  7849. _box.appendChild(_jie);
  7850. _formdiv = new U.UF.UI.form(
  7851. "项目设计",
  7852. _box, {
  7853. "id": "courseDesign" + cid + stage + task + tool,
  7854. "style": {
  7855. "width": "90%",
  7856. "height": "90%",
  7857. "overflow": 'hidden'
  7858. },
  7859. "onresize": function () { }
  7860. }, {
  7861. closecallback: function () { }
  7862. }, {
  7863. "style": {
  7864. "height": "36px"
  7865. }
  7866. }).form; //创建窗体
  7867. _taskbar = {
  7868. "id": str + _formdiv.id,
  7869. "style": {
  7870. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7871. },
  7872. "name": "项目设计",
  7873. "forms": _formdiv,
  7874. "click": function () {
  7875. U.MD.D.I.openApplication(str, obj, info);
  7876. }
  7877. }
  7878. break;
  7879. }
  7880. const script1 = document.createElement("script");
  7881. script1.type = "text/javascript";
  7882. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7883. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7884. const script2 = document.createElement("script");
  7885. script2.type = "text/javascript";
  7886. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7887. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7888. const script3 = document.createElement("script");
  7889. script3.type = "text/javascript";
  7890. script3.charset = "UTF-8";
  7891. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7892. const script4 = document.createElement("script");
  7893. script4.type = "text/javascript";
  7894. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7895. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7896. if (_iframe) {
  7897. if (str == 'doc') {
  7898. _iframe = _formdiv.querySelector('iframe')
  7899. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7900. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7901. _iframe.contentWindow.document.body.appendChild(script1);
  7902. _iframe.contentWindow.document.body.appendChild(script2);
  7903. // _iframe.contentWindow.document.body.appendChild(script3);
  7904. _iframe.contentWindow.document.body.appendChild(script4);
  7905. })
  7906. if (onloadListener) {
  7907. _iframe.contentDocument.location.reload()
  7908. } else {
  7909. _iframe.contentDocument.location.reload()
  7910. }
  7911. } else if (str == 'courseDesign') {
  7912. U.UF.DL.iframeLoad(_iframe, function () {
  7913. // _iframe.contentWindow.U.MD.O.W.load();
  7914. // _iframe.contentWindow.document.body.appendChild(script1);
  7915. _iframe.contentWindow.document.body.appendChild(script2);
  7916. _iframe.contentWindow.document.body.appendChild(script4);
  7917. })
  7918. } else if (str == 'mind') {
  7919. _iframe = _formdiv.querySelector('iframe')
  7920. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7921. //
  7922. _iframe.contentWindow.document.body.appendChild(script1);
  7923. _iframe.contentWindow.document.body.appendChild(script2);
  7924. _iframe.contentWindow.document.body.appendChild(script4);
  7925. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7926. })
  7927. if (onloadListener) {
  7928. _iframe.contentDocument.location.reload()
  7929. } else {
  7930. _iframe.contentDocument.location.reload()
  7931. }
  7932. } else if (str == 'whiteboard') {
  7933. _iframe = _formdiv.querySelector('iframe')
  7934. let onloadListener = _iframe.onload = () => {
  7935. _iframe.contentWindow.document.body.appendChild(script1);
  7936. _iframe.contentWindow.document.body.appendChild(script2);
  7937. _iframe.contentWindow.document.body.appendChild(script4);
  7938. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7939. };
  7940. // if (onloadListener) {
  7941. // try {
  7942. // _iframe.src += "?cocorobo="+new Date().getTime()
  7943. // _iframe.contentWindow.document.location.reload()
  7944. // } catch (error) {
  7945. // }
  7946. // } else {
  7947. // _iframe.contentDocument.location.reload()
  7948. // }
  7949. } else {
  7950. _iframe.onload = () => {
  7951. _iframe.contentWindow.document.body.appendChild(script1);
  7952. _iframe.contentWindow.document.body.appendChild(script2);
  7953. // _iframe.contentWindow.document.body.appendChild(script3);
  7954. _iframe.contentWindow.document.body.appendChild(script4);
  7955. };
  7956. }
  7957. _jie.onclick = async () => {
  7958. let text = ''
  7959. if (aTool == 1) {
  7960. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7961. } else if (aTool == 6) {
  7962. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7963. } else if (aTool == 3) {
  7964. text = await U.MD.D.I.getEditorContent(_iframe);
  7965. }
  7966. _loading.style.display = 'flex'
  7967. console.log(_loading);
  7968. var _ajs = _iframe.contentWindow.document.createElement("script");
  7969. _ajs.type = "text/javascript";
  7970. _ajs.innerHTML =
  7971. // 'console.log(' + _loading + ');\n' +
  7972. 'var _js = document.createElement("script");\n' +
  7973. '_js.type="text/javascript";\n' +
  7974. '_js.charset="UTF-8";\n' +
  7975. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7976. "_js.onload = function(){\n" +
  7977. ' var a = document.getElementsByTagName("img")\n' +
  7978. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7979. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7980. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7981. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7982. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7983. "beforeUpload_shishi(file," +
  7984. "'" +
  7985. _userid +
  7986. "'" +
  7987. ", " +
  7988. "'" +
  7989. _cid +
  7990. "'" +
  7991. ", " +
  7992. "'" +
  7993. _stage +
  7994. "'" +
  7995. ", " +
  7996. "'" +
  7997. _task +
  7998. "'" +
  7999. ", " +
  8000. "'" +
  8001. _tool +
  8002. "'" +
  8003. ", " +
  8004. "'" +
  8005. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8006. "'" +
  8007. ", " +
  8008. "'" +
  8009. aTool +
  8010. "'" +
  8011. ", " +
  8012. "`" +
  8013. text +
  8014. "`" +
  8015. ")\n" +
  8016. " });\n" +
  8017. "}\n" +
  8018. "document.head.appendChild(_js);\n";
  8019. _iframe.contentWindow.document.head.appendChild(_ajs);
  8020. }
  8021. }
  8022. //U.MD.D.I.openClick(str);
  8023. //如果有任务栏信息
  8024. // if (_taskbar) {
  8025. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8026. // }
  8027. }
  8028. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8029. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8030. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8031. _userinfo = US.userInfo, //登录用户信息
  8032. _userid = US.userInfo.userid //登录用户id
  8033. let _iframe;
  8034. let _cid = cid,
  8035. _stage = stage,
  8036. _task = task,
  8037. _tool = tool;
  8038. var _jie = $$("div", {
  8039. "style": {
  8040. "position": "absolute",
  8041. "bottom": "50px",
  8042. "right": "50px",
  8043. "zIndex": "9999",
  8044. "backgroundColor": "#2268bc",
  8045. "color": "#fff",
  8046. "padding": "12px 20px",
  8047. "cursor": "pointer",
  8048. "borderRadius": "4px",
  8049. },
  8050. "innerHTML": "提交作业"
  8051. })
  8052. let aTool = ''
  8053. let _loading = document.createElement('div')
  8054. _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;"
  8055. // _loading.id = "";
  8056. let _lchild = document.createElement('div')
  8057. let _limg = document.createElement('img')
  8058. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8059. _limg.style = "width: 26px;margin-right: 10px;"
  8060. _lchild.appendChild(_limg)
  8061. let _lspan = document.createElement('span')
  8062. _lspan.innerHTML = "上传中..."
  8063. _lchild.appendChild(_lspan)
  8064. _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%);"
  8065. _loading.appendChild(_lchild)
  8066. let _box = $$('div', {
  8067. "style": {
  8068. "position": "relative",
  8069. "width": "100%",
  8070. "height": "100%",
  8071. },
  8072. })
  8073. _box.appendChild(_loading)
  8074. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8075. switch (str) {
  8076. case "whiteboard":
  8077. aTool = 1;
  8078. _iframe = $$("iframe", {
  8079. "frameborder": "no",
  8080. "border": "0",
  8081. "scrolling ": "no",
  8082. "style": {
  8083. "cssText": "border:0;width:100%;height:100%"
  8084. },
  8085. "src": "https://beta.iwb.cocorobo.cn/"
  8086. })
  8087. _box.appendChild(_iframe);
  8088. _box.appendChild(_jie);
  8089. _formdiv = new U.UF.UI.form(
  8090. "电子白板",
  8091. _box, {
  8092. "id": "whiteboard" + cid + stage + task + tool,
  8093. "style": {
  8094. "width": "90%",
  8095. "height": "90%",
  8096. "overflow": 'hidden'
  8097. },
  8098. "onresize": function () { }
  8099. }, {
  8100. closecallback: function () { }
  8101. }, {
  8102. "style": {
  8103. "height": "36px"
  8104. }
  8105. }).form; //创建窗体
  8106. _taskbar = {
  8107. "id": str + _formdiv.id,
  8108. "style": {
  8109. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8110. },
  8111. "name": "电子白板",
  8112. "forms": _formdiv,
  8113. "click": function () {
  8114. U.MD.D.I.openApplication(str, obj, info);
  8115. }
  8116. }
  8117. break;
  8118. case "mind":
  8119. aTool = 3;
  8120. _iframe = $$("iframe", {
  8121. "frameborder": "no",
  8122. "border": "0",
  8123. "scrolling ": "no",
  8124. "style": {
  8125. "cssText": "border:0;width:100%;height:100%"
  8126. },
  8127. "src": "/kityminder-editor/dist/index.html"
  8128. })
  8129. _box.appendChild(_iframe);
  8130. _box.appendChild(_jie);
  8131. _formdiv = new U.UF.UI.form(
  8132. "思维导图",
  8133. _box, { //"/jsmind/example/demo.html"
  8134. "id": "mind" + cid + stage + task + tool,
  8135. "style": {
  8136. "width": "90%",
  8137. "height": "90%",
  8138. "overflow": 'hidden'
  8139. },
  8140. "onresize": function () { }
  8141. }, {
  8142. closecallback: function () { }
  8143. }, {
  8144. "style": {
  8145. "height": "36px"
  8146. }
  8147. }).form; //创建窗体
  8148. _taskbar = {
  8149. "id": str + _formdiv.id,
  8150. "style": {
  8151. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8152. },
  8153. "name": "思维导图",
  8154. "forms": _formdiv,
  8155. "click": function () {
  8156. U.MD.D.I.openApplication(str, obj, info);
  8157. }
  8158. }
  8159. break;
  8160. case "MindMap":
  8161. aTool = 3;
  8162. _iframe = $$("iframe", {
  8163. "frameborder": "no",
  8164. "border": "0",
  8165. "scrolling ": "no",
  8166. "style": {
  8167. "cssText": "border:0;width:100%;height:100%"
  8168. },
  8169. "src": "//cloud.cocorobo.cn/mind/"
  8170. })
  8171. _box.appendChild(_iframe);
  8172. _box.appendChild(_jie);
  8173. _formdiv = new U.UF.UI.form(
  8174. "思维导图",
  8175. _box, { //"/jsmind/example/demo.html"
  8176. "id": "mind" + cid + stage + task + tool,
  8177. "style": {
  8178. "width": "90%",
  8179. "height": "90%",
  8180. "overflow": 'hidden'
  8181. },
  8182. "onresize": function () { }
  8183. }, {
  8184. closecallback: function () { }
  8185. }, {
  8186. "style": {
  8187. "height": "36px"
  8188. }
  8189. }).form; //创建窗体
  8190. _taskbar = {
  8191. "id": str + _formdiv.id,
  8192. "style": {
  8193. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8194. },
  8195. "name": "思维导图",
  8196. "forms": _formdiv,
  8197. "click": function () {
  8198. U.MD.D.I.openApplication(str, obj, info);
  8199. }
  8200. }
  8201. break;
  8202. case "doc":
  8203. aTool = 6;
  8204. _iframe = $$("iframe", {
  8205. "frameborder": "no",
  8206. "border": "0",
  8207. "scrolling ": "no",
  8208. "style": {
  8209. "cssText": "border:0;width:100%;height:100%"
  8210. },
  8211. "src": "/Office/Word/WordEditArea.htm"
  8212. })
  8213. _box.appendChild(_iframe);
  8214. _box.appendChild(_jie);
  8215. _formdiv = new U.UF.UI.form(
  8216. "协同文档",
  8217. _box, {
  8218. "id": "doc" + cid + stage + task + tool,
  8219. "style": {
  8220. "width": "90%",
  8221. "height": "90%",
  8222. "overflow": 'hidden'
  8223. },
  8224. "onresize": function () { }
  8225. }, {
  8226. closecallback: function () { }
  8227. }, {
  8228. "style": {
  8229. "height": "36px"
  8230. }
  8231. }).form; //创建窗体
  8232. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8233. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8234. })
  8235. _taskbar = {
  8236. "id": str + _formdiv.id,
  8237. "style": {
  8238. "backgroundImage": "url(/img/icon/doc.png)"
  8239. },
  8240. "name": "协同文档",
  8241. "forms": _formdiv,
  8242. "click": function () {
  8243. U.MD.D.I.openApplication(str, obj, info);
  8244. }
  8245. }
  8246. break;
  8247. case "mindNetwork": //好友打开
  8248. aTool = 7;
  8249. _iframe = $$("iframe", {
  8250. "webkitallowfullscreen": "",
  8251. "mozallowfullscreen": "",
  8252. "allowfullscreen": "",
  8253. "frameborder": "no",
  8254. "border": "0",
  8255. "scrolling ": "no",
  8256. "style": {
  8257. "cssText": "border:0; width:100%; height:100%;"
  8258. },
  8259. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8260. })
  8261. _box.appendChild(_iframe);
  8262. _box.appendChild(_jie);
  8263. _formdiv = new U.UF.UI.form(
  8264. "思维网格",
  8265. _box, {
  8266. "id": "mindNetwork" + cid + stage + task + tool,
  8267. "style": {
  8268. "width": "90%",
  8269. "height": "90%",
  8270. "overflow": 'hidden'
  8271. },
  8272. "onresize": function () { }
  8273. }, {
  8274. closecallback: function () { }
  8275. }, {
  8276. "style": {
  8277. "height": "36px"
  8278. }
  8279. }).form; //创建窗体
  8280. _taskbar = {
  8281. "id": str + _formdiv.id,
  8282. "style": {
  8283. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8284. },
  8285. "name": "思维网格",
  8286. "forms": _formdiv,
  8287. "click": function () {
  8288. U.MD.D.I.openApplication(str, obj, info);
  8289. }
  8290. }
  8291. break;
  8292. case "courseDesign":
  8293. _iframe = $$("iframe", {
  8294. "webkitallowfullscreen": "",
  8295. "mozallowfullscreen": "",
  8296. "allowfullscreen": "",
  8297. "frameborder": "no",
  8298. "border": "0",
  8299. "scrolling ": "no",
  8300. "style": {
  8301. "cssText": "border:0; width:100%; height:100%;"
  8302. },
  8303. "src": "/course-design-vue"
  8304. })
  8305. _box.appendChild(_iframe);
  8306. _box.appendChild(_jie);
  8307. _formdiv = new U.UF.UI.form(
  8308. "项目设计",
  8309. _box, {
  8310. "id": "courseDesign" + cid + stage + task + tool,
  8311. "style": {
  8312. "width": "90%",
  8313. "height": "90%",
  8314. "overflow": 'hidden'
  8315. },
  8316. "onresize": function () { }
  8317. }, {
  8318. closecallback: function () { }
  8319. }, {
  8320. "style": {
  8321. "height": "36px"
  8322. }
  8323. }).form; //创建窗体
  8324. _taskbar = {
  8325. "id": str + _formdiv.id,
  8326. "style": {
  8327. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8328. },
  8329. "name": "项目设计",
  8330. "forms": _formdiv,
  8331. "click": function () {
  8332. U.MD.D.I.openApplication(str, obj, info);
  8333. }
  8334. }
  8335. break;
  8336. }
  8337. const script1 = document.createElement("script");
  8338. script1.type = "text/javascript";
  8339. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8340. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8341. const script2 = document.createElement("script");
  8342. script2.type = "text/javascript";
  8343. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8344. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8345. const script3 = document.createElement("script");
  8346. script3.type = "text/javascript";
  8347. script3.charset = "UTF-8";
  8348. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8349. const script4 = document.createElement("script");
  8350. script4.type = "text/javascript";
  8351. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8352. script4.src = window.origin + "/js/Common/jietu2E.js";
  8353. if (_iframe) {
  8354. if (str == 'doc') {
  8355. _iframe = _formdiv.querySelector('iframe')
  8356. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8357. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8358. _iframe.contentWindow.document.body.appendChild(script1);
  8359. _iframe.contentWindow.document.body.appendChild(script2);
  8360. // _iframe.contentWindow.document.body.appendChild(script3);
  8361. _iframe.contentWindow.document.body.appendChild(script4);
  8362. })
  8363. if (onloadListener) {
  8364. _iframe.contentDocument.location.reload()
  8365. } else {
  8366. _iframe.contentDocument.location.reload()
  8367. }
  8368. } else if (str == 'courseDesign') {
  8369. U.UF.DL.iframeLoad(_iframe, function () {
  8370. // _iframe.contentWindow.U.MD.O.W.load();
  8371. // _iframe.contentWindow.document.body.appendChild(script1);
  8372. _iframe.contentWindow.document.body.appendChild(script2);
  8373. _iframe.contentWindow.document.body.appendChild(script4);
  8374. })
  8375. } else if (str == 'mind') {
  8376. _iframe = _formdiv.querySelector('iframe')
  8377. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8378. //
  8379. _iframe.contentWindow.document.body.appendChild(script1);
  8380. _iframe.contentWindow.document.body.appendChild(script2);
  8381. _iframe.contentWindow.document.body.appendChild(script4);
  8382. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8383. })
  8384. if (onloadListener) {
  8385. _iframe.contentDocument.location.reload()
  8386. } else {
  8387. _iframe.contentDocument.location.reload()
  8388. }
  8389. } else if (str == 'whiteboard') {
  8390. _iframe = _formdiv.querySelector('iframe')
  8391. let onloadListener = _iframe.onload = () => {
  8392. _iframe.contentWindow.document.body.appendChild(script1);
  8393. _iframe.contentWindow.document.body.appendChild(script2);
  8394. _iframe.contentWindow.document.body.appendChild(script4);
  8395. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8396. };
  8397. // if (onloadListener) {
  8398. // try {
  8399. // _iframe.src += "?cocorobo="+new Date().getTime()
  8400. // _iframe.contentWindow.document.location.reload()
  8401. // } catch (error) {
  8402. // }
  8403. // } else {
  8404. // _iframe.contentDocument.location.reload()
  8405. // }
  8406. } else {
  8407. _iframe.onload = () => {
  8408. _iframe.contentWindow.document.body.appendChild(script1);
  8409. _iframe.contentWindow.document.body.appendChild(script2);
  8410. // _iframe.contentWindow.document.body.appendChild(script3);
  8411. _iframe.contentWindow.document.body.appendChild(script4);
  8412. };
  8413. }
  8414. _jie.onclick = async () => {
  8415. let text = ''
  8416. if (aTool == 1) {
  8417. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8418. } else if (aTool == 6) {
  8419. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8420. } else if (aTool == 3) {
  8421. text = await U.MD.D.I.getEditorContent(_iframe);
  8422. }
  8423. _loading.style.display = 'flex'
  8424. console.log(_loading);
  8425. var _ajs = _iframe.contentWindow.document.createElement("script");
  8426. _ajs.type = "text/javascript";
  8427. _ajs.innerHTML =
  8428. // 'console.log(' + _loading + ');\n' +
  8429. 'var _js = document.createElement("script");\n' +
  8430. '_js.type="text/javascript";\n' +
  8431. '_js.charset="UTF-8";\n' +
  8432. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8433. "_js.onload = function(){\n" +
  8434. ' var a = document.getElementsByTagName("img")\n' +
  8435. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8436. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8437. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8438. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8439. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8440. "beforeUpload_shishi(file," +
  8441. "'" +
  8442. _userid +
  8443. "'" +
  8444. ", " +
  8445. "'" +
  8446. _cid +
  8447. "'" +
  8448. ", " +
  8449. "'" +
  8450. _stage +
  8451. "'" +
  8452. ", " +
  8453. "'" +
  8454. _task +
  8455. "'" +
  8456. ", " +
  8457. "'" +
  8458. _tool +
  8459. "'" +
  8460. ", " +
  8461. "'" +
  8462. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8463. "'" +
  8464. ", " +
  8465. "'" +
  8466. aTool +
  8467. "'" +
  8468. ", " +
  8469. "`" +
  8470. text +
  8471. "`" +
  8472. ")\n" +
  8473. " });\n" +
  8474. "}\n" +
  8475. "document.head.appendChild(_js);\n";
  8476. _iframe.contentWindow.document.head.appendChild(_ajs);
  8477. }
  8478. }
  8479. //U.MD.D.I.openClick(str);
  8480. //如果有任务栏信息
  8481. // if (_taskbar) {
  8482. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8483. // }
  8484. }
  8485. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8486. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8487. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8488. _userid = student.userid, //登录用户id
  8489. _username = student.student //用户名字
  8490. let _iframe;
  8491. let _cid = cid,
  8492. _stage = stage,
  8493. _task = task,
  8494. _tool = tool;
  8495. var _jie = $$("div", {
  8496. "style": {
  8497. "position": "absolute",
  8498. "bottom": "50px",
  8499. "right": "50px",
  8500. "zIndex": "9999",
  8501. "backgroundColor": "#2268bc",
  8502. "color": "#fff",
  8503. "padding": "12px 20px",
  8504. "cursor": "pointer",
  8505. "borderRadius": "4px",
  8506. },
  8507. "innerHTML": "提交作业"
  8508. })
  8509. let aTool = ''
  8510. let _loading = document.createElement('div')
  8511. _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;"
  8512. // _loading.id = "";
  8513. let _lchild = document.createElement('div')
  8514. let _limg = document.createElement('img')
  8515. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8516. _limg.style = "width: 26px;margin-right: 10px;"
  8517. _lchild.appendChild(_limg)
  8518. let _lspan = document.createElement('span')
  8519. _lspan.innerHTML = "上传中..."
  8520. _lchild.appendChild(_lspan)
  8521. _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%);"
  8522. _loading.appendChild(_lchild)
  8523. var _box = $$('div', {
  8524. "style": {
  8525. "position": "relative",
  8526. "width": "100%",
  8527. "height": "100%",
  8528. },
  8529. })
  8530. _box.appendChild(_loading)
  8531. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8532. switch (str) {
  8533. case "whiteboard":
  8534. aTool = 1;
  8535. _iframe = $$("iframe", {
  8536. "frameborder": "no",
  8537. "border": "0",
  8538. "scrolling ": "no",
  8539. "style": {
  8540. "cssText": "border:0;width:100%;height:100%"
  8541. },
  8542. "src": "https://beta.iwb.cocorobo.cn/"
  8543. })
  8544. _box.appendChild(_iframe);
  8545. _box.appendChild(_jie);
  8546. _formdiv = new U.UF.UI.form(
  8547. "电子白板-" + _username,
  8548. _box, {
  8549. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8550. "style": {
  8551. "width": "90%",
  8552. "height": "90%",
  8553. "overflow": 'hidden'
  8554. },
  8555. "onresize": function () { }
  8556. }, {
  8557. closecallback: function () { }
  8558. }, {
  8559. "style": {
  8560. "height": "36px"
  8561. }
  8562. }).form; //创建窗体
  8563. _taskbar = {
  8564. "id": str + _formdiv.id,
  8565. "style": {
  8566. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8567. },
  8568. "name": "电子白板",
  8569. "forms": _formdiv,
  8570. "click": function () {
  8571. U.MD.D.I.openApplication(str, obj, info);
  8572. }
  8573. }
  8574. break;
  8575. case "mind":
  8576. aTool = 3;
  8577. _iframe = $$("iframe", {
  8578. "frameborder": "no",
  8579. "border": "0",
  8580. "scrolling ": "no",
  8581. "style": {
  8582. "cssText": "border:0;width:100%;height:100%"
  8583. },
  8584. "src": "/kityminder-editor/dist/index.html"
  8585. })
  8586. _box.appendChild(_iframe);
  8587. _box.appendChild(_jie);
  8588. _formdiv = new U.UF.UI.form(
  8589. "思维导图-" + _username,
  8590. _box, { //"/jsmind/example/demo.html"
  8591. "id": "mind" + cid + stage + task + tool + _userid,
  8592. "style": {
  8593. "width": "90%",
  8594. "height": "90%",
  8595. "overflow": 'hidden'
  8596. },
  8597. "onresize": function () { }
  8598. }, {
  8599. closecallback: function () { }
  8600. }, {
  8601. "style": {
  8602. "height": "36px"
  8603. }
  8604. }).form; //创建窗体
  8605. _taskbar = {
  8606. "id": str + _formdiv.id,
  8607. "style": {
  8608. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8609. },
  8610. "name": "思维导图",
  8611. "forms": _formdiv,
  8612. "click": function () {
  8613. U.MD.D.I.openApplication(str, obj, info);
  8614. }
  8615. }
  8616. break;
  8617. case "MindMap":
  8618. aTool = 3;
  8619. _iframe = $$("iframe", {
  8620. "frameborder": "no",
  8621. "border": "0",
  8622. "scrolling ": "no",
  8623. "style": {
  8624. "cssText": "border:0;width:100%;height:100%"
  8625. },
  8626. "src": "//cloud.cocorobo.cn/mind/"
  8627. })
  8628. _box.appendChild(_iframe);
  8629. _box.appendChild(_jie);
  8630. _formdiv = new U.UF.UI.form(
  8631. "思维导图-" + _username,
  8632. _box, { //"/jsmind/example/demo.html"
  8633. "id": "mind" + cid + stage + task + tool + _userid,
  8634. "style": {
  8635. "width": "90%",
  8636. "height": "90%",
  8637. "overflow": 'hidden'
  8638. },
  8639. "onresize": function () { }
  8640. }, {
  8641. closecallback: function () { }
  8642. }, {
  8643. "style": {
  8644. "height": "36px"
  8645. }
  8646. }).form; //创建窗体
  8647. _taskbar = {
  8648. "id": str + _formdiv.id,
  8649. "style": {
  8650. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8651. },
  8652. "name": "思维导图",
  8653. "forms": _formdiv,
  8654. "click": function () {
  8655. U.MD.D.I.openApplication(str, obj, info);
  8656. }
  8657. }
  8658. break;
  8659. case "doc":
  8660. aTool = 6;
  8661. _iframe = $$("iframe", {
  8662. "frameborder": "no",
  8663. "border": "0",
  8664. "scrolling ": "no",
  8665. "style": {
  8666. "cssText": "border:0;width:100%;height:100%"
  8667. },
  8668. "src": "/Office/Word/WordEditArea.htm"
  8669. })
  8670. _box.appendChild(_iframe);
  8671. _box.appendChild(_jie);
  8672. _formdiv = new U.UF.UI.form(
  8673. "协同文档-" + _username,
  8674. _box, {
  8675. "id": "doc" + cid + stage + task + tool + _userid,
  8676. "style": {
  8677. "width": "90%",
  8678. "height": "90%",
  8679. "overflow": 'hidden'
  8680. },
  8681. "onresize": function () { }
  8682. }, {
  8683. closecallback: function () { }
  8684. }, {
  8685. "style": {
  8686. "height": "36px"
  8687. }
  8688. }).form; //创建窗体
  8689. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8690. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8691. })
  8692. _taskbar = {
  8693. "id": str + _formdiv.id,
  8694. "style": {
  8695. "backgroundImage": "url(/img/icon/doc.png)"
  8696. },
  8697. "name": "协同文档",
  8698. "forms": _formdiv,
  8699. "click": function () {
  8700. U.MD.D.I.openApplication(str, obj, info);
  8701. }
  8702. }
  8703. break;
  8704. case "mindNetwork": //好友打开
  8705. aTool = 7;
  8706. _iframe = $$("iframe", {
  8707. "webkitallowfullscreen": "",
  8708. "mozallowfullscreen": "",
  8709. "allowfullscreen": "",
  8710. "frameborder": "no",
  8711. "border": "0",
  8712. "scrolling ": "no",
  8713. "style": {
  8714. "cssText": "border:0; width:100%; height:100%;"
  8715. },
  8716. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8717. })
  8718. _box.appendChild(_iframe);
  8719. _box.appendChild(_jie);
  8720. _formdiv = new U.UF.UI.form(
  8721. "思维网格-" + _username,
  8722. _box, {
  8723. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8724. "style": {
  8725. "width": "90%",
  8726. "height": "90%",
  8727. "overflow": 'hidden'
  8728. },
  8729. "onresize": function () { }
  8730. }, {
  8731. closecallback: function () { }
  8732. }, {
  8733. "style": {
  8734. "height": "36px"
  8735. }
  8736. }).form; //创建窗体
  8737. _taskbar = {
  8738. "id": str + _formdiv.id,
  8739. "style": {
  8740. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8741. },
  8742. "name": "思维网格",
  8743. "forms": _formdiv,
  8744. "click": function () {
  8745. U.MD.D.I.openApplication(str, obj, info);
  8746. }
  8747. }
  8748. break;
  8749. case "courseDesign":
  8750. _iframe = $$("iframe", {
  8751. "webkitallowfullscreen": "",
  8752. "mozallowfullscreen": "",
  8753. "allowfullscreen": "",
  8754. "frameborder": "no",
  8755. "border": "0",
  8756. "scrolling ": "no",
  8757. "style": {
  8758. "cssText": "border:0; width:100%; height:100%;"
  8759. },
  8760. "src": "/course-design-vue"
  8761. })
  8762. _box.appendChild(_iframe);
  8763. _box.appendChild(_jie);
  8764. _formdiv = new U.UF.UI.form(
  8765. "项目设计-" + _username,
  8766. _box, {
  8767. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8768. "style": {
  8769. "width": "90%",
  8770. "height": "90%",
  8771. "overflow": 'hidden'
  8772. },
  8773. "onresize": function () { }
  8774. }, {
  8775. closecallback: function () { }
  8776. }, {
  8777. "style": {
  8778. "height": "36px"
  8779. }
  8780. }).form; //创建窗体
  8781. _taskbar = {
  8782. "id": str + _formdiv.id,
  8783. "style": {
  8784. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8785. },
  8786. "name": "项目设计",
  8787. "forms": _formdiv,
  8788. "click": function () {
  8789. U.MD.D.I.openApplication(str, obj, info);
  8790. }
  8791. }
  8792. break;
  8793. }
  8794. const script1 = document.createElement("script");
  8795. script1.type = "text/javascript";
  8796. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8797. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8798. const script2 = document.createElement("script");
  8799. script2.type = "text/javascript";
  8800. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8801. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8802. const script3 = document.createElement("script");
  8803. script3.type = "text/javascript";
  8804. script3.charset = "UTF-8";
  8805. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8806. const script4 = document.createElement("script");
  8807. script4.type = "text/javascript";
  8808. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8809. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8810. if (_iframe) {
  8811. if (str == 'doc') {
  8812. _iframe = _formdiv.querySelector('iframe')
  8813. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8814. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8815. _iframe.contentWindow.document.body.appendChild(script1);
  8816. _iframe.contentWindow.document.body.appendChild(script2);
  8817. // _iframe.contentWindow.document.body.appendChild(script3);
  8818. _iframe.contentWindow.document.body.appendChild(script4);
  8819. })
  8820. if (onloadListener) {
  8821. _iframe.contentDocument.location.reload()
  8822. } else {
  8823. _iframe.contentDocument.location.reload()
  8824. }
  8825. } else if (str == 'courseDesign') {
  8826. U.UF.DL.iframeLoad(_iframe, function () {
  8827. // _iframe.contentWindow.U.MD.O.W.load();
  8828. // _iframe.contentWindow.document.body.appendChild(script1);
  8829. _iframe.contentWindow.document.body.appendChild(script2);
  8830. _iframe.contentWindow.document.body.appendChild(script4);
  8831. })
  8832. } else if (str == 'mind') {
  8833. _iframe = _formdiv.querySelector('iframe')
  8834. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8835. //
  8836. _iframe.contentWindow.document.body.appendChild(script1);
  8837. _iframe.contentWindow.document.body.appendChild(script2);
  8838. _iframe.contentWindow.document.body.appendChild(script4);
  8839. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8840. })
  8841. if (onloadListener) {
  8842. _iframe.contentDocument.location.reload()
  8843. } else {
  8844. _iframe.contentDocument.location.reload()
  8845. }
  8846. } else if (str == 'whiteboard') {
  8847. _iframe = _formdiv.querySelector('iframe')
  8848. let onloadListener = _iframe.onload = () => {
  8849. _iframe.contentWindow.document.body.appendChild(script1);
  8850. _iframe.contentWindow.document.body.appendChild(script2);
  8851. _iframe.contentWindow.document.body.appendChild(script4);
  8852. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8853. };
  8854. // if (onloadListener) {
  8855. // try {
  8856. // _iframe.src += "?cocorobo="+new Date().getTime()
  8857. // _iframe.contentWindow.document.location.reload()
  8858. // } catch (error) {
  8859. // }
  8860. // } else {
  8861. // _iframe.contentDocument.location.reload()
  8862. // }
  8863. } else {
  8864. _iframe.onload = () => {
  8865. _iframe.contentWindow.document.body.appendChild(script1);
  8866. _iframe.contentWindow.document.body.appendChild(script2);
  8867. // _iframe.contentWindow.document.body.appendChild(script3);
  8868. _iframe.contentWindow.document.body.appendChild(script4);
  8869. };
  8870. }
  8871. _jie.onclick = async () => {
  8872. let text = ''
  8873. if (aTool == 1) {
  8874. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8875. } else if (aTool == 6) {
  8876. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8877. } else if (aTool == 3) {
  8878. text = await U.MD.D.I.getEditorContent(_iframe);
  8879. }
  8880. _loading.style.display = 'flex'
  8881. console.log(_loading);
  8882. var _ajs = _iframe.contentWindow.document.createElement("script");
  8883. _ajs.type = "text/javascript";
  8884. _ajs.innerHTML =
  8885. // 'console.log(' + _loading + ');\n' +
  8886. 'var _js = document.createElement("script");\n' +
  8887. '_js.type="text/javascript";\n' +
  8888. '_js.charset="UTF-8";\n' +
  8889. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8890. "_js.onload = function(){\n" +
  8891. ' var a = document.getElementsByTagName("img")\n' +
  8892. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8893. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8894. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8895. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8896. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8897. "beforeUpload_shishi(file," +
  8898. "'" +
  8899. _userid +
  8900. "'" +
  8901. ", " +
  8902. "'" +
  8903. _cid +
  8904. "'" +
  8905. ", " +
  8906. "'" +
  8907. _stage +
  8908. "'" +
  8909. ", " +
  8910. "'" +
  8911. _task +
  8912. "'" +
  8913. ", " +
  8914. "'" +
  8915. _tool +
  8916. "'" +
  8917. ", " +
  8918. "'" +
  8919. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8920. "'" +
  8921. ", " +
  8922. "'" +
  8923. aTool +
  8924. "'" +
  8925. ", " +
  8926. "`" +
  8927. text +
  8928. "`" +
  8929. ")\n" +
  8930. " });\n" +
  8931. "}\n" +
  8932. "document.head.appendChild(_js);\n";
  8933. _iframe.contentWindow.document.head.appendChild(_ajs);
  8934. }
  8935. }
  8936. }
  8937. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8938. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8939. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8940. _userid = student.userid, //登录用户id
  8941. _username = student.student //用户名字
  8942. let _iframe;
  8943. let _cid = cid,
  8944. _stage = stage,
  8945. _task = task,
  8946. _tool = tool;
  8947. var _jie = $$("div", {
  8948. "style": {
  8949. "position": "absolute",
  8950. "bottom": "50px",
  8951. "right": "50px",
  8952. "zIndex": "9999",
  8953. "backgroundColor": "#2268bc",
  8954. "color": "#fff",
  8955. "padding": "12px 20px",
  8956. "cursor": "pointer",
  8957. "borderRadius": "4px",
  8958. },
  8959. "innerHTML": "提交作业"
  8960. })
  8961. let aTool = ''
  8962. let _loading = document.createElement('div')
  8963. _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;"
  8964. // _loading.id = "";
  8965. let _lchild = document.createElement('div')
  8966. let _limg = document.createElement('img')
  8967. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8968. _limg.style = "width: 26px;margin-right: 10px;"
  8969. _lchild.appendChild(_limg)
  8970. let _lspan = document.createElement('span')
  8971. _lspan.innerHTML = "上传中..."
  8972. _lchild.appendChild(_lspan)
  8973. _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%);"
  8974. _loading.appendChild(_lchild)
  8975. var _box = $$('div', {
  8976. "style": {
  8977. "position": "relative",
  8978. "width": "100%",
  8979. "height": "100%",
  8980. },
  8981. })
  8982. _box.appendChild(_loading)
  8983. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8984. switch (str) {
  8985. case "whiteboard":
  8986. aTool = 1;
  8987. _iframe = $$("iframe", {
  8988. "frameborder": "no",
  8989. "border": "0",
  8990. "scrolling ": "no",
  8991. "style": {
  8992. "cssText": "border:0;width:100%;height:100%"
  8993. },
  8994. "src": "https://beta.iwb.cocorobo.cn/"
  8995. })
  8996. _box.appendChild(_iframe);
  8997. _box.appendChild(_jie);
  8998. _formdiv = new U.UF.UI.form(
  8999. "电子白板-" + _username,
  9000. _box, {
  9001. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9002. "style": {
  9003. "width": "90%",
  9004. "height": "90%",
  9005. "overflow": 'hidden'
  9006. },
  9007. "onresize": function () { }
  9008. }, {
  9009. closecallback: function () { }
  9010. }, {
  9011. "style": {
  9012. "height": "36px"
  9013. }
  9014. }).form; //创建窗体
  9015. _taskbar = {
  9016. "id": str + _formdiv.id,
  9017. "style": {
  9018. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9019. },
  9020. "name": "电子白板",
  9021. "forms": _formdiv,
  9022. "click": function () {
  9023. U.MD.D.I.openApplication(str, obj, info);
  9024. }
  9025. }
  9026. break;
  9027. case "mind":
  9028. aTool = 3;
  9029. _iframe = $$("iframe", {
  9030. "frameborder": "no",
  9031. "border": "0",
  9032. "scrolling ": "no",
  9033. "style": {
  9034. "cssText": "border:0;width:100%;height:100%"
  9035. },
  9036. "src": "/kityminder-editor/dist/index.html"
  9037. })
  9038. _box.appendChild(_iframe);
  9039. _box.appendChild(_jie);
  9040. _formdiv = new U.UF.UI.form(
  9041. "思维导图-" + _username,
  9042. _box, { //"/jsmind/example/demo.html"
  9043. "id": "mind" + cid + stage + task + tool + _userid,
  9044. "style": {
  9045. "width": "90%",
  9046. "height": "90%",
  9047. "overflow": 'hidden'
  9048. },
  9049. "onresize": function () { }
  9050. }, {
  9051. closecallback: function () { }
  9052. }, {
  9053. "style": {
  9054. "height": "36px"
  9055. }
  9056. }).form; //创建窗体
  9057. _taskbar = {
  9058. "id": str + _formdiv.id,
  9059. "style": {
  9060. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9061. },
  9062. "name": "思维导图",
  9063. "forms": _formdiv,
  9064. "click": function () {
  9065. U.MD.D.I.openApplication(str, obj, info);
  9066. }
  9067. }
  9068. break;
  9069. case "MindMap":
  9070. aTool = 3;
  9071. _iframe = $$("iframe", {
  9072. "frameborder": "no",
  9073. "border": "0",
  9074. "scrolling ": "no",
  9075. "style": {
  9076. "cssText": "border:0;width:100%;height:100%"
  9077. },
  9078. "src": "//cloud.cocorobo.cn/mind/"
  9079. })
  9080. _box.appendChild(_iframe);
  9081. _box.appendChild(_jie);
  9082. _formdiv = new U.UF.UI.form(
  9083. "思维导图-" + _username,
  9084. _box, { //"/jsmind/example/demo.html"
  9085. "id": "mind" + cid + stage + task + tool + _userid,
  9086. "style": {
  9087. "width": "90%",
  9088. "height": "90%",
  9089. "overflow": 'hidden'
  9090. },
  9091. "onresize": function () { }
  9092. }, {
  9093. closecallback: function () { }
  9094. }, {
  9095. "style": {
  9096. "height": "36px"
  9097. }
  9098. }).form; //创建窗体
  9099. _taskbar = {
  9100. "id": str + _formdiv.id,
  9101. "style": {
  9102. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9103. },
  9104. "name": "思维导图",
  9105. "forms": _formdiv,
  9106. "click": function () {
  9107. U.MD.D.I.openApplication(str, obj, info);
  9108. }
  9109. }
  9110. break;
  9111. case "doc":
  9112. aTool = 6;
  9113. _iframe = $$("iframe", {
  9114. "frameborder": "no",
  9115. "border": "0",
  9116. "scrolling ": "no",
  9117. "style": {
  9118. "cssText": "border:0;width:100%;height:100%"
  9119. },
  9120. "src": "/Office/Word/WordEditArea.htm"
  9121. })
  9122. _box.appendChild(_iframe);
  9123. _box.appendChild(_jie);
  9124. _formdiv = new U.UF.UI.form(
  9125. "协同文档-" + _username,
  9126. _box, {
  9127. "id": "doc" + cid + stage + task + tool + _userid,
  9128. "style": {
  9129. "width": "90%",
  9130. "height": "90%",
  9131. "overflow": 'hidden'
  9132. },
  9133. "onresize": function () { }
  9134. }, {
  9135. closecallback: function () { }
  9136. }, {
  9137. "style": {
  9138. "height": "36px"
  9139. }
  9140. }).form; //创建窗体
  9141. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9142. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9143. })
  9144. _taskbar = {
  9145. "id": str + _formdiv.id,
  9146. "style": {
  9147. "backgroundImage": "url(/img/icon/doc.png)"
  9148. },
  9149. "name": "协同文档",
  9150. "forms": _formdiv,
  9151. "click": function () {
  9152. U.MD.D.I.openApplication(str, obj, info);
  9153. }
  9154. }
  9155. break;
  9156. case "mindNetwork": //好友打开
  9157. aTool = 7;
  9158. _iframe = $$("iframe", {
  9159. "webkitallowfullscreen": "",
  9160. "mozallowfullscreen": "",
  9161. "allowfullscreen": "",
  9162. "frameborder": "no",
  9163. "border": "0",
  9164. "scrolling ": "no",
  9165. "style": {
  9166. "cssText": "border:0; width:100%; height:100%;"
  9167. },
  9168. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9169. })
  9170. _box.appendChild(_iframe);
  9171. _box.appendChild(_jie);
  9172. _formdiv = new U.UF.UI.form(
  9173. "思维网格-" + _username,
  9174. _box, {
  9175. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9176. "style": {
  9177. "width": "90%",
  9178. "height": "90%",
  9179. "overflow": 'hidden'
  9180. },
  9181. "onresize": function () { }
  9182. }, {
  9183. closecallback: function () { }
  9184. }, {
  9185. "style": {
  9186. "height": "36px"
  9187. }
  9188. }).form; //创建窗体
  9189. _taskbar = {
  9190. "id": str + _formdiv.id,
  9191. "style": {
  9192. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9193. },
  9194. "name": "思维网格",
  9195. "forms": _formdiv,
  9196. "click": function () {
  9197. U.MD.D.I.openApplication(str, obj, info);
  9198. }
  9199. }
  9200. break;
  9201. case "courseDesign":
  9202. _iframe = $$("iframe", {
  9203. "webkitallowfullscreen": "",
  9204. "mozallowfullscreen": "",
  9205. "allowfullscreen": "",
  9206. "frameborder": "no",
  9207. "border": "0",
  9208. "scrolling ": "no",
  9209. "style": {
  9210. "cssText": "border:0; width:100%; height:100%;"
  9211. },
  9212. "src": "/course-design-vue"
  9213. })
  9214. _box.appendChild(_iframe);
  9215. _box.appendChild(_jie);
  9216. _formdiv = new U.UF.UI.form(
  9217. "项目设计-" + _username,
  9218. _box, {
  9219. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9220. "style": {
  9221. "width": "90%",
  9222. "height": "90%",
  9223. "overflow": 'hidden'
  9224. },
  9225. "onresize": function () { }
  9226. }, {
  9227. closecallback: function () { }
  9228. }, {
  9229. "style": {
  9230. "height": "36px"
  9231. }
  9232. }).form; //创建窗体
  9233. _taskbar = {
  9234. "id": str + _formdiv.id,
  9235. "style": {
  9236. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9237. },
  9238. "name": "项目设计",
  9239. "forms": _formdiv,
  9240. "click": function () {
  9241. U.MD.D.I.openApplication(str, obj, info);
  9242. }
  9243. }
  9244. break;
  9245. }
  9246. const script1 = document.createElement("script");
  9247. script1.type = "text/javascript";
  9248. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9249. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9250. const script2 = document.createElement("script");
  9251. script2.type = "text/javascript";
  9252. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9253. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9254. const script3 = document.createElement("script");
  9255. script3.type = "text/javascript";
  9256. script3.charset = "UTF-8";
  9257. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9258. const script4 = document.createElement("script");
  9259. script4.type = "text/javascript";
  9260. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9261. script4.src = window.origin + "/js/Common/jietu2E.js";
  9262. if (_iframe) {
  9263. if (str == 'doc') {
  9264. _iframe = _formdiv.querySelector('iframe')
  9265. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9266. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9267. _iframe.contentWindow.document.body.appendChild(script1);
  9268. _iframe.contentWindow.document.body.appendChild(script2);
  9269. // _iframe.contentWindow.document.body.appendChild(script3);
  9270. _iframe.contentWindow.document.body.appendChild(script4);
  9271. })
  9272. if (onloadListener) {
  9273. _iframe.contentDocument.location.reload()
  9274. } else {
  9275. _iframe.contentDocument.location.reload()
  9276. }
  9277. } else if (str == 'courseDesign') {
  9278. U.UF.DL.iframeLoad(_iframe, function () {
  9279. // _iframe.contentWindow.U.MD.O.W.load();
  9280. // _iframe.contentWindow.document.body.appendChild(script1);
  9281. _iframe.contentWindow.document.body.appendChild(script2);
  9282. _iframe.contentWindow.document.body.appendChild(script4);
  9283. })
  9284. } else if (str == 'mind') {
  9285. _iframe = _formdiv.querySelector('iframe')
  9286. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9287. //
  9288. _iframe.contentWindow.document.body.appendChild(script1);
  9289. _iframe.contentWindow.document.body.appendChild(script2);
  9290. _iframe.contentWindow.document.body.appendChild(script4);
  9291. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9292. })
  9293. if (onloadListener) {
  9294. _iframe.contentDocument.location.reload()
  9295. } else {
  9296. _iframe.contentDocument.location.reload()
  9297. }
  9298. } else if (str == 'whiteboard') {
  9299. _iframe = _formdiv.querySelector('iframe')
  9300. let onloadListener = _iframe.onload = () => {
  9301. _iframe.contentWindow.document.body.appendChild(script1);
  9302. _iframe.contentWindow.document.body.appendChild(script2);
  9303. _iframe.contentWindow.document.body.appendChild(script4);
  9304. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9305. };
  9306. // if (onloadListener) {
  9307. // try {
  9308. // _iframe.src += "?cocorobo="+new Date().getTime()
  9309. // _iframe.contentWindow.document.location.reload()
  9310. // } catch (error) {
  9311. // }
  9312. // } else {
  9313. // _iframe.contentDocument.location.reload()
  9314. // }
  9315. } else {
  9316. _iframe.onload = () => {
  9317. _iframe.contentWindow.document.body.appendChild(script1);
  9318. _iframe.contentWindow.document.body.appendChild(script2);
  9319. // _iframe.contentWindow.document.body.appendChild(script3);
  9320. _iframe.contentWindow.document.body.appendChild(script4);
  9321. };
  9322. }
  9323. _jie.onclick = async () => {
  9324. let text = ''
  9325. if (aTool == 1) {
  9326. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9327. } else if (aTool == 6) {
  9328. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9329. } else if (aTool == 3) {
  9330. text = await U.MD.D.I.getEditorContent(_iframe);
  9331. }
  9332. _loading.style.display = 'flex'
  9333. console.log(_loading);
  9334. var _ajs = _iframe.contentWindow.document.createElement("script");
  9335. _ajs.type = "text/javascript";
  9336. _ajs.innerHTML =
  9337. // 'console.log(' + _loading + ');\n' +
  9338. 'var _js = document.createElement("script");\n' +
  9339. '_js.type="text/javascript";\n' +
  9340. '_js.charset="UTF-8";\n' +
  9341. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9342. "_js.onload = function(){\n" +
  9343. ' var a = document.getElementsByTagName("img")\n' +
  9344. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9345. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9346. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9347. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9348. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9349. "beforeUpload_shishi(file," +
  9350. "'" +
  9351. _userid +
  9352. "'" +
  9353. ", " +
  9354. "'" +
  9355. _cid +
  9356. "'" +
  9357. ", " +
  9358. "'" +
  9359. _stage +
  9360. "'" +
  9361. ", " +
  9362. "'" +
  9363. _task +
  9364. "'" +
  9365. ", " +
  9366. "'" +
  9367. _tool +
  9368. "'" +
  9369. ", " +
  9370. "'" +
  9371. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9372. "'" +
  9373. ", " +
  9374. "'" +
  9375. aTool +
  9376. "'" +
  9377. ", " +
  9378. "`" +
  9379. text +
  9380. "`" +
  9381. ")\n" +
  9382. " });\n" +
  9383. "}\n" +
  9384. "document.head.appendChild(_js);\n";
  9385. _iframe.contentWindow.document.head.appendChild(_ajs);
  9386. }
  9387. }
  9388. }
  9389. U.MD.D.I.getEditorContent = function (iframe) {
  9390. return new Promise((resolve, reject) => {
  9391. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9392. console.log(content);
  9393. resolve(content)
  9394. });
  9395. });
  9396. }
  9397. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9398. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9399. // if (res.value[0].length > 0) {
  9400. // // resolve(res.value[0][0].text);
  9401. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9402. // $(fileInput).val('');
  9403. // });
  9404. // }
  9405. // }, [], { "type": "GET", "withCredentials": true });
  9406. var xmlhttp;
  9407. var Mac, Sn, DeviceId
  9408. if (window.XMLHttpRequest) {
  9409. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9410. xmlhttp = new XMLHttpRequest();
  9411. } else {
  9412. // IE6, IE5 浏览器执行代码
  9413. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9414. }
  9415. xmlhttp.onreadystatechange = function () {
  9416. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9417. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9418. // resolve(res.value[0][0].text);
  9419. if (type == '2') {
  9420. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9421. } else if (type == '3') {
  9422. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9423. }
  9424. } else {
  9425. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9426. }
  9427. }
  9428. }
  9429. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9430. xmlhttp.send();
  9431. }
  9432. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9433. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9434. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9435. _userinfo = US.userInfo, //登录用户信息
  9436. _userid = US.userInfo.userid //登录用户id
  9437. let _iframe;
  9438. let _cid = cid,
  9439. _stage = stage,
  9440. _task = task,
  9441. _tool = tool;
  9442. var _jie = $$("div", {
  9443. "style": {
  9444. "position": "absolute",
  9445. "bottom": "50px",
  9446. "right": "50px",
  9447. "zIndex": "9999",
  9448. "backgroundColor": "#2268bc",
  9449. "color": "#fff",
  9450. "padding": "12px 20px",
  9451. "cursor": "pointer",
  9452. "borderRadius": "4px",
  9453. },
  9454. "innerHTML": "确认并提交"
  9455. })
  9456. let aTool = ''
  9457. let _loading = document.createElement('div')
  9458. _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;"
  9459. // _loading.id = "";
  9460. let _lchild = document.createElement('div')
  9461. let _limg = document.createElement('img')
  9462. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9463. _limg.style = "width: 26px;margin-right: 10px;"
  9464. _lchild.appendChild(_limg)
  9465. let _lspan = document.createElement('span')
  9466. _lspan.innerHTML = "上传中..."
  9467. _lchild.appendChild(_lspan)
  9468. _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%);"
  9469. _loading.appendChild(_lchild)
  9470. var _box = $$('div', {
  9471. "style": {
  9472. "position": "relative",
  9473. "width": "100%",
  9474. "height": "100%",
  9475. },
  9476. })
  9477. _box.appendChild(_loading)
  9478. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9479. switch (str) {
  9480. case "whiteboard":
  9481. aTool = 1;
  9482. _iframe = $$("iframe", {
  9483. "frameborder": "no",
  9484. "border": "0",
  9485. "scrolling ": "no",
  9486. "style": {
  9487. "cssText": "border:0;width:100%;height:100%"
  9488. },
  9489. "src": "https://beta.iwb.cocorobo.cn/"
  9490. })
  9491. _box.appendChild(_iframe);
  9492. _box.appendChild(_jie);
  9493. _formdiv = new U.UF.UI.form(
  9494. "电子白板",
  9495. _box, {
  9496. "id": "whiteboards" + cid + stage + task + tool,
  9497. "style": {
  9498. "width": "90%",
  9499. "height": "90%",
  9500. "overflow": 'hidden'
  9501. },
  9502. "onresize": function () { }
  9503. }, {
  9504. closecallback: function () { }
  9505. }, {
  9506. "style": {
  9507. "height": "36px"
  9508. }
  9509. }).form; //创建窗体
  9510. _taskbar = {
  9511. "id": str + _formdiv.id,
  9512. "style": {
  9513. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9514. },
  9515. "name": "电子白板",
  9516. "forms": _formdiv,
  9517. "click": function () {
  9518. U.MD.D.I.openApplication(str, obj, info);
  9519. }
  9520. }
  9521. break;
  9522. case "mind":
  9523. aTool = 3;
  9524. _iframe = $$("iframe", {
  9525. "frameborder": "no",
  9526. "border": "0",
  9527. "scrolling ": "no",
  9528. "style": {
  9529. "cssText": "border:0;width:100%;height:100%"
  9530. },
  9531. "src": "/kityminder-editor/dist/index.html"
  9532. });
  9533. _box.appendChild(_iframe);
  9534. _box.appendChild(_jie);
  9535. _formdiv = new U.UF.UI.form(
  9536. "思维导图",
  9537. _box, { //"/jsmind/example/demo.html"
  9538. "id": "minds" + cid + stage + task + tool,
  9539. "style": {
  9540. "width": "90%",
  9541. "height": "90%",
  9542. "overflow": 'hidden'
  9543. },
  9544. "onresize": function () { }
  9545. }, {
  9546. closecallback: function () { }
  9547. }, {
  9548. "style": {
  9549. "height": "36px"
  9550. }
  9551. }).form; //创建窗体
  9552. _taskbar = {
  9553. "id": str + _formdiv.id,
  9554. "style": {
  9555. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9556. },
  9557. "name": "思维导图",
  9558. "forms": _formdiv,
  9559. "click": function () {
  9560. U.MD.D.I.openApplication(str, obj, info);
  9561. }
  9562. }
  9563. break;
  9564. case "doc":
  9565. aTool = 6;
  9566. _iframe = $$("iframe", {
  9567. "frameborder": "no",
  9568. "border": "0",
  9569. "scrolling ": "no",
  9570. "style": {
  9571. "cssText": "border:0;width:100%;height:100%"
  9572. },
  9573. "src": "/Office/Word/WordEditArea.htm"
  9574. })
  9575. _box.appendChild(_iframe);
  9576. _box.appendChild(_jie);
  9577. _formdiv = new U.UF.UI.form(
  9578. "协同文档",
  9579. _box, {
  9580. "id": "docs" + cid + stage + task + tool,
  9581. "style": {
  9582. "width": "90%",
  9583. "height": "90%",
  9584. "overflow": 'hidden'
  9585. },
  9586. "onresize": function () { }
  9587. }, {
  9588. closecallback: function () { }
  9589. }, {
  9590. "style": {
  9591. "height": "36px"
  9592. }
  9593. }).form; //创建窗体
  9594. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9595. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9596. })
  9597. _taskbar = {
  9598. "id": str + _formdiv.id,
  9599. "style": {
  9600. "backgroundImage": "url(/img/icon/doc.png)"
  9601. },
  9602. "name": "协同文档",
  9603. "forms": _formdiv,
  9604. "click": function () {
  9605. U.MD.D.I.openApplication(str, obj, info);
  9606. }
  9607. }
  9608. break;
  9609. }
  9610. const script1 = document.createElement("script");
  9611. script1.type = "text/javascript";
  9612. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9613. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9614. const script2 = document.createElement("script");
  9615. script2.type = "text/javascript";
  9616. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9617. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9618. const script3 = document.createElement("script");
  9619. script3.type = "text/javascript";
  9620. script3.charset = "UTF-8";
  9621. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9622. const script4 = document.createElement("script");
  9623. script4.type = "text/javascript";
  9624. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9625. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9626. if (_iframe) {
  9627. if (str == 'doc') {
  9628. _iframe = _formdiv.querySelector('iframe')
  9629. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9630. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9631. _iframe.contentWindow.document.body.appendChild(script1);
  9632. _iframe.contentWindow.document.body.appendChild(script2);
  9633. // _iframe.contentWindow.document.body.appendChild(script3);
  9634. _iframe.contentWindow.document.body.appendChild(script4);
  9635. })
  9636. if (onloadListener) {
  9637. _iframe.contentDocument.location.reload()
  9638. } else {
  9639. _iframe.contentDocument.location.reload()
  9640. }
  9641. } else if (str == 'mind') {
  9642. _iframe = _formdiv.querySelector('iframe')
  9643. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9644. _iframe.contentWindow.document.body.appendChild(script1);
  9645. _iframe.contentWindow.document.body.appendChild(script2);
  9646. _iframe.contentWindow.document.body.appendChild(script4);
  9647. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9648. })
  9649. if (onloadListener) {
  9650. _iframe.contentDocument.location.reload()
  9651. } else {
  9652. _iframe.contentDocument.location.reload()
  9653. }
  9654. } else {
  9655. _iframe.onload = () => {
  9656. _iframe.contentWindow.document.body.appendChild(script1);
  9657. _iframe.contentWindow.document.body.appendChild(script2);
  9658. // _iframe.contentWindow.document.body.appendChild(script3);
  9659. _iframe.contentWindow.document.body.appendChild(script4);
  9660. };
  9661. }
  9662. _jie.onclick = async () => {
  9663. let text = ''
  9664. if (aTool == 6) {
  9665. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9666. } else if (aTool == 3) {
  9667. text = await U.MD.D.I.getEditorContent(_iframe);
  9668. }
  9669. _loading.style.display = 'flex'
  9670. console.log(_loading);
  9671. var _ajs = _iframe.contentWindow.document.createElement("script");
  9672. _ajs.type = "text/javascript";
  9673. _ajs.innerHTML =
  9674. // 'console.log(' + _loading + ');\n' +
  9675. 'var _js = document.createElement("script");\n' +
  9676. '_js.type="text/javascript";\n' +
  9677. '_js.charset="UTF-8";\n' +
  9678. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9679. "_js.onload = function(){\n" +
  9680. ' var a = document.getElementsByTagName("img")\n' +
  9681. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9682. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9683. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9684. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9685. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9686. "beforeUpload_shishi(file," +
  9687. "'" +
  9688. _userid +
  9689. "'" +
  9690. ", " +
  9691. "'" +
  9692. _cid +
  9693. "'" +
  9694. ", " +
  9695. "'" +
  9696. _stage +
  9697. "'" +
  9698. ", " +
  9699. "'" +
  9700. _task +
  9701. "'" +
  9702. ", " +
  9703. "'" +
  9704. _tool +
  9705. "'" +
  9706. ", " +
  9707. "'" +
  9708. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9709. "'" +
  9710. ", " +
  9711. "'" +
  9712. aTool +
  9713. "'" +
  9714. ", " +
  9715. "`" +
  9716. text +
  9717. "`" +
  9718. ")\n" +
  9719. " });\n" +
  9720. "}\n" +
  9721. "document.head.appendChild(_js);\n";
  9722. _iframe.contentWindow.document.head.appendChild(_ajs);
  9723. }
  9724. }
  9725. //U.MD.D.I.openClick(str);
  9726. //如果有任务栏信息
  9727. // if (_taskbar) {
  9728. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9729. // }
  9730. }
  9731. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9732. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9733. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9734. _userinfo = US.userInfo, //登录用户信息
  9735. _userid = US.userInfo.userid //登录用户id
  9736. let _iframe;
  9737. let _cid = cid,
  9738. _stage = stage,
  9739. _task = task,
  9740. _tool = tool;
  9741. var _jie = $$("div", {
  9742. "style": {
  9743. "position": "absolute",
  9744. "bottom": "50px",
  9745. "right": "50px",
  9746. "zIndex": "9999",
  9747. "backgroundColor": "#2268bc",
  9748. "color": "#fff",
  9749. "padding": "12px 20px",
  9750. "cursor": "pointer",
  9751. "borderRadius": "4px",
  9752. },
  9753. "innerHTML": "确认并提交"
  9754. })
  9755. let aTool = ''
  9756. let _loading = document.createElement('div')
  9757. _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;"
  9758. // _loading.id = "";
  9759. let _lchild = document.createElement('div')
  9760. let _limg = document.createElement('img')
  9761. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9762. _limg.style = "width: 26px;margin-right: 10px;"
  9763. _lchild.appendChild(_limg)
  9764. let _lspan = document.createElement('span')
  9765. _lspan.innerHTML = "上传中..."
  9766. _lchild.appendChild(_lspan)
  9767. _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%);"
  9768. _loading.appendChild(_lchild)
  9769. var _box = $$('div', {
  9770. "style": {
  9771. "position": "relative",
  9772. "width": "100%",
  9773. "height": "100%",
  9774. },
  9775. })
  9776. _box.appendChild(_loading)
  9777. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9778. switch (str) {
  9779. case "whiteboard":
  9780. aTool = 1;
  9781. _iframe = $$("iframe", {
  9782. "frameborder": "no",
  9783. "border": "0",
  9784. "scrolling ": "no",
  9785. "style": {
  9786. "cssText": "border:0;width:100%;height:100%"
  9787. },
  9788. "src": "https://beta.iwb.cocorobo.cn/"
  9789. })
  9790. _box.appendChild(_iframe);
  9791. _box.appendChild(_jie);
  9792. _formdiv = new U.UF.UI.form(
  9793. "电子白板",
  9794. _box, {
  9795. "id": "whiteboards" + cid + stage + task + tool,
  9796. "style": {
  9797. "width": "90%",
  9798. "height": "90%",
  9799. "overflow": 'hidden'
  9800. },
  9801. "onresize": function () { }
  9802. }, {
  9803. closecallback: function () { }
  9804. }, {
  9805. "style": {
  9806. "height": "36px"
  9807. }
  9808. }).form; //创建窗体
  9809. _taskbar = {
  9810. "id": str + _formdiv.id,
  9811. "style": {
  9812. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9813. },
  9814. "name": "电子白板",
  9815. "forms": _formdiv,
  9816. "click": function () {
  9817. U.MD.D.I.openApplication(str, obj, info);
  9818. }
  9819. }
  9820. break;
  9821. case "mind":
  9822. aTool = 3;
  9823. _iframe = $$("iframe", {
  9824. "frameborder": "no",
  9825. "border": "0",
  9826. "scrolling ": "no",
  9827. "style": {
  9828. "cssText": "border:0;width:100%;height:100%"
  9829. },
  9830. "src": "/kityminder-editor/dist/index.html"
  9831. });
  9832. _box.appendChild(_iframe);
  9833. _box.appendChild(_jie);
  9834. _formdiv = new U.UF.UI.form(
  9835. "思维导图",
  9836. _box, { //"/jsmind/example/demo.html"
  9837. "id": "minds" + cid + stage + task + tool,
  9838. "style": {
  9839. "width": "90%",
  9840. "height": "90%",
  9841. "overflow": 'hidden'
  9842. },
  9843. "onresize": function () { }
  9844. }, {
  9845. closecallback: function () { }
  9846. }, {
  9847. "style": {
  9848. "height": "36px"
  9849. }
  9850. }).form; //创建窗体
  9851. _taskbar = {
  9852. "id": str + _formdiv.id,
  9853. "style": {
  9854. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9855. },
  9856. "name": "思维导图",
  9857. "forms": _formdiv,
  9858. "click": function () {
  9859. U.MD.D.I.openApplication(str, obj, info);
  9860. }
  9861. }
  9862. break;
  9863. case "doc":
  9864. aTool = 6;
  9865. _iframe = $$("iframe", {
  9866. "frameborder": "no",
  9867. "border": "0",
  9868. "scrolling ": "no",
  9869. "style": {
  9870. "cssText": "border:0;width:100%;height:100%"
  9871. },
  9872. "src": "/Office/Word/WordEditArea.htm"
  9873. })
  9874. _box.appendChild(_iframe);
  9875. _box.appendChild(_jie);
  9876. _formdiv = new U.UF.UI.form(
  9877. "协同文档",
  9878. _box, {
  9879. "id": "docs" + cid + stage + task + tool,
  9880. "style": {
  9881. "width": "90%",
  9882. "height": "90%",
  9883. "overflow": 'hidden'
  9884. },
  9885. "onresize": function () { }
  9886. }, {
  9887. closecallback: function () { }
  9888. }, {
  9889. "style": {
  9890. "height": "36px"
  9891. }
  9892. }).form; //创建窗体
  9893. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9894. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9895. })
  9896. _taskbar = {
  9897. "id": str + _formdiv.id,
  9898. "style": {
  9899. "backgroundImage": "url(/img/icon/doc.png)"
  9900. },
  9901. "name": "协同文档",
  9902. "forms": _formdiv,
  9903. "click": function () {
  9904. U.MD.D.I.openApplication(str, obj, info);
  9905. }
  9906. }
  9907. break;
  9908. }
  9909. const script1 = document.createElement("script");
  9910. script1.type = "text/javascript";
  9911. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9912. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9913. const script2 = document.createElement("script");
  9914. script2.type = "text/javascript";
  9915. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9916. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9917. const script3 = document.createElement("script");
  9918. script3.type = "text/javascript";
  9919. script3.charset = "UTF-8";
  9920. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9921. const script4 = document.createElement("script");
  9922. script4.type = "text/javascript";
  9923. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9924. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9925. if (_iframe) {
  9926. if (str == 'doc') {
  9927. _iframe = _formdiv.querySelector('iframe')
  9928. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9929. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9930. _iframe.contentWindow.document.body.appendChild(script1);
  9931. _iframe.contentWindow.document.body.appendChild(script2);
  9932. // _iframe.contentWindow.document.body.appendChild(script3);
  9933. _iframe.contentWindow.document.body.appendChild(script4);
  9934. })
  9935. if (onloadListener) {
  9936. _iframe.contentDocument.location.reload()
  9937. } else {
  9938. _iframe.contentDocument.location.reload()
  9939. }
  9940. } else if (str == 'mind') {
  9941. _iframe = _formdiv.querySelector('iframe')
  9942. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9943. _iframe.contentWindow.document.body.appendChild(script1);
  9944. _iframe.contentWindow.document.body.appendChild(script2);
  9945. _iframe.contentWindow.document.body.appendChild(script4);
  9946. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9947. })
  9948. if (onloadListener) {
  9949. _iframe.contentDocument.location.reload()
  9950. } else {
  9951. _iframe.contentDocument.location.reload()
  9952. }
  9953. } else {
  9954. _iframe.onload = () => {
  9955. _iframe.contentWindow.document.body.appendChild(script1);
  9956. _iframe.contentWindow.document.body.appendChild(script2);
  9957. // _iframe.contentWindow.document.body.appendChild(script3);
  9958. _iframe.contentWindow.document.body.appendChild(script4);
  9959. };
  9960. }
  9961. _jie.onclick = async () => {
  9962. let text = ''
  9963. if (aTool == 6) {
  9964. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9965. } else if (aTool == 3) {
  9966. text = await U.MD.D.I.getEditorContent(_iframe);
  9967. }
  9968. _loading.style.display = 'flex'
  9969. console.log(_loading);
  9970. var _ajs = _iframe.contentWindow.document.createElement("script");
  9971. _ajs.type = "text/javascript";
  9972. _ajs.innerHTML =
  9973. // 'console.log(' + _loading + ');\n' +
  9974. 'var _js = document.createElement("script");\n' +
  9975. '_js.type="text/javascript";\n' +
  9976. '_js.charset="UTF-8";\n' +
  9977. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9978. "_js.onload = function(){\n" +
  9979. ' var a = document.getElementsByTagName("img")\n' +
  9980. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9981. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9982. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9983. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9984. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9985. "beforeUpload_shishi(file," +
  9986. "'" +
  9987. _userid +
  9988. "'" +
  9989. ", " +
  9990. "'" +
  9991. _cid +
  9992. "'" +
  9993. ", " +
  9994. "'" +
  9995. _stage +
  9996. "'" +
  9997. ", " +
  9998. "'" +
  9999. _task +
  10000. "'" +
  10001. ", " +
  10002. "'" +
  10003. _tool +
  10004. "'" +
  10005. ", " +
  10006. "'" +
  10007. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10008. "'" +
  10009. ", " +
  10010. "'" +
  10011. aTool +
  10012. "'" +
  10013. ", " +
  10014. "`" +
  10015. text +
  10016. "`" +
  10017. ")\n" +
  10018. " });\n" +
  10019. "}\n" +
  10020. "document.head.appendChild(_js);\n";
  10021. _iframe.contentWindow.document.head.appendChild(_ajs);
  10022. }
  10023. }
  10024. //U.MD.D.I.openClick(str);
  10025. //如果有任务栏信息
  10026. // if (_taskbar) {
  10027. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10028. // }
  10029. }
  10030. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10031. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10032. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10033. _userinfo = US.userInfo, //登录用户信息
  10034. _userid = US.userInfo.userid //登录用户id
  10035. let _iframe;
  10036. let _cid = cid,
  10037. _stage = stage,
  10038. _task = task,
  10039. _tool = tool;
  10040. var _jie = $$("div", {
  10041. "style": {
  10042. "position": "absolute",
  10043. "bottom": "50px",
  10044. "right": "50px",
  10045. "zIndex": "9999",
  10046. "backgroundColor": "#2268bc",
  10047. "color": "#fff",
  10048. "padding": "12px 20px",
  10049. "cursor": "pointer",
  10050. "borderRadius": "4px",
  10051. },
  10052. "innerHTML": "上传模板"
  10053. })
  10054. let aTool = ''
  10055. let _loading = document.createElement('div')
  10056. _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;"
  10057. // _loading.id = "";
  10058. let _lchild = document.createElement('div')
  10059. let _limg = document.createElement('img')
  10060. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10061. _limg.style = "width: 26px;margin-right: 10px;"
  10062. _lchild.appendChild(_limg)
  10063. let _lspan = document.createElement('span')
  10064. _lspan.innerHTML = "上传中..."
  10065. _lchild.appendChild(_lspan)
  10066. _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%);"
  10067. _loading.appendChild(_lchild)
  10068. var _box = $$('div', {
  10069. "style": {
  10070. "position": "relative",
  10071. "width": "100%",
  10072. "height": "100%",
  10073. },
  10074. })
  10075. _box.appendChild(_loading)
  10076. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10077. switch (str) {
  10078. case "whiteboard":
  10079. aTool = 1;
  10080. _iframe = $$("iframe", {
  10081. "frameborder": "no",
  10082. "border": "0",
  10083. "scrolling ": "no",
  10084. "style": {
  10085. "cssText": "border:0;width:100%;height:100%"
  10086. },
  10087. "src": "https://beta.iwb.cocorobo.cn/"
  10088. })
  10089. _box.appendChild(_iframe);
  10090. _box.appendChild(_jie);
  10091. _formdiv = new U.UF.UI.form(
  10092. "电子白板",
  10093. _box, {
  10094. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10095. "style": {
  10096. "width": "90%",
  10097. "height": "90%",
  10098. "overflow": 'hidden'
  10099. },
  10100. "onresize": function () { }
  10101. }, {
  10102. closecallback: function () { }
  10103. }, {
  10104. "style": {
  10105. "height": "36px"
  10106. }
  10107. }).form; //创建窗体
  10108. _taskbar = {
  10109. "id": str + _formdiv.id,
  10110. "style": {
  10111. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10112. },
  10113. "name": "电子白板",
  10114. "forms": _formdiv,
  10115. "click": function () {
  10116. U.MD.D.I.openApplication(str, obj, info);
  10117. }
  10118. }
  10119. break;
  10120. case "mind":
  10121. aTool = 3;
  10122. _iframe = $$("iframe", {
  10123. "frameborder": "no",
  10124. "border": "0",
  10125. "scrolling ": "no",
  10126. "style": {
  10127. "cssText": "border:0;width:100%;height:100%"
  10128. },
  10129. "src": "/kityminder-editor/dist/index.html"
  10130. });
  10131. _box.appendChild(_iframe);
  10132. _box.appendChild(_jie);
  10133. _formdiv = new U.UF.UI.form(
  10134. "思维导图",
  10135. _box, { //"/jsmind/example/demo.html"
  10136. "id": "minds_Yu" + cid + stage + task + tool,
  10137. "style": {
  10138. "width": "90%",
  10139. "height": "90%",
  10140. "overflow": 'hidden'
  10141. },
  10142. "onresize": function () { }
  10143. }, {
  10144. closecallback: function () { }
  10145. }, {
  10146. "style": {
  10147. "height": "36px"
  10148. }
  10149. }).form; //创建窗体
  10150. _taskbar = {
  10151. "id": str + _formdiv.id,
  10152. "style": {
  10153. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10154. },
  10155. "name": "思维导图",
  10156. "forms": _formdiv,
  10157. "click": function () {
  10158. U.MD.D.I.openApplication(str, obj, info);
  10159. }
  10160. }
  10161. break;
  10162. case "doc":
  10163. aTool = 6;
  10164. _iframe = $$("iframe", {
  10165. "frameborder": "no",
  10166. "border": "0",
  10167. "scrolling ": "no",
  10168. "style": {
  10169. "cssText": "border:0;width:100%;height:100%"
  10170. },
  10171. "src": "/Office/Word/WordEditArea.htm"
  10172. })
  10173. _box.appendChild(_iframe);
  10174. _box.appendChild(_jie);
  10175. _formdiv = new U.UF.UI.form(
  10176. "协同文档",
  10177. _box, {
  10178. "id": "docs_Yu" + cid + stage + task + tool,
  10179. "style": {
  10180. "width": "90%",
  10181. "height": "90%",
  10182. "overflow": 'hidden'
  10183. },
  10184. "onresize": function () { }
  10185. }, {
  10186. closecallback: function () { }
  10187. }, {
  10188. "style": {
  10189. "height": "36px"
  10190. }
  10191. }).form; //创建窗体
  10192. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10193. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10194. })
  10195. _taskbar = {
  10196. "id": str + _formdiv.id,
  10197. "style": {
  10198. "backgroundImage": "url(/img/icon/doc.png)"
  10199. },
  10200. "name": "协同文档",
  10201. "forms": _formdiv,
  10202. "click": function () {
  10203. U.MD.D.I.openApplication(str, obj, info);
  10204. }
  10205. }
  10206. break;
  10207. case "CocoPi":
  10208. aTool = 57;
  10209. _iframe = $$("iframe", {
  10210. "allowpaymentrequest": "allowpaymentrequest",
  10211. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10212. "webkitallowfullscreen": "",
  10213. "mozallowfullscreen": "",
  10214. "frameborder": "no",
  10215. "border": "0",
  10216. "scrolling ": "no",
  10217. "style": {
  10218. "cssText": "border:0;width:100%;height:100%"
  10219. },
  10220. "src": "https://pi.cocorobo.cn/"
  10221. })
  10222. _box.appendChild(_iframe);
  10223. _box.appendChild(_jie);
  10224. _formdiv = new U.UF.UI.form(
  10225. "CocoPi",
  10226. _box, {
  10227. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10228. "style": {
  10229. "width": "90%",
  10230. "height": "90%",
  10231. "overflow": 'hidden'
  10232. },
  10233. "onresize": function () { }
  10234. }, {
  10235. closecallback: function () { }
  10236. }, {
  10237. "style": {
  10238. "height": "36px"
  10239. }
  10240. }).form; //创建窗体
  10241. _taskbar = {
  10242. "id": str + _formdiv.id,
  10243. "style": {
  10244. "backgroundImage": "url(/img/icon/cocopi.png)"
  10245. },
  10246. "name": "CocoPi",
  10247. "forms": _formdiv,
  10248. "click": function () {
  10249. U.MD.D.I.openApplication(str, obj, info);
  10250. }
  10251. }
  10252. break;
  10253. }
  10254. if (_iframe) {
  10255. if (str == 'doc') {
  10256. _iframe = _formdiv.querySelector('iframe')
  10257. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10258. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10259. })
  10260. if (onloadListener) {
  10261. _iframe.contentDocument.location.reload()
  10262. } else {
  10263. _iframe.contentDocument.location.reload()
  10264. }
  10265. } else if (str == 'mind') {
  10266. _iframe = _formdiv.querySelector('iframe')
  10267. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10268. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10269. })
  10270. if (onloadListener) {
  10271. _iframe.contentDocument.location.reload()
  10272. } else {
  10273. _iframe.contentDocument.location.reload()
  10274. }
  10275. } else if (str == 'whiteboard') {
  10276. _iframe = _formdiv.querySelector('iframe')
  10277. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10278. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10279. })
  10280. // if (onloadListener) {
  10281. // try {
  10282. // _iframe.src += "?cocorobo="+new Date().getTime()
  10283. // _iframe.contentWindow.document.location.reload()
  10284. // } catch (error) {
  10285. // }
  10286. // } else {
  10287. // _iframe.contentDocument.location.reload()
  10288. // }
  10289. } else if (str == 'CocoPi') {
  10290. _iframe = _formdiv.querySelector('iframe')
  10291. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10292. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10293. })
  10294. if (onloadListener) {
  10295. _iframe.contentDocument.location.reload()
  10296. } else {
  10297. _iframe.contentDocument.location.reload()
  10298. }
  10299. } else {
  10300. _iframe.onload = () => { };
  10301. }
  10302. _jie.onclick = async () => {
  10303. let text = ''
  10304. let type = '2'
  10305. if (aTool == 1) {
  10306. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10307. type = '3'
  10308. } else if (aTool == 6) {
  10309. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10310. type = '1'
  10311. } else if (aTool == 3) {
  10312. text = await U.MD.D.I.getEditorContent(_iframe);
  10313. type = '2'
  10314. } else if (aTool == 57) {
  10315. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10316. type = '4'
  10317. }
  10318. _loading.style.display = 'flex'
  10319. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10320. }
  10321. }
  10322. //U.MD.D.I.openClick(str);
  10323. //如果有任务栏信息
  10324. // if (_taskbar) {
  10325. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10326. // }
  10327. }
  10328. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10329. var xmlhttp;
  10330. var Mac, Sn, DeviceId
  10331. if (window.XMLHttpRequest) {
  10332. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10333. xmlhttp = new XMLHttpRequest();
  10334. } else {
  10335. // IE6, IE5 浏览器执行代码
  10336. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10337. }
  10338. xmlhttp.onreadystatechange = function () {
  10339. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10340. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10341. // resolve(res.value[0][0].text);
  10342. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10343. }
  10344. }
  10345. }
  10346. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10347. xmlhttp.send();
  10348. }
  10349. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10350. var xmlhttp;
  10351. var Mac, Sn, DeviceId
  10352. if (window.XMLHttpRequest) {
  10353. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10354. xmlhttp = new XMLHttpRequest();
  10355. } else {
  10356. // IE6, IE5 浏览器执行代码
  10357. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10358. }
  10359. xmlhttp.onreadystatechange = function () {
  10360. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10361. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10362. // resolve(res.value[0][0].text);
  10363. if (type == '2') {
  10364. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10365. } else if (type == '3') {
  10366. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10367. } else if (type == '4') {
  10368. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10369. }
  10370. } else {
  10371. if (type == '2') {
  10372. iframe.contentWindow.editor.minder.importData('json', '')
  10373. } else if (type == '3') {
  10374. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10375. } else if (type == '4') {
  10376. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10377. }
  10378. }
  10379. }
  10380. }
  10381. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10382. xmlhttp.send();
  10383. }
  10384. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10385. var xmlhttp;
  10386. var Mac, Sn, DeviceId
  10387. if (window.XMLHttpRequest) {
  10388. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10389. xmlhttp = new XMLHttpRequest();
  10390. } else {
  10391. // IE6, IE5 浏览器执行代码
  10392. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10393. }
  10394. xmlhttp.onreadystatechange = function () {
  10395. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10396. if (xmlhttp.response) {
  10397. // resolve(res.value[0][0].text);
  10398. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10399. // $(fileInput).val('');
  10400. // });
  10401. span.innerHTML = '上传成功'
  10402. setTimeout(() => {
  10403. loading.style.display = 'none'
  10404. }, 1000);
  10405. }
  10406. }
  10407. }
  10408. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10409. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10410. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10411. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10412. // 设置请求头,表示请求体的编码格式
  10413. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10414. // 设置请求体,使用url-encoded格式的数据
  10415. }
  10416. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10417. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10418. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10419. _userinfo = US.userInfo, //登录用户信息
  10420. _userid = US.userInfo.userid //登录用户id
  10421. let _iframe;
  10422. let _cid = cid,
  10423. _stage = stage,
  10424. _task = task,
  10425. _tool = tool;
  10426. var _jie = $$("div", {
  10427. "style": {
  10428. "position": "absolute",
  10429. "bottom": "50px",
  10430. "right": "50px",
  10431. "zIndex": "9999",
  10432. "backgroundColor": "#2268bc",
  10433. "color": "#fff",
  10434. "padding": "12px 20px",
  10435. "cursor": "pointer",
  10436. "borderRadius": "4px",
  10437. },
  10438. "innerHTML": "提交作业"
  10439. })
  10440. let aTool = ''
  10441. let _loading = document.createElement('div')
  10442. _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;"
  10443. // _loading.id = "";
  10444. let _lchild = document.createElement('div')
  10445. let _limg = document.createElement('img')
  10446. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10447. _limg.style = "width: 26px;margin-right: 10px;"
  10448. _lchild.appendChild(_limg)
  10449. let _lspan = document.createElement('span')
  10450. _lspan.innerHTML = "上传中..."
  10451. _lchild.appendChild(_lspan)
  10452. _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%);"
  10453. _loading.appendChild(_lchild)
  10454. var _box = $$('div', {
  10455. "style": {
  10456. "position": "relative",
  10457. "width": "100%",
  10458. "height": "100%",
  10459. },
  10460. })
  10461. _box.appendChild(_loading)
  10462. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10463. switch (str) {
  10464. case "CocoPi":
  10465. aTool = 57;
  10466. _iframe = $$("iframe", {
  10467. "allowpaymentrequest": "allowpaymentrequest",
  10468. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10469. "webkitallowfullscreen": "",
  10470. "mozallowfullscreen": "",
  10471. "frameborder": "no",
  10472. "border": "0",
  10473. "scrolling ": "no",
  10474. "style": {
  10475. "cssText": "border:0;width:100%;height:100%"
  10476. },
  10477. "src": "https://pi.cocorobo.cn/"
  10478. })
  10479. _box.appendChild(_iframe);
  10480. _box.appendChild(_jie);
  10481. _formdiv = new U.UF.UI.form(
  10482. "CocoPi",
  10483. _box, {
  10484. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10485. "style": {
  10486. "width": "90%",
  10487. "height": "90%",
  10488. "overflow": 'hidden'
  10489. },
  10490. "onresize": function () { }
  10491. }, {
  10492. closecallback: function () { }
  10493. }, {
  10494. "style": {
  10495. "height": "36px"
  10496. }
  10497. }).form; //创建窗体
  10498. _taskbar = {
  10499. "id": str + _formdiv.id,
  10500. "style": {
  10501. "backgroundImage": "url(/img/icon/cocopi.png)"
  10502. },
  10503. "name": "CocoPi",
  10504. "forms": _formdiv,
  10505. "click": function () {
  10506. U.MD.D.I.openApplication(str, obj, info);
  10507. }
  10508. }
  10509. break;
  10510. }
  10511. if (_iframe) {
  10512. if (str == 'CocoPi') {
  10513. _iframe = _formdiv.querySelector('iframe')
  10514. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10515. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10516. })
  10517. if (onloadListener) {
  10518. _iframe.contentDocument.location.reload()
  10519. } else {
  10520. _iframe.contentDocument.location.reload()
  10521. }
  10522. }
  10523. _jie.onclick = async () => {
  10524. let text = ''
  10525. if (aTool == 57) {
  10526. text = _iframe.contentWindow.getLoadXmlStr()
  10527. }
  10528. _loading.style.display = 'flex'
  10529. console.log(_loading);
  10530. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10531. _loading.style.display = 'none'
  10532. let _div = document.createElement('div')
  10533. _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;"
  10534. let _inner = document.createElement('div')
  10535. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10536. _inner.innerHTML = "上传成功"
  10537. _div.appendChild(_inner)
  10538. _iframe.contentWindow.window.document.body.appendChild(_div)
  10539. _div.onclick = () => {
  10540. _iframe.contentWindow.window.document.body.removeChild(_div)
  10541. }
  10542. setTimeout(() => {
  10543. _iframe.contentWindow.window.document.body.removeChild(_div)
  10544. }, 1000);
  10545. }, [], { "type": "POST", "withCredentials": true });
  10546. }
  10547. }
  10548. }
  10549. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10550. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10551. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10552. _userid = student.userid, //登录用户id
  10553. _username = student.student //用户名字
  10554. let _iframe;
  10555. let _cid = cid,
  10556. _stage = stage,
  10557. _task = task,
  10558. _tool = tool;
  10559. var _jie = $$("div", {
  10560. "style": {
  10561. "position": "absolute",
  10562. "bottom": "50px",
  10563. "right": "50px",
  10564. "zIndex": "9999",
  10565. "backgroundColor": "#2268bc",
  10566. "color": "#fff",
  10567. "padding": "12px 20px",
  10568. "cursor": "pointer",
  10569. "borderRadius": "4px",
  10570. },
  10571. "innerHTML": "提交作业"
  10572. })
  10573. let aTool = ''
  10574. let _loading = document.createElement('div')
  10575. _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;"
  10576. // _loading.id = "";
  10577. let _lchild = document.createElement('div')
  10578. let _limg = document.createElement('img')
  10579. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10580. _limg.style = "width: 26px;margin-right: 10px;"
  10581. _lchild.appendChild(_limg)
  10582. let _lspan = document.createElement('span')
  10583. _lspan.innerHTML = "上传中..."
  10584. _lchild.appendChild(_lspan)
  10585. _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%);"
  10586. _loading.appendChild(_lchild)
  10587. var _box = $$('div', {
  10588. "style": {
  10589. "position": "relative",
  10590. "width": "100%",
  10591. "height": "100%",
  10592. },
  10593. })
  10594. _box.appendChild(_loading)
  10595. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10596. switch (str) {
  10597. case "CocoPi":
  10598. aTool = 57;
  10599. _iframe = $$("iframe", {
  10600. "allowpaymentrequest": "allowpaymentrequest",
  10601. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10602. "webkitallowfullscreen": "",
  10603. "mozallowfullscreen": "",
  10604. "frameborder": "no",
  10605. "border": "0",
  10606. "scrolling ": "no",
  10607. "style": {
  10608. "cssText": "border:0;width:100%;height:100%"
  10609. },
  10610. "src": "https://pi.cocorobo.cn/"
  10611. })
  10612. _box.appendChild(_iframe);
  10613. _box.appendChild(_jie);
  10614. _formdiv = new U.UF.UI.form(
  10615. "CocoPi-" + _username,
  10616. _box, {
  10617. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10618. "style": {
  10619. "width": "90%",
  10620. "height": "90%",
  10621. "overflow": 'hidden'
  10622. },
  10623. "onresize": function () { }
  10624. }, {
  10625. closecallback: function () { }
  10626. }, {
  10627. "style": {
  10628. "height": "36px"
  10629. }
  10630. }).form; //创建窗体
  10631. _taskbar = {
  10632. "id": str + _formdiv.id,
  10633. "style": {
  10634. "backgroundImage": "url(/img/icon/cocopi.png)"
  10635. },
  10636. "name": "CocoPi",
  10637. "forms": _formdiv,
  10638. "click": function () {
  10639. U.MD.D.I.openApplication(str, obj, info);
  10640. }
  10641. }
  10642. break;
  10643. }
  10644. if (_iframe) {
  10645. if (str == 'CocoPi') {
  10646. _iframe = _formdiv.querySelector('iframe')
  10647. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10648. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10649. })
  10650. if (onloadListener) {
  10651. _iframe.contentDocument.location.reload()
  10652. } else {
  10653. _iframe.contentDocument.location.reload()
  10654. }
  10655. }
  10656. _jie.onclick = async () => {
  10657. let text = ''
  10658. if (aTool == 57) {
  10659. text = _iframe.contentWindow.getLoadXmlStr()
  10660. }
  10661. _loading.style.display = 'flex'
  10662. console.log(_loading);
  10663. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10664. _loading.style.display = 'none'
  10665. let _div = document.createElement('div')
  10666. _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;"
  10667. let _inner = document.createElement('div')
  10668. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10669. _inner.innerHTML = "上传成功"
  10670. _div.appendChild(_inner)
  10671. _iframe.contentWindow.window.document.body.appendChild(_div)
  10672. _div.onclick = () => {
  10673. _iframe.contentWindow.window.document.body.removeChild(_div)
  10674. }
  10675. setTimeout(() => {
  10676. _iframe.contentWindow.window.document.body.removeChild(_div)
  10677. }, 1000);
  10678. }, [], { "type": "POST", "withCredentials": true });
  10679. }
  10680. }
  10681. }
  10682. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10683. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10684. if (res.value[0].length > 0) {
  10685. if (atool == 57) {
  10686. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10687. }
  10688. } else {
  10689. if (atool == 57) {
  10690. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10691. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10692. }
  10693. }
  10694. }, [], { "type": "POST", "withCredentials": true });
  10695. }
  10696. U.MD.D.addOp = function(text,type,time){
  10697. var userInfo = US.userInfo;
  10698. if(Object.keys(userInfo).length !== 0){
  10699. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10700. }, [], { "type": "POST", "withCredentials": true });
  10701. }
  10702. }