DeskTop.js 706 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. ];
  717. //hk
  718. U.MD.D.I.hkaceteacherDeskIcon = [
  719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  726. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  727. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  728. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  729. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  730. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  731. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  732. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  734. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  735. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  736. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  737. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  738. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  739. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  740. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  741. ];
  742. //hk
  743. U.MD.D.I.hkaceStudentDeskIcon = [
  744. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  745. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  747. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  748. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. ];
  751. //香海正覺蓮社佛教正覺中學
  752. U.MD.D.I.hkZJLSteacherDeskIcon = [
  753. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  754. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  756. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  762. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  763. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  764. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  765. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  766. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  767. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  768. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  769. ];
  770. //香海正覺蓮社佛教正覺中學
  771. U.MD.D.I.hkZJLSStudentDeskIcon = [
  772. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  776. ];
  777. //云海
  778. U.MD.D.I.yunhaiTeacherDeskIcon = [
  779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  781. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  782. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  783. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  785. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  786. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  787. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  788. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  789. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  790. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  791. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  792. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  793. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  794. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  795. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  796. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  797. ];
  798. //福田
  799. U.MD.D.I.heyuanTeacherDeskIcon = [
  800. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  801. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  802. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  803. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  804. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  805. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  806. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  807. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  808. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  809. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  811. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  812. ];
  813. //福田
  814. U.MD.D.I.heyuanAdminDeskIcon = [
  815. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  816. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  817. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  818. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  819. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  820. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  821. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  822. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  823. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  825. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  826. ];
  827. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  828. U.MD.D.I.szherTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  836. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  837. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  838. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  839. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  840. ];
  841. //dsei
  842. U.MD.D.I.dseiTeacherDeskIcon = [
  843. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  844. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  845. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  846. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  847. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  848. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  849. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  850. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  851. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  852. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  853. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  854. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  855. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  856. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  857. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  858. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  859. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  860. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  861. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  862. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  863. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  864. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  865. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  866. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  867. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  868. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  869. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  870. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  871. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  872. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  873. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  874. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  875. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  876. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  877. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  878. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  879. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  880. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  881. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  882. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  883. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  884. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  885. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  886. ];
  887. //dsei
  888. U.MD.D.I.dseiAdminDeskIcon = [
  889. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  890. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  891. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  892. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  893. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  894. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  895. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  896. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  897. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  898. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  899. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  900. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  901. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  902. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  903. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  904. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  905. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  906. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  907. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  908. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  909. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  910. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  911. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  912. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  913. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  914. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  915. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  916. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  917. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  918. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  919. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  920. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  921. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  922. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  923. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  924. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  925. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  926. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  927. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  928. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  929. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  930. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  931. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  932. ];
  933. //dsei
  934. U.MD.D.I.dseiStudentDeskIcon = [
  935. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  936. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  937. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  938. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  939. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  941. ];
  942. //未来教育基地
  943. U.MD.D.I.szjkyTeacherDeskIcon = [
  944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  946. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  947. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  948. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  949. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  950. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  951. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  952. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  953. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  954. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  955. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  956. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  957. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  958. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  959. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  960. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  961. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  962. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  963. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  964. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  965. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  966. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  967. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  968. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  969. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  970. ];
  971. //未来教育基地
  972. U.MD.D.I.szjkyAdminDeskIcon = [
  973. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  974. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  978. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  979. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  980. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  981. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  982. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  983. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  984. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  985. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  986. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  987. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  988. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  989. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  990. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  991. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  992. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  993. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  994. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  995. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  996. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  997. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  998. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  999. ];
  1000. //未来教育基地
  1001. U.MD.D.I.szjkyStudentDeskIcon = [
  1002. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1003. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1004. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1005. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1006. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1007. ];
  1008. //成华教育局
  1009. U.MD.D.I.chjyjTeacherDeskIcon = [
  1010. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1011. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1012. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1013. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1014. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1015. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1016. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1017. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1018. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1019. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1020. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1023. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1024. ];
  1025. //成华教育局chjyj
  1026. U.MD.D.I.chjyjAdminDeskIcon = [
  1027. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1028. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1029. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1031. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1032. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1033. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1034. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1035. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1036. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1037. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1038. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1039. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1040. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1041. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1042. ];
  1043. //成华教育局chjyj
  1044. U.MD.D.I.chjyjStudentDeskIcon = [
  1045. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. ];
  1050. //tpc
  1051. U.MD.D.I.tpcStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. ];
  1057. //tpc
  1058. U.MD.D.I.tpcTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1062. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1063. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1064. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1065. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1066. ];
  1067. //tpc
  1068. U.MD.D.I.tpcAdminDeskIcon = [
  1069. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1070. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1071. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1072. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1073. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1074. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1075. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1076. ];
  1077. //THU-IOE
  1078. U.MD.D.I.thuioeTeacherDeskIcon = [
  1079. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1080. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1081. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1082. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1083. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1084. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1085. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1086. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1087. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1088. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1089. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1090. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1091. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1092. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1093. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1094. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1095. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1096. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1097. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1098. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1099. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1100. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1101. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1102. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1103. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1104. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1105. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1106. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1107. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1108. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1109. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1110. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1111. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1112. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1116. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1117. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1118. ];
  1119. //THU-IOE
  1120. U.MD.D.I.thuioeStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //jccssyl
  1127. U.MD.D.I.jccssylTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //jccssyl
  1149. U.MD.D.I.jccssylStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //cale
  1156. U.MD.D.I.caleTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1164. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1169. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1170. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1171. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1172. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1173. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1174. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1175. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1176. ];
  1177. //cale
  1178. U.MD.D.I.caleStudentDeskIcon = [
  1179. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1181. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1183. ];
  1184. //lqwmsgzs
  1185. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1186. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1187. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1188. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1189. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1190. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1191. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1192. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1193. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1194. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1195. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1196. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1197. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1198. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1199. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1200. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1201. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1202. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1203. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1204. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1205. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1206. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1207. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1208. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1209. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1210. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1211. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1212. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1213. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1214. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1215. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1216. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1217. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1218. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1219. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1220. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1221. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1222. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1223. ];
  1224. //lqwmsgzs
  1225. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1226. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1227. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyTeacherDeskIcon = [
  1233. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1234. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1235. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1236. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1237. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1238. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1239. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1240. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1242. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1244. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1245. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1246. ];
  1247. //盐田区幼儿园
  1248. U.MD.D.I.ytyStudentDeskIcon = [
  1249. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1250. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1251. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1252. ];
  1253. //scnuai
  1254. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1255. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1256. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1257. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1258. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1259. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1260. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1261. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1262. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1263. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1264. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1265. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1266. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1267. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1269. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1270. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1273. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1274. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1275. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1276. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1277. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1278. ];
  1279. //scnuai
  1280. U.MD.D.I.scnuaiAdminDeskIcon = [
  1281. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1282. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1283. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1284. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1285. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1286. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1287. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1288. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1289. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1290. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1291. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1292. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1293. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1294. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1295. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1296. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1297. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1298. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1299. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1300. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1301. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1302. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1303. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1304. ];
  1305. //scnuai
  1306. U.MD.D.I.scnuaiStudentDeskIcon = [
  1307. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1308. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1309. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. ];
  1312. //cocobiz
  1313. U.MD.D.I.cocobizteacherDeskIcon = [
  1314. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1316. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1317. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1318. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1319. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1320. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1321. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1322. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1323. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1324. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1325. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1326. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1327. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1328. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1329. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1330. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1331. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1332. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1333. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1334. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1335. ];
  1336. //cocobiz
  1337. U.MD.D.I.cocobizStudentDeskIcon = [
  1338. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1339. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1340. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1341. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. ];
  1345. //xxzjky
  1346. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1347. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1348. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1349. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1350. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1351. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1353. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1354. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1355. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1356. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1357. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1358. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1359. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1360. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1361. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1362. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1363. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1364. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1365. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1366. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1367. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1368. ];
  1369. //xxzjky
  1370. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1371. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1372. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1373. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1374. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1375. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //nsfx
  1379. U.MD.D.I.nsfxTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1389. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1392. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1393. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1394. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1395. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1396. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1397. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1398. ];
  1399. //nsfx
  1400. U.MD.D.I.nsfxStudentDeskIcon = [
  1401. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1404. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1405. ];
  1406. //stia
  1407. U.MD.D.I.stiaTeacherDeskIcon = [
  1408. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1409. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1411. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1412. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1413. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1414. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1415. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1416. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1417. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1418. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1419. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1420. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1421. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1422. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1423. ];
  1424. //stia
  1425. U.MD.D.I.stiaStudentDeskIcon = [
  1426. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1427. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1428. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. ];
  1431. //szdjg
  1432. U.MD.D.I.szdjgTeacherDeskIcon = [
  1433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1435. ];
  1436. //szdjg
  1437. U.MD.D.I.szdjgStudentDeskIcon = [
  1438. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1439. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1440. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1441. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. ];
  1443. //010607
  1444. U.MD.D.I.x010607TeacherDeskIcon = [
  1445. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1446. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1447. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1448. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1449. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1450. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1451. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1452. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1453. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1456. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1457. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1458. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1459. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1460. ];
  1461. //010607
  1462. U.MD.D.I.x010607StudentDeskIcon = [
  1463. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. ];
  1468. //010608
  1469. U.MD.D.I.x010608TeacherDeskIcon = [
  1470. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1471. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1473. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1474. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1475. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1476. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1477. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1478. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1479. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1480. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1481. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1484. ];
  1485. //010608
  1486. U.MD.D.I.x010608StudentDeskIcon = [
  1487. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1490. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. ];
  1492. //xhly
  1493. U.MD.D.I.xhlyTeacherDeskIcon = [
  1494. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. ];
  1496. //010608
  1497. U.MD.D.I.xhlyStudentDeskIcon = [
  1498. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1499. ];
  1500. //北师大
  1501. U.MD.D.I.BSDNSteacherDeskIcon = [
  1502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1504. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1505. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1508. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1512. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1513. ];
  1514. //北师大
  1515. U.MD.D.I.BSDNSstudentDeskIcon = [
  1516. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1517. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1518. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1520. ];
  1521. //CUHK_EDU
  1522. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1523. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1524. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1526. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1527. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1528. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1529. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1530. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1531. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1532. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1533. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1534. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1535. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1536. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1537. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1538. ];
  1539. //CUHK_EDU
  1540. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1541. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1544. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1545. ];
  1546. //010503
  1547. U.MD.D.I.x010503TeacherDeskIcon = [
  1548. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1549. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1551. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1552. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1555. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1556. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1557. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1558. ];
  1559. //010503
  1560. U.MD.D.I.x010503StudentDeskIcon = [
  1561. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //SPROUT Lab
  1567. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1575. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1576. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1577. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1578. ];
  1579. //SPROUT Lab
  1580. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1581. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. ];
  1586. //010204
  1587. U.MD.D.I.x010204TeacherDeskIcon = [
  1588. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1589. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1590. ];
  1591. //010204
  1592. U.MD.D.I.x010204StudentDeskIcon = [
  1593. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1596. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. ];
  1598. //trail
  1599. U.MD.D.I.trailTeacherDeskIcon = [
  1600. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1601. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1603. ];
  1604. //trail
  1605. U.MD.D.I.trailStudentDeskIcon = [
  1606. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1607. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1608. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1609. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1610. ];
  1611. //trial
  1612. U.MD.D.I.trialTeacherDeskIcon = [
  1613. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1614. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1615. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1616. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1619. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1620. ];
  1621. //trial
  1622. U.MD.D.I.trialStudentDeskIcon = [
  1623. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1624. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1627. ];
  1628. //010504
  1629. U.MD.D.I.x010504TeacherDeskIcon = [
  1630. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1631. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1633. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1634. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1635. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1636. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1637. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1638. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1639. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1640. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1641. ];
  1642. //010504
  1643. U.MD.D.I.x010504StudentDeskIcon = [
  1644. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1645. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1646. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1647. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1648. ];
  1649. //010505
  1650. U.MD.D.I.x010505TeacherDeskIcon = [
  1651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1653. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1654. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1655. { "Name": "项目管理", "Url": "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1658. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1660. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1661. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1662. ];
  1663. //010505
  1664. U.MD.D.I.x010505StudentDeskIcon = [
  1665. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1666. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1668. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. ];
  1670. //SCNUET
  1671. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1678. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1679. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1680. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1681. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1683. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1684. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1688. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1690. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1691. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1692. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1693. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1694. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1695. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1696. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1697. ];
  1698. //SCNUET
  1699. U.MD.D.I.SCNUETAdminDeskIcon = [
  1700. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1701. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1707. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1708. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1709. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1710. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1711. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1712. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1713. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1714. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1716. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1717. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1718. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1719. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1720. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1721. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1722. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1723. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1724. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1725. ];
  1726. //SCNUET
  1727. U.MD.D.I.SCNUETStudentDeskIcon = [
  1728. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1729. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1732. ];
  1733. //x020201
  1734. U.MD.D.I.x020201TeacherDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1741. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1742. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1743. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1744. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1745. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1746. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1749. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1750. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1751. ];
  1752. //x020201
  1753. U.MD.D.I.x020201AdminDeskIcon = [
  1754. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1755. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1759. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1760. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1761. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1762. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1763. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1764. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1765. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1766. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1767. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1768. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1769. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1770. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1771. ];
  1772. //020201
  1773. U.MD.D.I.x020201StudentDeskIcon = [
  1774. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1775. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1776. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1778. ];
  1779. //010611
  1780. U.MD.D.I.x010611TeacherDeskIcon = [
  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. ];
  1791. //010611
  1792. U.MD.D.I.x010611StudentDeskIcon = [
  1793. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1794. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1795. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1796. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1797. ];
  1798. //010612
  1799. U.MD.D.I.x010612TeacherDeskIcon = [
  1800. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1801. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1802. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1803. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1804. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1805. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1808. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1809. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1810. ];
  1811. //010612
  1812. U.MD.D.I.x010612StudentDeskIcon = [
  1813. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1815. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1817. ];
  1818. //tianyuan
  1819. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1820. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1821. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1822. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1823. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1824. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1825. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1826. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1827. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1828. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1829. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1830. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1831. ];
  1832. //010611
  1833. U.MD.D.I.tianyuanStudentDeskIcon = [
  1834. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1835. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1836. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1837. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1838. ];
  1839. //320101
  1840. U.MD.D.I.x320101TeacherDeskIcon = [
  1841. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1842. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1843. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1844. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1845. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1846. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1847. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1848. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1849. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1850. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1851. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1852. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1853. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1854. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1855. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1856. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1857. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1858. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1859. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1860. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1861. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1862. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1863. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1864. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1865. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1866. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1867. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1868. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1869. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1870. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1871. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1872. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1873. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1874. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1875. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1876. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1877. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1878. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1879. ];
  1880. //320101
  1881. U.MD.D.I.x320101StudentDeskIcon = [
  1882. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1883. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1884. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1885. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1886. ];
  1887. //szsy
  1888. U.MD.D.I.szsyTeacherDeskIcon = [
  1889. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1890. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1891. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1892. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1893. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1894. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1895. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1896. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1897. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1898. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1899. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1900. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1901. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1902. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1903. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1904. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1905. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1906. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1907. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1908. ];
  1909. //szsy
  1910. U.MD.D.I.szsyStudentDeskIcon = [
  1911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1914. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1915. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1916. ];
  1917. //010404
  1918. U.MD.D.I.x010404TeacherDeskIcon = [
  1919. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1920. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1921. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1922. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1923. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1924. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1925. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1927. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1928. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1929. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1930. ];
  1931. //010404
  1932. U.MD.D.I.x010404StudentDeskIcon = [
  1933. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1934. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1935. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1936. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1937. ];
  1938. //#region 桌面初始化a
  1939. /**
  1940. * 初始化桌面的起始函数
  1941. *
  1942. */
  1943. U.MD.D.I.init = function () {
  1944. if ($("#U_MD_D_K")[0]) {
  1945. //初始化桌面图标
  1946. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1947. // var clickUrl = ':12588/requestIp.php';
  1948. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1949. // U.MD.D.I.Ip = data;
  1950. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1951. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1952. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1953. // })
  1954. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1955. // })
  1956. }
  1957. }
  1958. /**
  1959. * 模式切换
  1960. *
  1961. */
  1962. U.MD.D.I.ModeCheck = function (type) {
  1963. if (US.Config.type == type) {
  1964. return
  1965. }
  1966. US.Config.type = type
  1967. $('.U_PBL_Check .active')[0].className = ''
  1968. if (type == 1) {
  1969. $('.U_PBL_Check div')[0].className = 'active'
  1970. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1971. } else {
  1972. $('.U_PBL_Check div')[1].className = 'active'
  1973. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1974. }
  1975. //初始化桌面图标
  1976. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1977. if (type == 2) {
  1978. U.MD.D.I.openApplication("project")
  1979. }
  1980. }
  1981. /**
  1982. * 隐藏任务栏
  1983. *
  1984. * @param {element} 桌面元素
  1985. */
  1986. U.MD.D.I.hiddenTaskbar = function (el) {
  1987. //任务栏位置变小
  1988. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1989. //桌面的位置变大
  1990. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1991. }
  1992. /**
  1993. * 隐藏任务栏
  1994. *
  1995. * @param {element} 桌面元素
  1996. */
  1997. U.MD.D.I.hiddenTaskbarout = function (el) {
  1998. //任务栏位置变小
  1999. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2000. //任务栏位置变化
  2001. U.selectEl(el).css({ "bottom": "-60px" });
  2002. //桌面的位置变大
  2003. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2004. }
  2005. }
  2006. /**
  2007. * 初始化打印桌面图标
  2008. *
  2009. * @param {element} 桌面元素
  2010. */
  2011. U.MD.D.I.initDesktopIcons = function (el, type) {
  2012. var i, //用于循环
  2013. _content, //桌面图标元素
  2014. _iconcontent, //桌面图标元素
  2015. _frag = $$("frag"), //定义一个碎片元素
  2016. _type = US.userInfo.type,
  2017. _org = US.userInfo.org,
  2018. _oid = US.userInfo.organizeid,
  2019. _role = US.userInfo.role,
  2020. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2021. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2022. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2023. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2024. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2025. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2026. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2027. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2028. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2029. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2030. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2031. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2032. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2033. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2034. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2035. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2036. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2037. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2038. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2039. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2040. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2041. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2042. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2043. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2044. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2045. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2046. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2047. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2048. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2049. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2050. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2051. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2052. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2053. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2054. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2055. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2056. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2057. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2058. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2059. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2060. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2061. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2062. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2063. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2064. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2065. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2066. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2067. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2068. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2069. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2070. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2071. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2072. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2073. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2074. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2075. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2076. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2077. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2078. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2079. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2080. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2081. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2082. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2083. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2084. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2085. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2086. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2087. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2088. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2089. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2090. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2091. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2092. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2093. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2094. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2095. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2096. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2097. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2098. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2099. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2100. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2101. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2102. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2103. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2104. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2105. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2106. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2107. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2108. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2109. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2110. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2111. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2112. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2113. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2114. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2115. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2116. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2117. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2118. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2119. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2120. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2121. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2122. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2123. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2124. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2125. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2126. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2127. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2128. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2129. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2130. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2131. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2132. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2133. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2134. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2135. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2136. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2137. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2138. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2139. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2140. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2141. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2142. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2143. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2144. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926','65ad80f0-16bb-11f0-a66a-005056924926'];
  2145. 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'];
  2146. //清楚桌面图标
  2147. el.innerHTML = "";
  2148. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2149. _teacherDesktopIconInfo.push(
  2150. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2151. { "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)" } },
  2152. )
  2153. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2154. }
  2155. 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') {
  2156. _teacherDesktopIconInfo.push(
  2157. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2158. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2159. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2160. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2161. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2162. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2163. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2164. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2165. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2166. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2167. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2168. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2169. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2170. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2171. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2172. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2173. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2174. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2175. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2176. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2177. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2178. )
  2179. }
  2180. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2181. _teacherDesktopIconInfo.push(
  2182. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2183. )
  2184. }
  2185. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2186. _nsfxTeacherDeskIconInfo.push(
  2187. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2188. )
  2189. }
  2190. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2191. // _teacherDesktopIconInfo.push(
  2192. // )
  2193. // }
  2194. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2195. _teacherDesktopIconInfo.push(
  2196. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2197. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2198. )
  2199. }
  2200. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2201. _teacherDesktopIconInfo.push(
  2202. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2204. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2205. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2206. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2207. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2208. )
  2209. _studentDesktopIconInfo.push(
  2210. )
  2211. }
  2212. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2213. _teacherDesktopIconInfo.push(
  2214. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2215. )
  2216. _studentDesktopIconInfo.push(
  2217. )
  2218. }
  2219. //010606 组织
  2220. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2221. _teacherDesktopIconInfo.push(
  2222. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2223. )
  2224. _studentDesktopIconInfo.push(
  2225. )
  2226. }
  2227. //麒麟二中 和 民新小学
  2228. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2229. _teacherDesktopIconInfo.push(
  2230. )
  2231. }
  2232. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2233. _teacherDesktopIconInfo.push(
  2234. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2235. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2236. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2237. )
  2238. }
  2239. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2240. _hkTeacherDeskIconInfo.push(
  2241. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2242. )
  2243. }
  2244. //北师大附中(010601)
  2245. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2246. // _teacherDesktopIconInfo.push(
  2247. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2248. // )
  2249. // _studentDesktopIconInfo.push(
  2250. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2251. // )
  2252. // }
  2253. //樂善堂余近卿中學
  2254. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2255. _teacherDesktopIconInfo.push(
  2256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2257. )
  2258. }
  2259. // Education Artificial Intelligence
  2260. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2261. _teacherDesktopIconInfo.push(
  2262. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2263. )
  2264. }
  2265. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2266. _teacherDesktopIconInfo.push(
  2267. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2268. )
  2269. }
  2270. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2271. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2272. _teacherDesktopIconInfo.push(
  2273. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2274. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2275. )
  2276. }
  2277. //麒麟二中
  2278. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2279. _studentDesktopIconInfo.push(
  2280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2282. )
  2283. }
  2284. //万科双语
  2285. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2286. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2287. if (el.Name == '项目管理') {
  2288. el.Name = 'PBL项目'
  2289. }
  2290. return el
  2291. })
  2292. _studentDesktopIconInfo3.push(
  2293. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2294. )
  2295. }
  2296. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2297. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2298. return el.Name != '魔盒识字' && el.Name != '24点'
  2299. })
  2300. }
  2301. 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) {
  2302. _studentDesktopIconInfo.push(
  2303. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2304. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2305. )
  2306. }
  2307. //循环创建桌面图标
  2308. if (type == 1) {
  2309. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2310. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2311. _content = $$("div", {
  2312. className: "U_MD_D_KO",
  2313. "onmousedown": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_studentDesktopIconInfo[i]]),
  2317. "onclick": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_studentDesktopIconInfo[i]])
  2321. }, _frag); //
  2322. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2323. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2324. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2325. }
  2326. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2327. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2328. _content = $$("div", {
  2329. className: "U_MD_D_KO",
  2330. "onmousedown": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2334. "onclick": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_hkZJLSStudentDeskIconInfo[i]])
  2338. }, _frag); //
  2339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2342. } //
  2343. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2344. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2345. _content = $$("div", {
  2346. className: "U_MD_D_KO",
  2347. "onmousedown": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_ytyStudentDeskIconInfo[i]]),
  2351. "onclick": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_ytyStudentDeskIconInfo[i]])
  2355. }, _frag); //
  2356. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2357. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2358. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2359. } //
  2360. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2361. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2362. _content = $$("div", {
  2363. className: "U_MD_D_KO",
  2364. "onmousedown": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_jccssylStudentDeskIconInfo[i]]),
  2368. "onclick": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_jccssylStudentDeskIconInfo[i]])
  2372. }, _frag); //
  2373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2376. }
  2377. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2378. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2379. _content = $$("div", {
  2380. className: "U_MD_D_KO",
  2381. "onmousedown": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_scnuaiStudentDeskIconInfo[i]]),
  2385. "onclick": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_scnuaiStudentDeskIconInfo[i]])
  2389. }, _frag); //
  2390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2393. }
  2394. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2395. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2396. _content = $$("div", {
  2397. className: "U_MD_D_KO",
  2398. "onmousedown": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_caleStudentDeskIconInfo[i]]),
  2402. "onclick": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_caleStudentDeskIconInfo[i]])
  2406. }, _frag); //
  2407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2410. }
  2411. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2412. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2413. _content = $$("div", {
  2414. className: "U_MD_D_KO",
  2415. "onmousedown": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_thuioeStudentDeskIconInfo[i]]),
  2419. "onclick": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_thuioeStudentDeskIconInfo[i]])
  2423. }, _frag); //
  2424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2427. }
  2428. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2429. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2430. _content = $$("div", {
  2431. className: "U_MD_D_KO",
  2432. "onmousedown": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_tpcStudentDeskIconInfo[i]]),
  2436. "onclick": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_tpcStudentDeskIconInfo[i]])
  2440. }, _frag); //
  2441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2444. } //
  2445. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2446. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2447. _content = $$("div", {
  2448. className: "U_MD_D_KO",
  2449. "onmousedown": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_chjyjStudentDeskIconInfo[i]]),
  2453. "onclick": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_chjyjStudentDeskIconInfo[i]])
  2457. }, _frag); //
  2458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2461. }
  2462. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2463. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2464. _content = $$("div", {
  2465. className: "U_MD_D_KO",
  2466. "onmousedown": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_szjkyStudentDeskIconInfo[i]]),
  2470. "onclick": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_szjkyStudentDeskIconInfo[i]])
  2474. }, _frag); //
  2475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2478. }
  2479. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2480. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2481. _content = $$("div", {
  2482. className: "U_MD_D_KO",
  2483. "onmousedown": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_x020201StudentDeskIconInfo[i]]),
  2487. "onclick": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_x020201StudentDeskIconInfo[i]])
  2491. }, _frag); //
  2492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2495. }
  2496. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2497. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2498. _content = $$("div", {
  2499. className: "U_MD_D_KO",
  2500. "onmousedown": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_SCNUETStudentDeskIconInfo[i]]),
  2504. "onclick": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_SCNUETStudentDeskIconInfo[i]])
  2508. }, _frag); //
  2509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2512. }
  2513. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2514. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2515. _content = $$("div", {
  2516. className: "U_MD_D_KO",
  2517. "onmousedown": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_dseiStudentDeskIconInfo[i]]),
  2521. "onclick": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_dseiStudentDeskIconInfo[i]])
  2525. }, _frag); //
  2526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2529. }
  2530. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2531. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2532. _content = $$("div", {
  2533. className: "U_MD_D_KO",
  2534. "onmousedown": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2538. "onclick": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2542. }, _frag); //
  2543. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2544. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2545. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2546. }
  2547. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2548. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_nsfxStudentDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_nsfxStudentDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2565. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2566. _content = $$("div", {
  2567. className: "U_MD_D_KO",
  2568. "onmousedown": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_stiaStudentDeskIconInfo[i]]),
  2572. "onclick": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_stiaStudentDeskIconInfo[i]])
  2576. }, _frag); //
  2577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2580. }
  2581. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2582. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2583. _content = $$("div", {
  2584. className: "U_MD_D_KO",
  2585. "onmousedown": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_szdjgStudentDeskIconInfo[i]]),
  2589. "onclick": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_szdjgStudentDeskIconInfo[i]])
  2593. }, _frag); //
  2594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2597. }
  2598. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2599. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2600. _content = $$("div", {
  2601. className: "U_MD_D_KO",
  2602. "onmousedown": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_x010607StudentDeskIconInfo[i]]),
  2606. "onclick": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_x010607StudentDeskIconInfo[i]])
  2610. }, _frag); //
  2611. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2612. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2613. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2614. }
  2615. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2616. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2617. _content = $$("div", {
  2618. className: "U_MD_D_KO",
  2619. "onmousedown": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_xhlyStudentDeskIconInfo[i]]),
  2623. "onclick": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_xhlyStudentDeskIconInfo[i]])
  2627. }, _frag); //
  2628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2631. }
  2632. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2633. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2634. _content = $$("div", {
  2635. className: "U_MD_D_KO",
  2636. "onmousedown": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2640. "onclick": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2644. }, _frag); //
  2645. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2646. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2647. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2648. }
  2649. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2650. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2651. _content = $$("div", {
  2652. className: "U_MD_D_KO",
  2653. "onmousedown": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_x010503StudentDeskIconInfo[i]]),
  2657. "onclick": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_x010503StudentDeskIconInfo[i]])
  2661. }, _frag); //
  2662. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2663. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2664. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2665. }
  2666. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2667. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2668. _content = $$("div", {
  2669. className: "U_MD_D_KO",
  2670. "onmousedown": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_x010504StudentDeskIconInfo[i]]),
  2674. "onclick": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_x010504StudentDeskIconInfo[i]])
  2678. }, _frag); //
  2679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2682. }
  2683. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2684. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2685. _content = $$("div", {
  2686. className: "U_MD_D_KO",
  2687. "onmousedown": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_x010505StudentDeskIconInfo[i]]),
  2691. "onclick": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_x010505StudentDeskIconInfo[i]])
  2695. }, _frag); //
  2696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2699. }
  2700. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2701. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2702. _content = $$("div", {
  2703. className: "U_MD_D_KO",
  2704. "onmousedown": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_x010404StudentDeskIconInfo[i]]),
  2708. "onclick": U.UF.C.closure(function (obj) {
  2709. //防止拖动图标即打开了桌面应用
  2710. U.MD.D.click(this, obj);
  2711. }, [_x010404StudentDeskIconInfo[i]])
  2712. }, _frag); //
  2713. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2714. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2715. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2716. }
  2717. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2718. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2719. _content = $$("div", {
  2720. className: "U_MD_D_KO",
  2721. "onmousedown": U.UF.C.closure(function (obj) {
  2722. //防止拖动图标即打开了桌面应用
  2723. U.MD.D.click(this, obj);
  2724. }, [_x010204StudentDeskIconInfo[i]]),
  2725. "onclick": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_x010204StudentDeskIconInfo[i]])
  2729. }, _frag); //
  2730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2733. }
  2734. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2735. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2736. _content = $$("div", {
  2737. className: "U_MD_D_KO",
  2738. "onmousedown": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_x320101StudentDeskIconInfo[i]]),
  2742. "onclick": U.UF.C.closure(function (obj) {
  2743. //防止拖动图标即打开了桌面应用
  2744. U.MD.D.click(this, obj);
  2745. }, [_x320101StudentDeskIconInfo[i]])
  2746. }, _frag); //
  2747. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2748. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2749. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2750. }
  2751. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2752. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2753. _content = $$("div", {
  2754. className: "U_MD_D_KO",
  2755. "onmousedown": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_trailStudentDeskIconInfo[i]]),
  2759. "onclick": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_trailStudentDeskIconInfo[i]])
  2763. }, _frag); //
  2764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2767. }
  2768. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2769. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2770. _content = $$("div", {
  2771. className: "U_MD_D_KO",
  2772. "onmousedown": U.UF.C.closure(function (obj) {
  2773. //防止拖动图标即打开了桌面应用
  2774. U.MD.D.click(this, obj);
  2775. }, [_trialStudentDeskIconInfo[i]]),
  2776. "onclick": U.UF.C.closure(function (obj) {
  2777. //防止拖动图标即打开了桌面应用
  2778. U.MD.D.click(this, obj);
  2779. }, [_trialStudentDeskIconInfo[i]])
  2780. }, _frag); //
  2781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2784. }
  2785. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2786. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2787. _content = $$("div", {
  2788. className: "U_MD_D_KO",
  2789. "onmousedown": U.UF.C.closure(function (obj) {
  2790. //防止拖动图标即打开了桌面应用
  2791. U.MD.D.click(this, obj);
  2792. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2793. "onclick": U.UF.C.closure(function (obj) {
  2794. //防止拖动图标即打开了桌面应用
  2795. U.MD.D.click(this, obj);
  2796. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2797. }, _frag); //
  2798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2801. }
  2802. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2803. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2804. _content = $$("div", {
  2805. className: "U_MD_D_KO",
  2806. "onmousedown": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_szsyStudentDeskIconInfo[i]]),
  2810. "onclick": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_szsyStudentDeskIconInfo[i]])
  2814. }, _frag); //
  2815. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2816. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2817. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2818. }
  2819. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2820. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2821. _content = $$("div", {
  2822. className: "U_MD_D_KO",
  2823. "onmousedown": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_x010608StudentDeskIconInfo[i]]),
  2827. "onclick": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_x010608StudentDeskIconInfo[i]])
  2831. }, _frag); //
  2832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2835. }
  2836. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2837. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2838. _content = $$("div", {
  2839. className: "U_MD_D_KO",
  2840. "onmousedown": U.UF.C.closure(function (obj) {
  2841. //防止拖动图标即打开了桌面应用
  2842. U.MD.D.click(this, obj);
  2843. }, [_x010611StudentDeskIconInfo[i]]),
  2844. "onclick": U.UF.C.closure(function (obj) {
  2845. //防止拖动图标即打开了桌面应用
  2846. U.MD.D.click(this, obj);
  2847. }, [_x010611StudentDeskIconInfo[i]])
  2848. }, _frag); //
  2849. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2850. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2851. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2852. }
  2853. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2854. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2855. _content = $$("div", {
  2856. className: "U_MD_D_KO",
  2857. "onmousedown": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_x010612StudentDeskIconInfo[i]]),
  2861. "onclick": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_x010612StudentDeskIconInfo[i]])
  2865. }, _frag); //
  2866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2869. }
  2870. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2871. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2872. _content = $$("div", {
  2873. className: "U_MD_D_KO",
  2874. "onmousedown": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_tianyuantudentDeskIconInfo[i]]),
  2878. "onclick": U.UF.C.closure(function (obj) {
  2879. //防止拖动图标即打开了桌面应用
  2880. U.MD.D.click(this, obj);
  2881. }, [_tianyuantudentDeskIconInfo[i]])
  2882. }, _frag); //
  2883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2886. }
  2887. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2888. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2889. _content = $$("div", {
  2890. className: "U_MD_D_KO",
  2891. "onmousedown": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_siesStudentDeskIconInfo[i]]),
  2895. "onclick": U.UF.C.closure(function (obj) {
  2896. //防止拖动图标即打开了桌面应用
  2897. U.MD.D.click(this, obj);
  2898. }, [_siesStudentDeskIconInfo[i]])
  2899. }, _frag); //
  2900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2903. }
  2904. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2905. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2906. _content = $$("div", {
  2907. className: "U_MD_D_KO",
  2908. "onmousedown": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_guzmsStudentDeskIconInfo[i]]),
  2912. "onclick": U.UF.C.closure(function (obj) {
  2913. //防止拖动图标即打开了桌面应用
  2914. U.MD.D.click(this, obj);
  2915. }, [_guzmsStudentDeskIconInfo[i]])
  2916. }, _frag); //
  2917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2920. }
  2921. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2922. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2923. _content = $$("div", {
  2924. className: "U_MD_D_KO",
  2925. "onmousedown": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_hkStudentDeskIconInfo[i]]),
  2929. "onclick": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_hkStudentDeskIconInfo[i]])
  2933. }, _frag); //
  2934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2937. }
  2938. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2939. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2940. _content = $$("div", {
  2941. className: "U_MD_D_KO",
  2942. "onmousedown": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_hkaceStudentDeskIconInfo[i]]),
  2946. "onclick": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_hkaceStudentDeskIconInfo[i]])
  2950. }, _frag); //
  2951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2954. }
  2955. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2956. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2957. _content = $$("div", {
  2958. className: "U_MD_D_KO",
  2959. "onmousedown": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2963. "onclick": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_BSDNSstudentDesktopIconInfo[i]])
  2967. }, _frag); //
  2968. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2969. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2970. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2971. }
  2972. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2973. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2974. _content = $$("div", {
  2975. className: "U_MD_D_KO",
  2976. "onmousedown": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_cocobizStudentDeskIconInfo[i]]),
  2980. "onclick": U.UF.C.closure(function (obj) {
  2981. //防止拖动图标即打开了桌面应用
  2982. U.MD.D.click(this, obj);
  2983. }, [_cocobizStudentDeskIconInfo[i]])
  2984. }, _frag); //
  2985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2988. }
  2989. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2990. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2991. _content = $$("div", {
  2992. className: "U_MD_D_KO",
  2993. "onmousedown": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2997. "onclick": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_xxzjkyStudentDeskIconInfo[i]])
  3001. }, _frag); //
  3002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3005. }
  3006. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3007. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3008. _content = $$("div", {
  3009. className: "U_MD_D_KO",
  3010. "onmousedown": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_studentDesktopIconInfo[i]]),
  3014. "onclick": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_studentDesktopIconInfo[i]])
  3018. }, _frag); //
  3019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3022. }
  3023. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3024. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3025. _content = $$("div", {
  3026. className: "U_MD_D_KO",
  3027. "onmousedown": U.UF.C.closure(function (obj) {
  3028. //防止拖动图标即打开了桌面应用
  3029. U.MD.D.click(this, obj);
  3030. }, [_tcStudentDeskIconInfo[i]]),
  3031. "onclick": U.UF.C.closure(function (obj) {
  3032. //防止拖动图标即打开了桌面应用
  3033. U.MD.D.click(this, obj);
  3034. }, [_tcStudentDeskIconInfo[i]])
  3035. }, _frag); //
  3036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3039. }
  3040. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3041. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3042. _content = $$("div", {
  3043. className: "U_MD_D_KO",
  3044. "onmousedown": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_szscStudentDeskIconInfo[i]]),
  3048. "onclick": U.UF.C.closure(function (obj) {
  3049. //防止拖动图标即打开了桌面应用
  3050. U.MD.D.click(this, obj);
  3051. }, [_szscStudentDeskIconInfo[i]])
  3052. }, _frag); //
  3053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3056. }
  3057. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3058. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3059. _content = $$("div", {
  3060. className: "U_MD_D_KO",
  3061. "onmousedown": U.UF.C.closure(function (obj) {
  3062. //防止拖动图标即打开了桌面应用
  3063. U.MD.D.click(this, obj);
  3064. }, [_studentDesktopIconInfo3[i]]),
  3065. "onclick": U.UF.C.closure(function (obj) {
  3066. //防止拖动图标即打开了桌面应用
  3067. U.MD.D.click(this, obj);
  3068. }, [_studentDesktopIconInfo3[i]])
  3069. }, _frag); //
  3070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3073. }
  3074. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  3075. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3076. _content = $$("div", {
  3077. className: "U_MD_D_KO",
  3078. "onmousedown": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_studentDesktopIconInfo2[i]]),
  3082. "onclick": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_studentDesktopIconInfo2[i]])
  3086. }, _frag); //
  3087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3090. }
  3091. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3092. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3093. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3094. continue
  3095. }
  3096. _content = $$("div", {
  3097. className: "U_MD_D_KO",
  3098. "onmousedown": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_wanketeacherDesktopIconInfo[i]]),
  3102. "onclick": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_wanketeacherDesktopIconInfo[i]])
  3106. }, _frag); //
  3107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3110. }
  3111. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3112. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3113. _content = $$("div", {
  3114. className: "U_MD_D_KO",
  3115. "onmousedown": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_wankeAdminDesktopIconInfo[i]]),
  3119. "onclick": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_wankeAdminDesktopIconInfo[i]])
  3123. }, _frag); //
  3124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3127. }
  3128. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3129. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3130. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3131. continue
  3132. }
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_scnuaiTeacherDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3149. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3150. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3151. continue
  3152. }
  3153. _content = $$("div", {
  3154. className: "U_MD_D_KO",
  3155. "onmousedown": U.UF.C.closure(function (obj) {
  3156. //防止拖动图标即打开了桌面应用
  3157. U.MD.D.click(this, obj);
  3158. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3159. "onclick": U.UF.C.closure(function (obj) {
  3160. //防止拖动图标即打开了桌面应用
  3161. U.MD.D.click(this, obj);
  3162. }, [_BSDNSteacherDesktopIconInfo[i]])
  3163. }, _frag); //
  3164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3167. }
  3168. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3169. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3170. _content = $$("div", {
  3171. className: "U_MD_D_KO",
  3172. "onmousedown": U.UF.C.closure(function (obj) {
  3173. //防止拖动图标即打开了桌面应用
  3174. U.MD.D.click(this, obj);
  3175. }, [_scnuaiAdminDeskIconInfo[i]]),
  3176. "onclick": U.UF.C.closure(function (obj) {
  3177. //防止拖动图标即打开了桌面应用
  3178. U.MD.D.click(this, obj);
  3179. }, [_scnuaiAdminDeskIconInfo[i]])
  3180. }, _frag); //
  3181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3184. }
  3185. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3186. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3187. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3188. continue
  3189. }
  3190. _content = $$("div", {
  3191. className: "U_MD_D_KO",
  3192. "onmousedown": U.UF.C.closure(function (obj) {
  3193. //防止拖动图标即打开了桌面应用
  3194. U.MD.D.click(this, obj);
  3195. }, [_jccssylTeacherDeskIconInfo[i]]),
  3196. "onclick": U.UF.C.closure(function (obj) {
  3197. //防止拖动图标即打开了桌面应用
  3198. U.MD.D.click(this, obj);
  3199. }, [_jccssylTeacherDeskIconInfo[i]])
  3200. }, _frag); //
  3201. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3202. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3203. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3204. }
  3205. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3206. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3207. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3208. continue
  3209. }
  3210. _content = $$("div", {
  3211. className: "U_MD_D_KO",
  3212. "onmousedown": U.UF.C.closure(function (obj) {
  3213. //防止拖动图标即打开了桌面应用
  3214. U.MD.D.click(this, obj);
  3215. }, [_caleTeacherDeskIconInfo[i]]),
  3216. "onclick": U.UF.C.closure(function (obj) {
  3217. //防止拖动图标即打开了桌面应用
  3218. U.MD.D.click(this, obj);
  3219. }, [_caleTeacherDeskIconInfo[i]])
  3220. }, _frag); //
  3221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3224. }
  3225. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3226. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_tpcOrganizerDeskIconInfo[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_tpcOrganizerDeskIconInfo[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3241. }
  3242. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3243. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3244. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3245. continue
  3246. }
  3247. _content = $$("div", {
  3248. className: "U_MD_D_KO",
  3249. "onmousedown": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_tpcTeacherDeskIconInfo[i]]),
  3253. "onclick": U.UF.C.closure(function (obj) {
  3254. //防止拖动图标即打开了桌面应用
  3255. U.MD.D.click(this, obj);
  3256. }, [_tpcTeacherDeskIconInfo[i]])
  3257. }, _frag); //
  3258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3261. }
  3262. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3263. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3264. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3265. continue
  3266. }
  3267. _content = $$("div", {
  3268. className: "U_MD_D_KO",
  3269. "onmousedown": U.UF.C.closure(function (obj) {
  3270. //防止拖动图标即打开了桌面应用
  3271. U.MD.D.click(this, obj);
  3272. }, [_teacherDesktopIconInfo2[i]]),
  3273. "onclick": U.UF.C.closure(function (obj) {
  3274. //防止拖动图标即打开了桌面应用
  3275. U.MD.D.click(this, obj);
  3276. }, [_teacherDesktopIconInfo2[i]])
  3277. }, _frag); //
  3278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3281. }
  3282. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3283. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3284. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3285. continue
  3286. }
  3287. _content = $$("div", {
  3288. className: "U_MD_D_KO",
  3289. "onmousedown": U.UF.C.closure(function (obj) {
  3290. //防止拖动图标即打开了桌面应用
  3291. U.MD.D.click(this, obj);
  3292. }, [_thuioeTeacherDeskIconInfo[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖动图标即打开了桌面应用
  3295. U.MD.D.click(this, obj);
  3296. }, [_thuioeTeacherDeskIconInfo[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3303. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3304. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3305. continue
  3306. }
  3307. _content = $$("div", {
  3308. className: "U_MD_D_KO",
  3309. "onmousedown": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_lotechTeacherDeskIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_lotechTeacherDeskIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3321. }//
  3322. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3323. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3324. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3325. continue
  3326. }
  3327. _content = $$("div", {
  3328. className: "U_MD_D_KO",
  3329. "onmousedown": U.UF.C.closure(function (obj) {
  3330. //防止拖动图标即打开了桌面应用
  3331. U.MD.D.click(this, obj);
  3332. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3333. "onclick": U.UF.C.closure(function (obj) {
  3334. //防止拖动图标即打开了桌面应用
  3335. U.MD.D.click(this, obj);
  3336. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3337. }, _frag); //
  3338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3341. }
  3342. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3343. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3344. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3345. continue
  3346. }
  3347. _content = $$("div", {
  3348. className: "U_MD_D_KO",
  3349. "onmousedown": U.UF.C.closure(function (obj) {
  3350. //防止拖动图标即打开了桌面应用
  3351. U.MD.D.click(this, obj);
  3352. }, [_siesTeacherDeskIconInfo[i]]),
  3353. "onclick": U.UF.C.closure(function (obj) {
  3354. //防止拖动图标即打开了桌面应用
  3355. U.MD.D.click(this, obj);
  3356. }, [_siesTeacherDeskIconInfo[i]])
  3357. }, _frag); //
  3358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3361. }
  3362. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3363. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3364. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3365. continue
  3366. }
  3367. _content = $$("div", {
  3368. className: "U_MD_D_KO",
  3369. "onmousedown": U.UF.C.closure(function (obj) {
  3370. //防止拖动图标即打开了桌面应用
  3371. U.MD.D.click(this, obj);
  3372. }, [_guzmsTeacherDeskIconInfo[i]]),
  3373. "onclick": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_guzmsTeacherDeskIconInfo[i]])
  3377. }, _frag); //
  3378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3381. }
  3382. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3383. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3384. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3385. continue
  3386. }
  3387. _content = $$("div", {
  3388. className: "U_MD_D_KO",
  3389. "onmousedown": U.UF.C.closure(function (obj) {
  3390. //防止拖动图标即打开了桌面应用
  3391. U.MD.D.click(this, obj);
  3392. }, [_longhuaTeacherDeskIconInfo[i]]),
  3393. "onclick": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_longhuaTeacherDeskIconInfo[i]])
  3397. }, _frag); //
  3398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3401. }
  3402. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3403. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3404. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3405. continue
  3406. }
  3407. _content = $$("div", {
  3408. className: "U_MD_D_KO",
  3409. "onmousedown": U.UF.C.closure(function (obj) {
  3410. //防止拖动图标即打开了桌面应用
  3411. U.MD.D.click(this, obj);
  3412. }, [_ytyTeacherDeskIconInfo[i]]),
  3413. "onclick": U.UF.C.closure(function (obj) {
  3414. //防止拖动图标即打开了桌面应用
  3415. U.MD.D.click(this, obj);
  3416. }, [_ytyTeacherDeskIconInfo[i]])
  3417. }, _frag); //
  3418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3421. }
  3422. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3423. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3424. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3425. continue
  3426. }
  3427. _content = $$("div", {
  3428. className: "U_MD_D_KO",
  3429. "onmousedown": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3433. "onclick": U.UF.C.closure(function (obj) {
  3434. //防止拖动图标即打开了桌面应用
  3435. U.MD.D.click(this, obj);
  3436. }, [_yunhaiTeacherDeskIconInfo[i]])
  3437. }, _frag); //
  3438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3441. } //_hkStudentDeskIconInfo
  3442. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3443. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3444. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3445. continue
  3446. }
  3447. _content = $$("div", {
  3448. className: "U_MD_D_KO",
  3449. "onmousedown": U.UF.C.closure(function (obj) {
  3450. //防止拖动图标即打开了桌面应用
  3451. U.MD.D.click(this, obj);
  3452. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3453. "onclick": U.UF.C.closure(function (obj) {
  3454. //防止拖动图标即打开了桌面应用
  3455. U.MD.D.click(this, obj);
  3456. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3457. }, _frag); //
  3458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3461. }
  3462. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3463. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3464. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3465. continue
  3466. }
  3467. _content = $$("div", {
  3468. className: "U_MD_D_KO",
  3469. "onmousedown": U.UF.C.closure(function (obj) {
  3470. //防止拖动图标即打开了桌面应用
  3471. U.MD.D.click(this, obj);
  3472. }, [_ricohTeacherDeskIconInfo[i]]),
  3473. "onclick": U.UF.C.closure(function (obj) {
  3474. //防止拖动图标即打开了桌面应用
  3475. U.MD.D.click(this, obj);
  3476. }, [_ricohTeacherDeskIconInfo[i]])
  3477. }, _frag); //
  3478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3481. }
  3482. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3483. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3484. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3485. continue
  3486. }
  3487. _content = $$("div", {
  3488. className: "U_MD_D_KO",
  3489. "onmousedown": U.UF.C.closure(function (obj) {
  3490. //防止拖动图标即打开了桌面应用
  3491. U.MD.D.click(this, obj);
  3492. }, [_hkTeacherDeskIconInfo[i]]),
  3493. "onclick": U.UF.C.closure(function (obj) {
  3494. //防止拖动图标即打开了桌面应用
  3495. U.MD.D.click(this, obj);
  3496. }, [_hkTeacherDeskIconInfo[i]])
  3497. }, _frag); //
  3498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3501. }
  3502. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3503. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3504. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3505. continue
  3506. }
  3507. _content = $$("div", {
  3508. className: "U_MD_D_KO",
  3509. "onmousedown": U.UF.C.closure(function (obj) {
  3510. //防止拖动图标即打开了桌面应用
  3511. U.MD.D.click(this, obj);
  3512. }, [_hkaceTeacherDeskIconInfo[i]]),
  3513. "onclick": U.UF.C.closure(function (obj) {
  3514. //防止拖动图标即打开了桌面应用
  3515. U.MD.D.click(this, obj);
  3516. }, [_hkaceTeacherDeskIconInfo[i]])
  3517. }, _frag); //
  3518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3521. }
  3522. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3523. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3524. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3525. continue
  3526. }
  3527. _content = $$("div", {
  3528. className: "U_MD_D_KO",
  3529. "onmousedown": U.UF.C.closure(function (obj) {
  3530. //防止拖动图标即打开了桌面应用
  3531. U.MD.D.click(this, obj);
  3532. }, [_cocobizTeacherDeskIconInfo[i]]),
  3533. "onclick": U.UF.C.closure(function (obj) {
  3534. //防止拖动图标即打开了桌面应用
  3535. U.MD.D.click(this, obj);
  3536. }, [_cocobizTeacherDeskIconInfo[i]])
  3537. }, _frag); //
  3538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3541. }
  3542. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3543. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3544. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3545. continue
  3546. }
  3547. _content = $$("div", {
  3548. className: "U_MD_D_KO",
  3549. "onmousedown": U.UF.C.closure(function (obj) {
  3550. //防止拖动图标即打开了桌面应用
  3551. U.MD.D.click(this, obj);
  3552. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3553. "onclick": U.UF.C.closure(function (obj) {
  3554. //防止拖动图标即打开了桌面应用
  3555. U.MD.D.click(this, obj);
  3556. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3557. }, _frag); //
  3558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3561. }
  3562. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3563. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3564. _content = $$("div", {
  3565. className: "U_MD_D_KO",
  3566. "onmousedown": U.UF.C.closure(function (obj) {
  3567. //防止拖动图标即打开了桌面应用
  3568. U.MD.D.click(this, obj);
  3569. }, [_gdjgAdminDeskIconInfo[i]]),
  3570. "onclick": U.UF.C.closure(function (obj) {
  3571. //防止拖动图标即打开了桌面应用
  3572. U.MD.D.click(this, obj);
  3573. }, [_gdjgAdminDeskIconInfo[i]])
  3574. }, _frag); //
  3575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3578. }
  3579. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3580. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3581. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3582. continue
  3583. }
  3584. _content = $$("div", {
  3585. className: "U_MD_D_KO",
  3586. "onmousedown": U.UF.C.closure(function (obj) {
  3587. //防止拖动图标即打开了桌面应用
  3588. U.MD.D.click(this, obj);
  3589. }, [_gdjgTeacherDeskIconInfo[i]]),
  3590. "onclick": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_gdjgTeacherDeskIconInfo[i]])
  3594. }, _frag); //
  3595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3598. }
  3599. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3600. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3601. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3602. continue
  3603. }
  3604. _content = $$("div", {
  3605. className: "U_MD_D_KO",
  3606. "onmousedown": U.UF.C.closure(function (obj) {
  3607. //防止拖动图标即打开了桌面应用
  3608. U.MD.D.click(this, obj);
  3609. }, [_szherTeacherDeskIconInfo[i]]),
  3610. "onclick": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_szherTeacherDeskIconInfo[i]])
  3614. }, _frag); //
  3615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3618. }
  3619. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3620. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3621. _content = $$("div", {
  3622. className: "U_MD_D_KO",
  3623. "onmousedown": U.UF.C.closure(function (obj) {
  3624. //防止拖动图标即打开了桌面应用
  3625. U.MD.D.click(this, obj);
  3626. }, [_heyuannAdminDeskIconInfo[i]]),
  3627. "onclick": U.UF.C.closure(function (obj) {
  3628. //防止拖动图标即打开了桌面应用
  3629. U.MD.D.click(this, obj);
  3630. }, [_heyuannAdminDeskIconInfo[i]])
  3631. }, _frag); //
  3632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3635. }
  3636. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3637. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3638. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3639. continue
  3640. }
  3641. _content = $$("div", {
  3642. className: "U_MD_D_KO",
  3643. "onmousedown": U.UF.C.closure(function (obj) {
  3644. //防止拖动图标即打开了桌面应用
  3645. U.MD.D.click(this, obj);
  3646. }, [_heyuanTeacherDeskIconInfo[i]]),
  3647. "onclick": U.UF.C.closure(function (obj) {
  3648. //防止拖动图标即打开了桌面应用
  3649. U.MD.D.click(this, obj);
  3650. }, [_heyuanTeacherDeskIconInfo[i]])
  3651. }, _frag); //
  3652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3655. } //
  3656. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3657. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3658. _content = $$("div", {
  3659. className: "U_MD_D_KO",
  3660. "onmousedown": U.UF.C.closure(function (obj) {
  3661. //防止拖动图标即打开了桌面应用
  3662. U.MD.D.click(this, obj);
  3663. }, [_dseiAdminDeskIconInfo[i]]),
  3664. "onclick": U.UF.C.closure(function (obj) {
  3665. //防止拖动图标即打开了桌面应用
  3666. U.MD.D.click(this, obj);
  3667. }, [_dseiAdminDeskIconInfo[i]])
  3668. }, _frag); //
  3669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3672. }
  3673. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3674. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3675. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3676. continue
  3677. }
  3678. _content = $$("div", {
  3679. className: "U_MD_D_KO",
  3680. "onmousedown": U.UF.C.closure(function (obj) {
  3681. //防止拖动图标即打开了桌面应用
  3682. U.MD.D.click(this, obj);
  3683. }, [_dseiTeacherDeskIconInfo[i]]),
  3684. "onclick": U.UF.C.closure(function (obj) {
  3685. //防止拖动图标即打开了桌面应用
  3686. U.MD.D.click(this, obj);
  3687. }, [_dseiTeacherDeskIconInfo[i]])
  3688. }, _frag); //
  3689. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3690. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3691. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3692. } //
  3693. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3694. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3695. _content = $$("div", {
  3696. className: "U_MD_D_KO",
  3697. "onmousedown": U.UF.C.closure(function (obj) {
  3698. //防止拖动图标即打开了桌面应用
  3699. U.MD.D.click(this, obj);
  3700. }, [_chjyjAdminDeskIconInfo[i]]),
  3701. "onclick": U.UF.C.closure(function (obj) {
  3702. //防止拖动图标即打开了桌面应用
  3703. U.MD.D.click(this, obj);
  3704. }, [_chjyjAdminDeskIconInfo[i]])
  3705. }, _frag); //
  3706. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3707. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3708. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3709. }//
  3710. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3711. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3712. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3713. continue
  3714. }
  3715. _content = $$("div", {
  3716. className: "U_MD_D_KO",
  3717. "onmousedown": U.UF.C.closure(function (obj) {
  3718. //防止拖动图标即打开了桌面应用
  3719. U.MD.D.click(this, obj);
  3720. }, [_chjyjTeacherDeskIconInfo[i]]),
  3721. "onclick": U.UF.C.closure(function (obj) {
  3722. //防止拖动图标即打开了桌面应用
  3723. U.MD.D.click(this, obj);
  3724. }, [_chjyjTeacherDeskIconInfo[i]])
  3725. }, _frag); //
  3726. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3727. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3728. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3729. }
  3730. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3731. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3732. _content = $$("div", {
  3733. className: "U_MD_D_KO",
  3734. "onmousedown": U.UF.C.closure(function (obj) {
  3735. //防止拖动图标即打开了桌面应用
  3736. U.MD.D.click(this, obj);
  3737. }, [_szjkyAdminDeskIconInfo[i]]),
  3738. "onclick": U.UF.C.closure(function (obj) {
  3739. //防止拖动图标即打开了桌面应用
  3740. U.MD.D.click(this, obj);
  3741. }, [_szjkyAdminDeskIconInfo[i]])
  3742. }, _frag); //
  3743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3746. }//
  3747. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3748. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3749. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3750. continue
  3751. }
  3752. _content = $$("div", {
  3753. className: "U_MD_D_KO",
  3754. "onmousedown": U.UF.C.closure(function (obj) {
  3755. //防止拖动图标即打开了桌面应用
  3756. U.MD.D.click(this, obj);
  3757. }, [_szjkyTeacherDeskIconInfo[i]]),
  3758. "onclick": U.UF.C.closure(function (obj) {
  3759. //防止拖动图标即打开了桌面应用
  3760. U.MD.D.click(this, obj);
  3761. }, [_szjkyTeacherDeskIconInfo[i]])
  3762. }, _frag); //
  3763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3766. }
  3767. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3768. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3769. _content = $$("div", {
  3770. className: "U_MD_D_KO",
  3771. "onmousedown": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_x020201AdminDeskIconInfo[i]]),
  3775. "onclick": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_x020201AdminDeskIconInfo[i]])
  3779. }, _frag); //
  3780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3783. }//
  3784. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3785. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3786. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3787. continue
  3788. }
  3789. _content = $$("div", {
  3790. className: "U_MD_D_KO",
  3791. "onmousedown": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_x020201TeacherDeskIconInfo[i]]),
  3795. "onclick": U.UF.C.closure(function (obj) {
  3796. //防止拖动图标即打开了桌面应用
  3797. U.MD.D.click(this, obj);
  3798. }, [_x020201TeacherDeskIconInfo[i]])
  3799. }, _frag); //
  3800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3803. }
  3804. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3805. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3806. _content = $$("div", {
  3807. className: "U_MD_D_KO",
  3808. "onmousedown": U.UF.C.closure(function (obj) {
  3809. //防止拖动图标即打开了桌面应用
  3810. U.MD.D.click(this, obj);
  3811. }, [_SCNUETAdminDeskIconInfo[i]]),
  3812. "onclick": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_SCNUETAdminDeskIconInfo[i]])
  3816. }, _frag); //
  3817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3820. }//
  3821. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3822. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3823. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3824. continue
  3825. }
  3826. _content = $$("div", {
  3827. className: "U_MD_D_KO",
  3828. "onmousedown": U.UF.C.closure(function (obj) {
  3829. //防止拖动图标即打开了桌面应用
  3830. U.MD.D.click(this, obj);
  3831. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3832. "onclick": U.UF.C.closure(function (obj) {
  3833. //防止拖动图标即打开了桌面应用
  3834. U.MD.D.click(this, obj);
  3835. }, [_SCNUETTeacherDeskIconInfo[i]])
  3836. }, _frag); //
  3837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3840. }
  3841. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3842. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3843. _content = $$("div", {
  3844. className: "U_MD_D_KO",
  3845. "onmousedown": U.UF.C.closure(function (obj) {
  3846. //防止拖动图标即打开了桌面应用
  3847. U.MD.D.click(this, obj);
  3848. }, [_futianAdminDeskIconInfo[i]]),
  3849. "onclick": U.UF.C.closure(function (obj) {
  3850. //防止拖动图标即打开了桌面应用
  3851. U.MD.D.click(this, obj);
  3852. }, [_futianAdminDeskIconInfo[i]])
  3853. }, _frag); //
  3854. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3855. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3856. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3857. }
  3858. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3859. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3860. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3861. continue
  3862. }
  3863. _content = $$("div", {
  3864. className: "U_MD_D_KO",
  3865. "onmousedown": U.UF.C.closure(function (obj) {
  3866. //防止拖动图标即打开了桌面应用
  3867. U.MD.D.click(this, obj);
  3868. }, [_futianTeacherDeskIconInfo[i]]),
  3869. "onclick": U.UF.C.closure(function (obj) {
  3870. //防止拖动图标即打开了桌面应用
  3871. U.MD.D.click(this, obj);
  3872. }, [_futianTeacherDeskIconInfo[i]])
  3873. }, _frag); //
  3874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3877. }
  3878. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3879. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3880. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3881. continue
  3882. }
  3883. _content = $$("div", {
  3884. className: "U_MD_D_KO",
  3885. "onmousedown": U.UF.C.closure(function (obj) {
  3886. //防止拖动图标即打开了桌面应用
  3887. U.MD.D.click(this, obj);
  3888. }, [_MingdeTeacherDeskIcon[i]]),
  3889. "onclick": U.UF.C.closure(function (obj) {
  3890. //防止拖动图标即打开了桌面应用
  3891. U.MD.D.click(this, obj);
  3892. }, [_MingdeTeacherDeskIcon[i]])
  3893. }, _frag); //
  3894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3897. }
  3898. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3899. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3900. _content = $$("div", {
  3901. className: "U_MD_D_KO",
  3902. "onmousedown": U.UF.C.closure(function (obj) {
  3903. //防止拖动图标即打开了桌面应用
  3904. U.MD.D.click(this, obj);
  3905. }, [_lhsAdminDesktopIconInfo[i]]),
  3906. "onclick": U.UF.C.closure(function (obj) {
  3907. //防止拖动图标即打开了桌面应用
  3908. U.MD.D.click(this, obj);
  3909. }, [_lhsAdminDesktopIconInfo[i]])
  3910. }, _frag); //
  3911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3914. }
  3915. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3916. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3917. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3918. continue
  3919. }
  3920. _content = $$("div", {
  3921. className: "U_MD_D_KO",
  3922. "onmousedown": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_lhsteacherDesktopIconInfo[i]]),
  3926. "onclick": U.UF.C.closure(function (obj) {
  3927. //防止拖动图标即打开了桌面应用
  3928. U.MD.D.click(this, obj);
  3929. }, [_lhsteacherDesktopIconInfo[i]])
  3930. }, _frag); //
  3931. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3932. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3933. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3934. }
  3935. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3936. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3937. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3938. continue
  3939. }
  3940. _content = $$("div", {
  3941. className: "U_MD_D_KO",
  3942. "onmousedown": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3946. "onclick": U.UF.C.closure(function (obj) {
  3947. //防止拖动图标即打开了桌面应用
  3948. U.MD.D.click(this, obj);
  3949. }, [_zhoujiateacherDesktopIconInfo[i]])
  3950. }, _frag); //
  3951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3954. }
  3955. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3956. for (i = 0; i < _hanDeskIcon.length; i++) {
  3957. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3958. continue
  3959. }
  3960. _content = $$("div", {
  3961. className: "U_MD_D_KO",
  3962. "onmousedown": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_hanDeskIcon[i]]),
  3966. "onclick": U.UF.C.closure(function (obj) {
  3967. //防止拖动图标即打开了桌面应用
  3968. U.MD.D.click(this, obj);
  3969. }, [_hanDeskIcon[i]])
  3970. }, _frag); //
  3971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3974. }
  3975. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3976. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3977. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3978. continue
  3979. }
  3980. _content = $$("div", {
  3981. className: "U_MD_D_KO",
  3982. "onmousedown": U.UF.C.closure(function (obj) {
  3983. //防止拖动图标即打开了桌面应用
  3984. U.MD.D.click(this, obj);
  3985. }, [_orgStemDeskIcon[i]]),
  3986. "onclick": U.UF.C.closure(function (obj) {
  3987. //防止拖动图标即打开了桌面应用
  3988. U.MD.D.click(this, obj);
  3989. }, [_orgStemDeskIcon[i]])
  3990. }, _frag); //
  3991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3994. }
  3995. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3996. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3997. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3998. continue
  3999. }
  4000. _content = $$("div", {
  4001. className: "U_MD_D_KO",
  4002. "onmousedown": U.UF.C.closure(function (obj) {
  4003. //防止拖动图标即打开了桌面应用
  4004. U.MD.D.click(this, obj);
  4005. }, [_szulsDeskIcon[i]]),
  4006. "onclick": U.UF.C.closure(function (obj) {
  4007. //防止拖动图标即打开了桌面应用
  4008. U.MD.D.click(this, obj);
  4009. }, [_szulsDeskIcon[i]])
  4010. }, _frag); //
  4011. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4012. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4013. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4014. }
  4015. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4016. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4017. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4018. continue
  4019. }
  4020. _content = $$("div", {
  4021. className: "U_MD_D_KO",
  4022. "onmousedown": U.UF.C.closure(function (obj) {
  4023. //防止拖动图标即打开了桌面应用
  4024. U.MD.D.click(this, obj);
  4025. }, [_orgDesktopIconInfo[i]]),
  4026. "onclick": U.UF.C.closure(function (obj) {
  4027. //防止拖动图标即打开了桌面应用
  4028. U.MD.D.click(this, obj);
  4029. }, [_orgDesktopIconInfo[i]])
  4030. }, _frag); //
  4031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4034. }
  4035. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4036. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4037. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4038. continue
  4039. }
  4040. _content = $$("div", {
  4041. className: "U_MD_D_KO",
  4042. "onmousedown": U.UF.C.closure(function (obj) {
  4043. //防止拖动图标即打开了桌面应用
  4044. U.MD.D.click(this, obj);
  4045. }, [_schoolDesktopIconInfo[i]]),
  4046. "onclick": U.UF.C.closure(function (obj) {
  4047. //防止拖动图标即打开了桌面应用
  4048. U.MD.D.click(this, obj);
  4049. }, [_schoolDesktopIconInfo[i]])
  4050. }, _frag); //
  4051. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4052. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4053. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4054. }
  4055. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4056. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4057. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4058. continue
  4059. }
  4060. _content = $$("div", {
  4061. className: "U_MD_D_KO",
  4062. "onmousedown": U.UF.C.closure(function (obj) {
  4063. //防止拖动图标即打开了桌面应用
  4064. U.MD.D.click(this, obj);
  4065. }, [_GMteacherDesktopIconInfo[i]]),
  4066. "onclick": U.UF.C.closure(function (obj) {
  4067. //防止拖动图标即打开了桌面应用
  4068. U.MD.D.click(this, obj);
  4069. }, [_GMteacherDesktopIconInfo[i]])
  4070. }, _frag); //
  4071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4074. }
  4075. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4076. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4077. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4078. continue
  4079. }
  4080. _content = $$("div", {
  4081. className: "U_MD_D_KO",
  4082. "onmousedown": U.UF.C.closure(function (obj) {
  4083. //防止拖动图标即打开了桌面应用
  4084. U.MD.D.click(this, obj);
  4085. }, [_SONGteacherDesktopIconInfo[i]]),
  4086. "onclick": U.UF.C.closure(function (obj) {
  4087. //防止拖动图标即打开了桌面应用
  4088. U.MD.D.click(this, obj);
  4089. }, [_SONGteacherDesktopIconInfo[i]])
  4090. }, _frag); //
  4091. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4092. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4093. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4094. }
  4095. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4096. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4097. _content = $$("div", {
  4098. className: "U_MD_D_KO",
  4099. "onmousedown": U.UF.C.closure(function (obj) {
  4100. //防止拖动图标即打开了桌面应用
  4101. U.MD.D.click(this, obj);
  4102. }, [_GMstudentDesktopIconInfo[i]]),
  4103. "onclick": U.UF.C.closure(function (obj) {
  4104. //防止拖动图标即打开了桌面应用
  4105. U.MD.D.click(this, obj);
  4106. }, [_GMstudentDesktopIconInfo[i]])
  4107. }, _frag); //
  4108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4111. }
  4112. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4113. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4114. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4115. continue
  4116. }
  4117. _content = $$("div", {
  4118. className: "U_MD_D_KO",
  4119. "onmousedown": U.UF.C.closure(function (obj) {
  4120. //防止拖动图标即打开了桌面应用
  4121. U.MD.D.click(this, obj);
  4122. }, [_tcTeacherDeskIconInfo[i]]),
  4123. "onclick": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_tcTeacherDeskIconInfo[i]])
  4127. }, _frag); //
  4128. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4129. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4130. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4131. }
  4132. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4133. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4134. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4135. continue
  4136. }
  4137. _content = $$("div", {
  4138. className: "U_MD_D_KO",
  4139. "onmousedown": U.UF.C.closure(function (obj) {
  4140. //防止拖动图标即打开了桌面应用
  4141. U.MD.D.click(this, obj);
  4142. }, [_tcOrganizerDeskIconInfo[i]]),
  4143. "onclick": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_tcOrganizerDeskIconInfo[i]])
  4147. }, _frag); //
  4148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4151. }
  4152. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4153. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4154. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4155. continue
  4156. }
  4157. _content = $$("div", {
  4158. className: "U_MD_D_KO",
  4159. "onmousedown": U.UF.C.closure(function (obj) {
  4160. //防止拖动图标即打开了桌面应用
  4161. U.MD.D.click(this, obj);
  4162. }, [_szscTeacherDeskIconInfo[i]]),
  4163. "onclick": U.UF.C.closure(function (obj) {
  4164. //防止拖动图标即打开了桌面应用
  4165. U.MD.D.click(this, obj);
  4166. }, [_szscTeacherDeskIconInfo[i]])
  4167. }, _frag); //
  4168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4171. }
  4172. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4173. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4174. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4175. continue
  4176. }
  4177. _content = $$("div", {
  4178. className: "U_MD_D_KO",
  4179. "onmousedown": U.UF.C.closure(function (obj) {
  4180. //防止拖动图标即打开了桌面应用
  4181. U.MD.D.click(this, obj);
  4182. }, [_szscOrganizerDeskIconInfo[i]]),
  4183. "onclick": U.UF.C.closure(function (obj) {
  4184. //防止拖动图标即打开了桌面应用
  4185. U.MD.D.click(this, obj);
  4186. }, [_szscOrganizerDeskIconInfo[i]])
  4187. }, _frag); //
  4188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4191. }
  4192. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4193. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4194. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4195. continue
  4196. }
  4197. _content = $$("div", {
  4198. className: "U_MD_D_KO",
  4199. "onmousedown": U.UF.C.closure(function (obj) {
  4200. //防止拖动图标即打开了桌面应用
  4201. U.MD.D.click(this, obj);
  4202. }, [_nsfxTeacherDeskIconInfo[i]]),
  4203. "onclick": U.UF.C.closure(function (obj) {
  4204. //防止拖动图标即打开了桌面应用
  4205. U.MD.D.click(this, obj);
  4206. }, [_nsfxTeacherDeskIconInfo[i]])
  4207. }, _frag); //
  4208. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4209. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4210. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4211. }
  4212. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4213. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4214. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4215. continue
  4216. }
  4217. _content = $$("div", {
  4218. className: "U_MD_D_KO",
  4219. "onmousedown": U.UF.C.closure(function (obj) {
  4220. //防止拖动图标即打开了桌面应用
  4221. U.MD.D.click(this, obj);
  4222. }, [_stiaTeacherDeskIconInfo[i]]),
  4223. "onclick": U.UF.C.closure(function (obj) {
  4224. //防止拖动图标即打开了桌面应用
  4225. U.MD.D.click(this, obj);
  4226. }, [_stiaTeacherDeskIconInfo[i]])
  4227. }, _frag); //
  4228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4231. }
  4232. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4233. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4234. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4235. continue
  4236. }
  4237. _content = $$("div", {
  4238. className: "U_MD_D_KO",
  4239. "onmousedown": U.UF.C.closure(function (obj) {
  4240. //防止拖动图标即打开了桌面应用
  4241. U.MD.D.click(this, obj);
  4242. }, [_szdjgTeacherDeskIconInfo[i]]),
  4243. "onclick": U.UF.C.closure(function (obj) {
  4244. //防止拖动图标即打开了桌面应用
  4245. U.MD.D.click(this, obj);
  4246. }, [_szdjgTeacherDeskIconInfo[i]])
  4247. }, _frag); //
  4248. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4249. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4250. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4251. }
  4252. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4253. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4254. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4255. continue
  4256. }
  4257. _content = $$("div", {
  4258. className: "U_MD_D_KO",
  4259. "onmousedown": U.UF.C.closure(function (obj) {
  4260. //防止拖动图标即打开了桌面应用
  4261. U.MD.D.click(this, obj);
  4262. }, [_x010607TeacherDeskIconInfo[i]]),
  4263. "onclick": U.UF.C.closure(function (obj) {
  4264. //防止拖动图标即打开了桌面应用
  4265. U.MD.D.click(this, obj);
  4266. }, [_x010607TeacherDeskIconInfo[i]])
  4267. }, _frag); //
  4268. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4269. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4270. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4271. }
  4272. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4273. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4274. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4275. continue
  4276. }
  4277. _content = $$("div", {
  4278. className: "U_MD_D_KO",
  4279. "onmousedown": U.UF.C.closure(function (obj) {
  4280. //防止拖动图标即打开了桌面应用
  4281. U.MD.D.click(this, obj);
  4282. }, [_xhlyTeacherDeskIconInfo[i]]),
  4283. "onclick": U.UF.C.closure(function (obj) {
  4284. //防止拖动图标即打开了桌面应用
  4285. U.MD.D.click(this, obj);
  4286. }, [_xhlyTeacherDeskIconInfo[i]])
  4287. }, _frag); //
  4288. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4289. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4290. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4291. }
  4292. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4293. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4294. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4295. continue
  4296. }
  4297. _content = $$("div", {
  4298. className: "U_MD_D_KO",
  4299. "onmousedown": U.UF.C.closure(function (obj) {
  4300. //防止拖动图标即打开了桌面应用
  4301. U.MD.D.click(this, obj);
  4302. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4303. "onclick": U.UF.C.closure(function (obj) {
  4304. //防止拖动图标即打开了桌面应用
  4305. U.MD.D.click(this, obj);
  4306. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4307. }, _frag); //
  4308. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4309. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4310. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4311. }
  4312. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4313. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4314. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4315. continue
  4316. }
  4317. _content = $$("div", {
  4318. className: "U_MD_D_KO",
  4319. "onmousedown": U.UF.C.closure(function (obj) {
  4320. //防止拖动图标即打开了桌面应用
  4321. U.MD.D.click(this, obj);
  4322. }, [_x010503TeacherDeskIconInfo[i]]),
  4323. "onclick": U.UF.C.closure(function (obj) {
  4324. //防止拖动图标即打开了桌面应用
  4325. U.MD.D.click(this, obj);
  4326. }, [_x010503TeacherDeskIconInfo[i]])
  4327. }, _frag); //
  4328. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4329. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4330. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4331. }
  4332. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4333. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4334. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4335. continue
  4336. }
  4337. _content = $$("div", {
  4338. className: "U_MD_D_KO",
  4339. "onmousedown": U.UF.C.closure(function (obj) {
  4340. //防止拖动图标即打开了桌面应用
  4341. U.MD.D.click(this, obj);
  4342. }, [_x010504TeacherDeskIconInfo[i]]),
  4343. "onclick": U.UF.C.closure(function (obj) {
  4344. //防止拖动图标即打开了桌面应用
  4345. U.MD.D.click(this, obj);
  4346. }, [_x010504TeacherDeskIconInfo[i]])
  4347. }, _frag); //
  4348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4351. }
  4352. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4353. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4354. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4355. continue
  4356. }
  4357. _content = $$("div", {
  4358. className: "U_MD_D_KO",
  4359. "onmousedown": U.UF.C.closure(function (obj) {
  4360. //防止拖动图标即打开了桌面应用
  4361. U.MD.D.click(this, obj);
  4362. }, [_x010505TeacherDeskIconInfo[i]]),
  4363. "onclick": U.UF.C.closure(function (obj) {
  4364. //防止拖动图标即打开了桌面应用
  4365. U.MD.D.click(this, obj);
  4366. }, [_x010505TeacherDeskIconInfo[i]])
  4367. }, _frag); //
  4368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4371. }
  4372. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4373. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4374. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4375. continue
  4376. }
  4377. _content = $$("div", {
  4378. className: "U_MD_D_KO",
  4379. "onmousedown": U.UF.C.closure(function (obj) {
  4380. //防止拖动图标即打开了桌面应用
  4381. U.MD.D.click(this, obj);
  4382. }, [_x010404TeacherDeskIconInfo[i]]),
  4383. "onclick": U.UF.C.closure(function (obj) {
  4384. //防止拖动图标即打开了桌面应用
  4385. U.MD.D.click(this, obj);
  4386. }, [_x010404TeacherDeskIconInfo[i]])
  4387. }, _frag); //
  4388. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4389. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4390. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4391. }
  4392. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4393. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4394. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4395. continue
  4396. }
  4397. _content = $$("div", {
  4398. className: "U_MD_D_KO",
  4399. "onmousedown": U.UF.C.closure(function (obj) {
  4400. //防止拖动图标即打开了桌面应用
  4401. U.MD.D.click(this, obj);
  4402. }, [_x010204TeacherDeskIconInfo[i]]),
  4403. "onclick": U.UF.C.closure(function (obj) {
  4404. //防止拖动图标即打开了桌面应用
  4405. U.MD.D.click(this, obj);
  4406. }, [_x010204TeacherDeskIconInfo[i]])
  4407. }, _frag); //
  4408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4411. }
  4412. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4413. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4414. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4415. continue
  4416. }
  4417. _content = $$("div", {
  4418. className: "U_MD_D_KO",
  4419. "onmousedown": U.UF.C.closure(function (obj) {
  4420. //防止拖动图标即打开了桌面应用
  4421. U.MD.D.click(this, obj);
  4422. }, [_x320101TeacherDeskIconInfo[i]]),
  4423. "onclick": U.UF.C.closure(function (obj) {
  4424. //防止拖动图标即打开了桌面应用
  4425. U.MD.D.click(this, obj);
  4426. }, [_x320101TeacherDeskIconInfo[i]])
  4427. }, _frag); //
  4428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4431. }
  4432. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4433. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4434. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4435. continue
  4436. }
  4437. _content = $$("div", {
  4438. className: "U_MD_D_KO",
  4439. "onmousedown": U.UF.C.closure(function (obj) {
  4440. //防止拖动图标即打开了桌面应用
  4441. U.MD.D.click(this, obj);
  4442. }, [_trailTeacherDeskIconInfo[i]]),
  4443. "onclick": U.UF.C.closure(function (obj) {
  4444. //防止拖动图标即打开了桌面应用
  4445. U.MD.D.click(this, obj);
  4446. }, [_trailTeacherDeskIconInfo[i]])
  4447. }, _frag); //
  4448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4451. }
  4452. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4453. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4454. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4455. continue
  4456. }
  4457. _content = $$("div", {
  4458. className: "U_MD_D_KO",
  4459. "onmousedown": U.UF.C.closure(function (obj) {
  4460. //防止拖动图标即打开了桌面应用
  4461. U.MD.D.click(this, obj);
  4462. }, [_trialTeacherDeskIconInfo[i]]),
  4463. "onclick": U.UF.C.closure(function (obj) {
  4464. //防止拖动图标即打开了桌面应用
  4465. U.MD.D.click(this, obj);
  4466. }, [_trialTeacherDeskIconInfo[i]])
  4467. }, _frag); //
  4468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4471. }
  4472. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4473. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4474. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4475. continue
  4476. }
  4477. _content = $$("div", {
  4478. className: "U_MD_D_KO",
  4479. "onmousedown": U.UF.C.closure(function (obj) {
  4480. //防止拖动图标即打开了桌面应用
  4481. U.MD.D.click(this, obj);
  4482. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4483. "onclick": U.UF.C.closure(function (obj) {
  4484. //防止拖动图标即打开了桌面应用
  4485. U.MD.D.click(this, obj);
  4486. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4487. }, _frag); //
  4488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4491. }
  4492. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4493. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4494. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4495. continue
  4496. }
  4497. _content = $$("div", {
  4498. className: "U_MD_D_KO",
  4499. "onmousedown": U.UF.C.closure(function (obj) {
  4500. //防止拖动图标即打开了桌面应用
  4501. U.MD.D.click(this, obj);
  4502. }, [_szsyTeacherDeskIconInfo[i]]),
  4503. "onclick": U.UF.C.closure(function (obj) {
  4504. //防止拖动图标即打开了桌面应用
  4505. U.MD.D.click(this, obj);
  4506. }, [_szsyTeacherDeskIconInfo[i]])
  4507. }, _frag); //
  4508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4511. }
  4512. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4513. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4514. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4515. continue
  4516. }
  4517. _content = $$("div", {
  4518. className: "U_MD_D_KO",
  4519. "onmousedown": U.UF.C.closure(function (obj) {
  4520. //防止拖动图标即打开了桌面应用
  4521. U.MD.D.click(this, obj);
  4522. }, [_x010608TeacherDeskIconInfo[i]]),
  4523. "onclick": U.UF.C.closure(function (obj) {
  4524. //防止拖动图标即打开了桌面应用
  4525. U.MD.D.click(this, obj);
  4526. }, [_x010608TeacherDeskIconInfo[i]])
  4527. }, _frag); //
  4528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4531. }
  4532. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4533. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4534. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4535. continue
  4536. }
  4537. _content = $$("div", {
  4538. className: "U_MD_D_KO",
  4539. "onmousedown": U.UF.C.closure(function (obj) {
  4540. //防止拖动图标即打开了桌面应用
  4541. U.MD.D.click(this, obj);
  4542. }, [_x010611TeacherDeskIconInfo[i]]),
  4543. "onclick": U.UF.C.closure(function (obj) {
  4544. //防止拖动图标即打开了桌面应用
  4545. U.MD.D.click(this, obj);
  4546. }, [_x010611TeacherDeskIconInfo[i]])
  4547. }, _frag); //
  4548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4551. }
  4552. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4553. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4554. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4555. continue
  4556. }
  4557. _content = $$("div", {
  4558. className: "U_MD_D_KO",
  4559. "onmousedown": U.UF.C.closure(function (obj) {
  4560. //防止拖动图标即打开了桌面应用
  4561. U.MD.D.click(this, obj);
  4562. }, [_x010612TeacherDeskIconInfo[i]]),
  4563. "onclick": U.UF.C.closure(function (obj) {
  4564. //防止拖动图标即打开了桌面应用
  4565. U.MD.D.click(this, obj);
  4566. }, [_x010612TeacherDeskIconInfo[i]])
  4567. }, _frag); //
  4568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4571. }
  4572. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4573. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4574. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4575. continue
  4576. }
  4577. _content = $$("div", {
  4578. className: "U_MD_D_KO",
  4579. "onmousedown": U.UF.C.closure(function (obj) {
  4580. //防止拖动图标即打开了桌面应用
  4581. U.MD.D.click(this, obj);
  4582. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4583. "onclick": U.UF.C.closure(function (obj) {
  4584. //防止拖动图标即打开了桌面应用
  4585. U.MD.D.click(this, obj);
  4586. }, [_tianyuanTeacherDeskIconInfo[i]])
  4587. }, _frag); //
  4588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4591. }
  4592. } else {
  4593. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4594. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4595. continue
  4596. }
  4597. _content = $$("div", {
  4598. className: "U_MD_D_KO",
  4599. "onmousedown": U.UF.C.closure(function (obj) {
  4600. //防止拖动图标即打开了桌面应用
  4601. U.MD.D.click(this, obj);
  4602. }, [_teacherDesktopIconInfo[i]]),
  4603. "onclick": U.UF.C.closure(function (obj) {
  4604. //防止拖动图标即打开了桌面应用
  4605. U.MD.D.click(this, obj);
  4606. }, [_teacherDesktopIconInfo[i]])
  4607. }, _frag); //
  4608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4611. }
  4612. }
  4613. } else {
  4614. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4615. _content = $$("div", {
  4616. className: "U_MD_D_KO",
  4617. style: { 'width': '124px', 'height': '145px' },
  4618. "onmousedown": U.UF.C.closure(function (obj) {
  4619. //防止拖动图标即打开了桌面应用
  4620. U.MD.D.click(this, obj);
  4621. }, [_easyDesktopIconInfo[i]]),
  4622. "onclick": U.UF.C.closure(function (obj) {
  4623. //防止拖动图标即打开了桌面应用
  4624. U.MD.D.click(this, obj);
  4625. }, [_easyDesktopIconInfo[i]])
  4626. }, _frag); //
  4627. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4630. }
  4631. }
  4632. if (type == 1) {
  4633. //加载好后给图标定位
  4634. U.MD.D.iconPostion($(_frag).Child());
  4635. } else {
  4636. //加载好后给图标定位
  4637. U.MD.D.iconPostion2($(_frag).Child());
  4638. }
  4639. //把图标加载到页面
  4640. el.appendChild(_frag);
  4641. }
  4642. /**
  4643. * 显示任务栏
  4644. *
  4645. * @param {element} 桌面元素
  4646. */
  4647. U.MD.D.I.displayTaskbar = function (el) {
  4648. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4649. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4650. //任务栏位置变化
  4651. U.selectEl(el).css({ "bottom": "0px" });
  4652. //桌面位置变话
  4653. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4654. }
  4655. }
  4656. //#region 桌面图标拖动逻辑
  4657. /**
  4658. * 桌面排列图标
  4659. *
  4660. * @param {element} 桌面元素
  4661. * @param {object} 上下相距的距离
  4662. * @param {object} 左右相距的距离
  4663. * @return {object} 命名空间
  4664. */
  4665. U.MD.D.iconPostion = function (childs, top, left) {
  4666. var i; //用于循环处理
  4667. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4668. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4669. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4670. for (i = 0; i < childs.length; i++) {
  4671. //如果竖排top超过了范围处理
  4672. if (top + 95 > US.height - 10) {
  4673. //left超过了页面范围处理,则向上重叠打印处理
  4674. if ((left + 180) > US.width) {
  4675. top -= 110;
  4676. left -= 90;
  4677. }
  4678. //没有超过范围,那么left+90添加到下一个竖排打印
  4679. else {
  4680. left += 90;
  4681. top = 15;
  4682. };
  4683. }
  4684. //给图标的位置赋值
  4685. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4686. if (i < childs.length - 1) {
  4687. //页面图标每次向下加95
  4688. top += 95;
  4689. }
  4690. }
  4691. //返回最后调用的图标的位置
  4692. return [top, left];
  4693. }
  4694. /**
  4695. * 桌面排列图标
  4696. *
  4697. * @param {element} 桌面元素
  4698. * @param {object} 上下相距的距离
  4699. * @param {object} 左右相距的距离
  4700. * @return {object} 命名空间
  4701. */
  4702. U.MD.D.iconPostion2 = function (childs, top, left) {
  4703. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4704. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4705. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4706. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4707. for (i = 0; i < childs.length; i++) {
  4708. //如果竖排top超过了范围处理
  4709. if (left + 150 > US.width - 10) {
  4710. //left超过了页面范围处理,则向上重叠打印处理
  4711. if ((top + 180) > US.Height) {
  4712. top -= 150;
  4713. left -= 150;
  4714. }
  4715. //没有超过范围,那么left+90添加到下一个竖排打印
  4716. else {
  4717. top += 150;
  4718. left = ol;
  4719. };
  4720. }
  4721. //给图标的位置赋值
  4722. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4723. if (i < childs.length - 1) {
  4724. //页面图标每次向下加95
  4725. left += 150;
  4726. }
  4727. }
  4728. //返回最后调用的图标的位置
  4729. return [top, left];
  4730. }
  4731. /**
  4732. * 桌面点击事件逻辑
  4733. *
  4734. * @param {element} 桌面元素
  4735. * @param {object} 上下相距的距离
  4736. * @param {object} 左右相距的距离
  4737. * @return {object} 命名空间
  4738. */
  4739. U.MD.D.click = function (el, obj) {
  4740. var _buttonnumber = event.button; //点击的按钮的事件值
  4741. var _userinfo = US.userInfo;
  4742. U.UF.EV.stopBubble(); //阻止向上冒泡
  4743. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4744. if (_buttonnumber < 2) {
  4745. //如果是click事件的处理
  4746. if (event.type == "click") {
  4747. //如果元素在mousemove事件中没有移动则出发click事件
  4748. if (!U.MD.D.I.IsDrag) {
  4749. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4750. U.alert("请先登录您的账号!");
  4751. setTimeout(() => {
  4752. U.MD.U.L.login();
  4753. }, 2000);
  4754. } else {
  4755. //打开应用处理
  4756. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4757. }
  4758. }
  4759. }
  4760. //如果是mouse事件的处理
  4761. else {
  4762. if (US.Config.type == '1') {
  4763. //拖动处理,添加拖动和拖动结束事件
  4764. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4765. }
  4766. }
  4767. U.MD.D.I.IsDrag = false;
  4768. }
  4769. }
  4770. /**
  4771. * 拖动的处理
  4772. *
  4773. */
  4774. U.MD.D.iconMove = function () {
  4775. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4776. U.MD.D.I.IsDrag = true;
  4777. }
  4778. /**
  4779. * 拖动结束后,这里是定位处理,以网状的形式定位
  4780. *
  4781. * @param {element} 拖动的元素
  4782. * @return {object} 命名空间
  4783. */
  4784. U.MD.D.iconUp = function (el) {
  4785. var _top = 15,
  4786. _left = 20,
  4787. _margin,
  4788. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4789. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4790. if (_positioninfo["OT"] > 15) {
  4791. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4792. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4793. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4794. }
  4795. if (_positioninfo["OL"] > 20) {
  4796. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4797. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4798. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4799. }
  4800. //while循环判断么一个重叠的元素
  4801. do {
  4802. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4803. _top = _positioninfo[0] + 95; //得到定位后的top
  4804. _left = _positioninfo[1]; //得到定位后的left
  4805. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4806. }
  4807. /**
  4808. * 判断拖动后图标是否重叠
  4809. *
  4810. * @param {element} 拖动的元素
  4811. * @param {element} 桌面所有的元素
  4812. * @param {array} 拖动元素的位置
  4813. ----------[0] 上 top
  4814. ----------[1] 左 left
  4815. * @return {object} 命名空间
  4816. */
  4817. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4818. //循环所有的图标
  4819. for (var i = 0; i < childs.length; i++) {
  4820. //判断有没有和该图标诶子重叠的元素
  4821. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4822. return childs[i]; //如果有返回
  4823. }
  4824. }
  4825. }
  4826. //#endregion
  4827. //#endregion
  4828. //#region 桌面应用
  4829. /**
  4830. * 打开应用
  4831. *
  4832. * @param {string} 类型
  4833. -----------------Disk 网盘系统
  4834. -----------------PDisk 学习系统网盘
  4835. -----------------Poto 图片
  4836. -----------------Video 视频
  4837. -----------------Music 音乐
  4838. -----------------Word word
  4839. -----------------Excel excel
  4840. -----------------Txt 记事本
  4841. -----------------PB 学习系统
  4842. -----------------Blog 朋友圈系统
  4843. -----------------FTP ftp系统
  4844. -----------------Group 好友群
  4845. -----------------SY 首页系统
  4846. -----------------Set 个人设置
  4847. -----------------XSet 系统设置
  4848. -----------------App 我们所有的app
  4849. -----------------BC c.1473.cn 平台
  4850. -----------------CWeb d.1473.cn 变成平台
  4851. -----------------其他的外联系统 我们统一用iframe打开
  4852. * @param {array} 类型
  4853. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4854. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4855. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4856. 如果第一个参数为其他,则无第二个参数
  4857. * @returns {array}
  4858. */
  4859. window.addEventListener('message', function (e) { // 监听 message 事件
  4860. // alert(e.data.type);
  4861. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4862. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4863. //3是展示全部阶段 2学生 1老师 4专家
  4864. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4865. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4866. //3是展示全部阶段 2学生 1老师 4专家
  4867. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4868. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4869. //3是展示全部阶段 2学生 1老师 4专家
  4870. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4871. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4872. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4873. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4874. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4875. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4876. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4877. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4878. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4879. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4880. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4881. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4882. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4883. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4884. //3是展示全部阶段 2学生 1老师 4专家
  4885. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4886. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4887. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4888. U.MD.D.I.selectUser();
  4889. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4890. var _formel = document.getElementById("study");
  4891. U.UF.F.windowZooming(_formel);
  4892. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4893. var _formel = document.getElementById("studyDetail");
  4894. U.UF.F.windowZooming(_formel);
  4895. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4896. var _formel = document.getElementById("studyDetail");
  4897. U.UF.F.windowZooming(_formel);
  4898. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4899. var _formel = document.getElementById("studentStudy");
  4900. U.UF.F.windowZooming(_formel);
  4901. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4902. // var _formel = document.getElementById("study");
  4903. //如果最大化了,那么就把他缩小
  4904. // if (_formel.ismaximize) {
  4905. // return;
  4906. // }
  4907. // U.UF.F.windowZooming(_formel);
  4908. // U.UF.F.topWindow(_formel);
  4909. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4910. // var _formel = document.getElementById("studyDetail");
  4911. //如果最大化了,那么就把他缩小
  4912. // if (_formel.ismaximize) {
  4913. // return;
  4914. // }
  4915. // U.UF.F.windowZooming(_formel);
  4916. // U.UF.F.topWindow(_formel);
  4917. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4918. // var _formel = document.getElementById("studentStudy");
  4919. // if (_formel.ismaximize) {
  4920. // return;
  4921. // }
  4922. // U.UF.F.windowZooming(_formel);
  4923. // U.UF.F.topWindow(_formel);
  4924. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4925. var _formel = document.getElementById("study");
  4926. // if (_formel.ismaximize) {
  4927. // return;
  4928. // }
  4929. // U.UF.F.windowZooming(_formel);
  4930. U.UF.F.topWindow(_formel);
  4931. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4932. var _formel = document.getElementById("studentIndex");
  4933. U.UF.F.windowZooming(_formel);
  4934. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4935. var _formel = document.getElementById("studyDetailS");
  4936. U.UF.F.windowZooming(_formel);
  4937. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4938. var _formel = document.getElementById("studioIndex");
  4939. U.UF.F.windowZooming(_formel);
  4940. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4941. var _formel = document.getElementById("studyDetailStudio");
  4942. U.UF.F.windowZooming(_formel);
  4943. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4944. var _formel = document.getElementById("studyDetailStudio");
  4945. U.UF.F.windowZooming(_formel);
  4946. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4947. var _formel = document.getElementById("studyDetailNT");
  4948. U.UF.F.windowZooming(_formel);
  4949. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4950. var _formel = document.getElementById("studyDetailS");
  4951. U.UF.F.windowZooming(_formel);
  4952. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4953. var _formel = document.getElementById("studyDetailS");
  4954. U.UF.F.topWindow(_formel);
  4955. } else if (e.data.tools && e.data.tools == "1") {
  4956. // U.MD.D.I.openApplication("whiteboard")
  4957. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4958. } else if (e.data.tools && e.data.tools == "2") {
  4959. U.MD.D.I.openApplication("note")
  4960. } else if (e.data.tools && e.data.tools == "3") {
  4961. // U.MD.D.I.openApplication("mind")
  4962. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4963. } else if (e.data.tools && e.data.tools == "4") {
  4964. U.MD.D.I.openApplication("investigation")
  4965. } else if (e.data.tools && e.data.tools == "6") {
  4966. // U.MD.D.I.openApplication("doc")
  4967. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4968. } else if (e.data.tools && e.data.tools == "7") {
  4969. // U.MD.D.I.openApplication("mindNetwork")
  4970. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4971. } else if (e.data.tools && e.data.tools == "8") {
  4972. U.MD.D.I.openApplication("library")
  4973. } else if (e.data.tools && e.data.tools == "17") {
  4974. U.MD.D.I.openApplication("stuLibrary")
  4975. } else if (e.data.tools && e.data.tools == "18") {
  4976. U.MD.D.I.openApplication("train")
  4977. } else if (e.data.tools && e.data.tools == "21") {
  4978. U.MD.D.I.openApplication("program")
  4979. } else if (e.data.tools && e.data.tools == "22") {
  4980. U.MD.D.I.openApplication("AIprogram2")
  4981. } else if (e.data.tools && e.data.tools == "23") {
  4982. U.MD.D.I.openApplication("Pythonprogram")
  4983. } else if (e.data.tools && e.data.tools == "24") {
  4984. U.MD.D.I.openApplication("AIprogram")
  4985. } else if (e.data.tools && e.data.tools == "25") {
  4986. U.MD.D.I.openApplication("sys")
  4987. } else if (e.data.tools && e.data.tools == "26") {
  4988. // U.MD.D.I.openApplication("courseDesign")
  4989. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4990. } else if (e.data.tools && e.data.tools == "31") {
  4991. U.MD.D.I.openApplication("netWorkPanel")
  4992. } else if (e.data.tools && e.data.tools == "32") {
  4993. U.MD.D.I.openApplication("codeEdit")
  4994. } else if (e.data.tools && e.data.tools == "57") {
  4995. U.MD.D.I.openApplication("CocoPi")
  4996. } else if (e.data.tools && e.data.tools == "63") {
  4997. U.MD.D.I.openApplication("Wood")
  4998. } else if (e.data.tools && e.data.tools == "58") {
  4999. U.MD.D.I.openApplication("car")
  5000. } else if (e.data.tools && e.data.tools == "59") {
  5001. U.MD.D.I.openApplication("lineSearch")
  5002. } else if (e.data.tools && e.data.tools == "60") {
  5003. U.MD.D.I.openApplication("deepLearning")
  5004. } else if (e.data.tools && e.data.tools == "61") {
  5005. U.MD.D.I.openApplication("allHistory")
  5006. } else if (e.data.tools && e.data.tools == "28") {
  5007. U.MD.D.I.openApplication("translation")
  5008. } else if (e.data.tools && e.data.tools == "37") {
  5009. U.MD.D.I.openApplication("mohe")
  5010. } else if (e.data.tools && e.data.tools == "38") {
  5011. U.MD.D.I.openApplication("24game")
  5012. } else if (e.data.tools && e.data.tools == "39") {
  5013. U.MD.D.I.openApplication("GeoGebra")
  5014. } else if (e.data.tools && e.data.tools == "43") {
  5015. U.MD.D.I.openApplication("studentEvaluate")
  5016. } else if (e.data.tools && e.data.tools == "44") {
  5017. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5018. } else if (e.data.tools && e.data.tools == "46") {
  5019. U.MD.D.I.openApplication("project")
  5020. } else if (e.data.tools && e.data.tools == "71") {
  5021. U.MD.D.I.openApplication("aigptCourse")
  5022. } else if (e.data.tools && e.data.tools == "72") {
  5023. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5024. } else if (e.data.tools && e.data.tools == "1s") {
  5025. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5026. } else if (e.data.tools && e.data.tools == "3s") {
  5027. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5028. } else if (e.data.tools && e.data.tools == "6s") {
  5029. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5030. } else if (e.data.tools && e.data.tools == "1studio") {
  5031. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5032. } else if (e.data.tools && e.data.tools == "3studio") {
  5033. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5034. } else if (e.data.tools && e.data.tools == "6studio") {
  5035. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5036. } else if (e.data.tools && e.data.tools == "3y") {
  5037. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5038. } else if (e.data.tools && e.data.tools == "1y") {
  5039. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5040. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5041. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5042. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5043. U.MD.D.I.openApplication("AIAnalyse")
  5044. } else if (e.data.tools && e.data.tools == "1teacher") {
  5045. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5046. } else if (e.data.tools && e.data.tools == "3teacher") {
  5047. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5048. } else if (e.data.tools && e.data.tools == "7teacher") {
  5049. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5050. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5051. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5052. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5053. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5054. } else if (e.data.tools && e.data.tools == "1E") {
  5055. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5056. } else if (e.data.tools && e.data.tools == "3E") {
  5057. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5058. } else if (e.data.tools && e.data.tools == "57y") {
  5059. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5060. } else if (e.data.tools && e.data.tools == "57u") {
  5061. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5062. } else if (e.data.tools && e.data.tools == "57teacher") {
  5063. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5064. } else if (e.data.tools && e.data.tools == "64") {
  5065. U.MD.D.I.openApplication("AIChat")
  5066. } else if (e.data.tools && e.data.tools == "66") {
  5067. U.MD.D.I.openApplication("formulaEdi")
  5068. } else if (e.data.tools && e.data.tools == "67") {
  5069. U.MD.D.I.openApplication("molStr")
  5070. } else if (e.data.tools && e.data.tools == "68") {
  5071. U.MD.D.I.openApplication("timeAxis")
  5072. } else if (e.data.tools && e.data.tools == "openCourse") {
  5073. let _data = {
  5074. typea: e.data.typea || '',
  5075. typeb: e.data.typeb || '',
  5076. typed: e.data.typed || '',
  5077. }
  5078. U.MD.D.I.openInApplication("index", _data)
  5079. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5080. let _data = {
  5081. classid: e.data.classid || '',
  5082. }
  5083. U.MD.D.I.openInApplication("dataClass", _data)
  5084. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5085. let _data = {
  5086. cid: e.data.cid || '',
  5087. gid: e.data.gid || '',
  5088. }
  5089. U.MD.D.I.openInApplication("opencCscl", _data)
  5090. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5091. U.MD.D.I.openApplication("dataBoardTest")
  5092. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5093. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5094. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5095. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5096. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5097. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5098. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5099. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5100. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5101. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5102. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5103. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5104. }else if (e.data.tools && e.data.tools == "loginSz") {
  5105. U.MD.D.I.openInApplication("loginSz")
  5106. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5107. if($('#classroom_observation_board')[0]){
  5108. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5109. }
  5110. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5111. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5112. if($('#classroom_observation_ob_comment')[0]){
  5113. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5114. }
  5115. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5116. }else if (e.data.tools && e.data.tools == "logout"){
  5117. U.MD.U.LO.logoutSystem()
  5118. }else if (e.data.tools && e.data.tools == "getLogin"){
  5119. let _iframe = $('#UI_Login')[0];
  5120. if (_iframe) {
  5121. var userInfo = US.userInfo;
  5122. var type = 2
  5123. if(userInfo && userInfo.userid){
  5124. type = 1
  5125. }
  5126. _contentWindow = _iframe.contentWindow;
  5127. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5128. }
  5129. }
  5130. });
  5131. U.MD.D.I.selectUser = function () {
  5132. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5133. if (res.value[0].length > 0) {
  5134. US.userInfo = res.value[0][0];
  5135. $(".userName")[0].innerHTML = US.userInfo.username;
  5136. }
  5137. }, [], { "type": "GET", "withCredentials": true });
  5138. }
  5139. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5140. var _userinfo = US.userInfo, //登录用户信息
  5141. _userid = US.userInfo.userid, //登录用户id
  5142. _oid = _userinfo.organizeid,
  5143. _type = US.userInfo.type,
  5144. _org = US.userInfo.org,
  5145. _role = US.userInfo.role,
  5146. _classId = US.userInfo.classid;
  5147. if (_type == 4) {
  5148. tType = 4
  5149. }
  5150. switch (str) {
  5151. case "studyDetailNT": //无终端模式
  5152. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5153. setTimeout(() => {
  5154. U.MD.U.L.login();
  5155. }, 2000);
  5156. } else {
  5157. _formdiv = new U.UF.UI.form(
  5158. "课程详情",
  5159. $$("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 }), {
  5160. "id": "studyDetailNT",
  5161. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. _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); } }
  5167. break;
  5168. }
  5169. case "studyDetail":
  5170. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5171. setTimeout(() => {
  5172. U.MD.U.L.login();
  5173. }, 2000);
  5174. } else {
  5175. _formdiv = new U.UF.UI.form(
  5176. "课程详情",
  5177. $$("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 }), {
  5178. "id": "studyDetail",
  5179. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5180. "onresize": function () { }
  5181. }, {
  5182. closecallback: function () { }
  5183. }, { "style": { "height": "36px" } }).form; //创建窗体
  5184. _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); } }
  5185. break;
  5186. }
  5187. case "studyDetailTrain":
  5188. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5189. setTimeout(() => {
  5190. U.MD.U.L.login();
  5191. }, 2000);
  5192. } else {
  5193. _formdiv = new U.UF.UI.form(
  5194. "培训详情",
  5195. $$("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 }), {
  5196. "id": "studyDetailTrain",
  5197. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. _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); } }
  5203. break;
  5204. }
  5205. case "studyDetailS":
  5206. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5207. setTimeout(() => {
  5208. U.MD.U.L.login();
  5209. }, 2000);
  5210. } else {
  5211. _formdiv = new U.UF.UI.form(
  5212. "项目详情",
  5213. $$("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 }), {
  5214. "id": "studyDetailS",
  5215. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5216. "onresize": function () { }
  5217. }, {
  5218. closecallback: function () { }
  5219. }, { "style": { "height": "36px" } }).form; //创建窗体
  5220. _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); } }
  5221. break;
  5222. }
  5223. case "studyDetailStudio":
  5224. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5225. setTimeout(() => {
  5226. U.MD.U.L.login();
  5227. }, 2000);
  5228. } else {
  5229. _formdiv = new U.UF.UI.form(
  5230. "工作详情",
  5231. $$("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 }), {
  5232. "id": "studyDetailStudio",
  5233. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5234. "onresize": function () { }
  5235. }, {
  5236. closecallback: function () { }
  5237. }, { "style": { "height": "36px" } }).form; //创建窗体
  5238. _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); } }
  5239. break;
  5240. }
  5241. case "studyDetailS5":
  5242. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5243. setTimeout(() => {
  5244. U.MD.U.L.login();
  5245. }, 2000);
  5246. } else {
  5247. _formdiv = new U.UF.UI.form(
  5248. "项目详情",
  5249. $$("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 }), {
  5250. "id": "studyDetailS",
  5251. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5252. "onresize": function () { }
  5253. }, {
  5254. closecallback: function () { }
  5255. }, { "style": { "height": "36px" } }).form; //创建窗体
  5256. _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); } }
  5257. break;
  5258. }
  5259. case "studyDetailGM":
  5260. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5261. setTimeout(() => {
  5262. U.MD.U.L.login();
  5263. }, 2000);
  5264. } else {
  5265. _formdiv = new U.UF.UI.form(
  5266. "课程详情",
  5267. $$("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 }), {
  5268. "id": "studyDetail",
  5269. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5270. "onresize": function () { }
  5271. }, {
  5272. closecallback: function () { }
  5273. }, { "style": { "height": "36px" } }).form; //创建窗体
  5274. _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); } }
  5275. break;
  5276. }
  5277. case "hanUrl":
  5278. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5279. setTimeout(() => {
  5280. U.MD.U.L.login();
  5281. }, 2000);
  5282. } else {
  5283. _formdiv = new U.UF.UI.form(
  5284. "汉字宫",
  5285. $$("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" }), {
  5286. "id": "hanUrl",
  5287. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5288. "onresize": function () { }
  5289. }, {
  5290. closecallback: function () { }
  5291. }, { "style": { "height": "36px" } }).form; //创建窗体
  5292. _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); } }
  5293. break;
  5294. }
  5295. case "index":
  5296. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5297. setTimeout(() => {
  5298. U.MD.U.L.login();
  5299. }, 2000);
  5300. } else {
  5301. _formdiv = new U.UF.UI.form(
  5302. "课程中心",
  5303. $$("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 }), {
  5304. "id": "study",
  5305. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. _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); } }
  5311. break;
  5312. }
  5313. case "dataClass":
  5314. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5315. setTimeout(() => {
  5316. U.MD.U.L.login();
  5317. }, 2000);
  5318. } else {
  5319. _formdiv = new U.UF.UI.form(
  5320. "数据报告",
  5321. $$("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 }), {
  5322. "id": "dataClass",
  5323. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5324. "onresize": function () { }
  5325. }, {
  5326. closecallback: function () { }
  5327. }, { "style": { "height": "36px" } }).form; //创建窗体
  5328. _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); } }
  5329. break;
  5330. }
  5331. case "opencCscl":
  5332. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5333. setTimeout(() => {
  5334. U.MD.U.L.login();
  5335. }, 2000);
  5336. } else {
  5337. _formdiv = new U.UF.UI.form(
  5338. "协同建构",
  5339. $$("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 }), {
  5340. "id": "futureClass",
  5341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5342. "onresize": function () { }
  5343. }, {
  5344. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5345. }, { "style": { "height": "36px" } }).form; //创建窗体
  5346. _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); } }
  5347. break;
  5348. }
  5349. case "openCourseUpdate":
  5350. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5351. setTimeout(() => {
  5352. U.MD.U.L.login();
  5353. }, 2000);
  5354. } else {
  5355. _formdiv = new U.UF.UI.form(
  5356. "课程管理",
  5357. $$("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 }), {
  5358. "id": "openCourseUpdate",
  5359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5360. "onresize": function () { }
  5361. }, {
  5362. closecallback: function () { }
  5363. }, { "style": { "height": "36px" } }).form; //创建窗体
  5364. break;
  5365. }
  5366. case "openNewCourseUpdate":
  5367. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5368. setTimeout(() => {
  5369. U.MD.U.L.login();
  5370. }, 2000);
  5371. } else {
  5372. _formdiv = new U.UF.UI.form(
  5373. "课程管理",
  5374. $$("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 }), {
  5375. "id": "openCourseUpdate",
  5376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5377. "onresize": function () { }
  5378. }, {
  5379. closecallback: function () { }
  5380. }, { "style": { "height": "36px" } }).form; //创建窗体
  5381. break;
  5382. }
  5383. case "openCourseEUpdate":
  5384. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5385. setTimeout(() => {
  5386. U.MD.U.L.login();
  5387. }, 2000);
  5388. } else {
  5389. _formdiv = new U.UF.UI.form(
  5390. "课程管理",
  5391. $$("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 }), {
  5392. "id": "openCourseUpdate",
  5393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5394. "onresize": function () { }
  5395. }, {
  5396. closecallback: function () { }
  5397. }, { "style": { "height": "36px" } }).form; //创建窗体
  5398. break;
  5399. }
  5400. case "openCourseAiUpdate":
  5401. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5402. setTimeout(() => {
  5403. U.MD.U.L.login();
  5404. }, 2000);
  5405. } else {
  5406. _formdiv = new U.UF.UI.form(
  5407. "课程管理",
  5408. $$("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 }), {
  5409. "id": "openCourseUpdate",
  5410. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5411. "onresize": function () { }
  5412. }, {
  5413. closecallback: function () { }
  5414. }, { "style": { "height": "36px" } }).form; //创建窗体
  5415. break;
  5416. }
  5417. case "openCourseAiUpdate2":
  5418. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5419. setTimeout(() => {
  5420. U.MD.U.L.login();
  5421. }, 2000);
  5422. } else {
  5423. _formdiv = new U.UF.UI.form(
  5424. "课程管理",
  5425. $$("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 }), {
  5426. "id": "openCourseUpdate",
  5427. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5428. "onresize": function () { }
  5429. }, {
  5430. closecallback: function () { }
  5431. }, { "style": { "height": "36px" } }).form; //创建窗体
  5432. break;
  5433. }
  5434. case "openCourseNewUpdate":
  5435. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5436. setTimeout(() => {
  5437. U.MD.U.L.login();
  5438. }, 2000);
  5439. } else {
  5440. _formdiv = new U.UF.UI.form(
  5441. "课程管理",
  5442. $$("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 }), {
  5443. "id": "openCourseUpdate",
  5444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. break;
  5450. }
  5451. case "inviteLoginSz":
  5452. _formdiv = new U.UF.UI.form(
  5453. "随机码登录",
  5454. $$("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 }), {
  5455. "id": "loginSz",
  5456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. break;
  5462. case "loginSz":
  5463. _formdiv = new U.UF.UI.form(
  5464. "教师登录",
  5465. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5466. "id": "loginSz",
  5467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5468. "onresize": function () { }
  5469. }, {
  5470. closecallback: function () { }
  5471. }, { "style": { "height": "36px" } }).form; //创建窗体
  5472. break;
  5473. case "teacher":
  5474. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5475. setTimeout(() => {
  5476. U.MD.U.L.login();
  5477. }, 2000);
  5478. } else {
  5479. _formdiv = new U.UF.UI.form(
  5480. "教师管理",
  5481. $$("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 }), {
  5482. "id": "teacher",
  5483. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5484. "onresize": function () { }
  5485. }, {
  5486. closecallback: function () { }
  5487. }, { "style": { "height": "36px" } }).form; //创建窗体
  5488. break;
  5489. }
  5490. case "dataBoardSZArea":
  5491. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5492. setTimeout(() => {
  5493. U.MD.U.L.login();
  5494. }, 2000);
  5495. } else {
  5496. _formdiv = new U.UF.UI.form(
  5497. "综合数据看板",
  5498. $$("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 }), {
  5499. "id": "dataBoardSZArea",
  5500. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5501. "onresize": function () { }
  5502. }, {
  5503. closecallback: function () { }
  5504. }, { "style": { "height": "36px" } }).form; //创建窗体
  5505. break;
  5506. }
  5507. case "dataBoardSZCity":
  5508. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5509. setTimeout(() => {
  5510. U.MD.U.L.login();
  5511. }, 2000);
  5512. } else {
  5513. _formdiv = new U.UF.UI.form(
  5514. "综合数据看板",
  5515. $$("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 }), {
  5516. "id": "dataBoardSZCity",
  5517. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5518. "onresize": function () { }
  5519. }, {
  5520. closecallback: function () { }
  5521. }, { "style": { "height": "36px" } }).form; //创建窗体
  5522. break;
  5523. }
  5524. case "classroom_observation_board":
  5525. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5526. setTimeout(() => {
  5527. U.MD.U.L.login();
  5528. }, 2000);
  5529. } else {
  5530. _formdiv = new U.UF.UI.form(
  5531. "课堂观察",
  5532. $$("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 }), {
  5533. "id": "classroom_observation_board",
  5534. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //创建窗体
  5539. break;
  5540. }
  5541. case "classroom_observation_ob_comment":
  5542. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5543. setTimeout(() => {
  5544. U.MD.U.L.login();
  5545. }, 2000);
  5546. } else {
  5547. _formdiv = new U.UF.UI.form(
  5548. "课堂审核",
  5549. $$("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 }), {
  5550. "id": "classroom_observation_ob_comment",
  5551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5552. "onresize": function () { }
  5553. }, {
  5554. closecallback: function () { }
  5555. }, { "style": { "height": "36px" } }).form; //创建窗体
  5556. break;
  5557. }
  5558. case "gptConfig":
  5559. _formdiv = new U.UF.UI.form(
  5560. data.name ? data.name : "应用中心",
  5561. $$("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 }), {
  5562. "id": "gptConfig" + data.id,
  5563. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5564. "onresize": function () { }
  5565. }, {
  5566. closecallback: function () { }
  5567. }, { "style": { "height": "36px" } }).form; //创建窗体
  5568. break;
  5569. }
  5570. }
  5571. U.MD.D.I.openApplication = function (str, obj, info) {
  5572. obj = obj || {};
  5573. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5574. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5575. _userinfo = US.userInfo, //登录用户信息
  5576. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5577. _oid = obj.organizeid || _userinfo.organizeid,
  5578. _type = US.userInfo.type,
  5579. _org = US.userInfo.org,
  5580. _role = US.userInfo.role,
  5581. _classId = US.userInfo.classid,
  5582. _TscreenType = 1
  5583. _screenType = 2,
  5584. _SscreenType = 3;
  5585. let iframeBool = true
  5586. if(U.UF.UI.form.allForm[str]){
  5587. iframeBool = false
  5588. }
  5589. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5590. return;
  5591. }
  5592. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5593. switch (str) {
  5594. case "studnetProject": //好友打开
  5595. _formdiv = new U.UF.UI.form(
  5596. "我的项目",
  5597. $$("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 }), {
  5598. "id": "studnetProject",
  5599. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5600. "onresize": function () { }
  5601. }, {
  5602. closecallback: function () { }
  5603. }, { "style": { "height": "36px" } }).form; //创建窗体
  5604. _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); } }
  5605. break;
  5606. case "studentEvaluate": //好友打开
  5607. _formdiv = new U.UF.UI.form(
  5608. "我的评价",
  5609. $$("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 }), {
  5610. "id": "studentEvaluate",
  5611. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5612. "onresize": function () { }
  5613. }, {
  5614. closecallback: function () { }
  5615. }, { "style": { "height": "36px" } }).form; //创建窗体
  5616. _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); } }
  5617. break;
  5618. case "my":
  5619. _formdiv = new U.UF.UI.form(
  5620. "我的资料",
  5621. $$("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 }), {
  5622. "id": "my",
  5623. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5624. "onresize": function () { }
  5625. }, {
  5626. closecallback: function () { }
  5627. }, { "style": { "height": "36px" } }).form; //创建窗体
  5628. _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); } }
  5629. break;
  5630. case "program":
  5631. _formdiv = new U.UF.UI.form(
  5632. "编程平台",
  5633. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5634. "id": "program",
  5635. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5636. "onresize": function () { }
  5637. }, {
  5638. closecallback: function () { }
  5639. }, { "style": { "height": "36px" } }).form; //创建窗体
  5640. _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); } }
  5641. break;
  5642. case "library":
  5643. _formdiv = new U.UF.UI.form(
  5644. "素材库",
  5645. $$("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 }), {
  5646. "id": "library",
  5647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5648. "onresize": function () { }
  5649. }, {
  5650. closecallback: function () { }
  5651. }, { "style": { "height": "36px" } }).form; //创建窗体
  5652. _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); } }
  5653. break;
  5654. case "whiteboard":
  5655. _formdiv = new U.UF.UI.form(
  5656. "电子白板",
  5657. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5658. "id": "whiteboard",
  5659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5660. "onresize": function () { }
  5661. }, {
  5662. closecallback: function () { }
  5663. }, { "style": { "height": "36px" } }).form; //创建窗体
  5664. _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); } }
  5665. break;
  5666. case "investigation":
  5667. _formdiv = new U.UF.UI.form(
  5668. "问卷调查",
  5669. $$("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 }), {
  5670. "id": "investigation",
  5671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5672. "onresize": function () { }
  5673. }, {
  5674. closecallback: function () { }
  5675. }, { "style": { "height": "36px" } }).form; //创建窗体
  5676. _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); } }
  5677. break;
  5678. case "note":
  5679. _formdiv = new U.UF.UI.form(
  5680. "便签分类",
  5681. $$("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 }), {
  5682. "id": "note",
  5683. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5684. "onresize": function () { }
  5685. }, {
  5686. closecallback: function () { }
  5687. }, { "style": { "height": "36px" } }).form; //创建窗体
  5688. _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); } }
  5689. break;
  5690. // case "score":
  5691. // _formdiv = new U.UF.UI.form(
  5692. // "量规评分",
  5693. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5694. // "id": "score",
  5695. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5696. // "onresize": function() {}
  5697. // }, {
  5698. // closecallback: function() {}
  5699. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5700. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5701. // break;
  5702. case "mind":
  5703. _formdiv = new U.UF.UI.form(
  5704. "思维导图",
  5705. $$("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"
  5706. "id": "mind",
  5707. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5708. "onresize": function () { }
  5709. }, {
  5710. closecallback: function () { }
  5711. }, { "style": { "height": "36px" } }).form; //创建窗体
  5712. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5713. break;
  5714. case "doc":
  5715. // U.MD.D.I.isRoom();
  5716. _formdiv = new U.UF.UI.form(
  5717. "协同文档",
  5718. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5719. "id": "doc",
  5720. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5721. "onresize": function () { }
  5722. }, {
  5723. closecallback: function () { }
  5724. }, { "style": { "height": "36px" } }).form; //创建窗体
  5725. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5726. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5727. // })
  5728. _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); } }
  5729. break;
  5730. case "studentStudy":
  5731. _formdiv = new U.UF.UI.form(
  5732. "课程中心",
  5733. $$("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
  5734. "id": "studentStudy",
  5735. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5741. break;
  5742. case "train": //好友打开
  5743. _formdiv = new U.UF.UI.form(
  5744. "训练平台",
  5745. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5746. "id": "train",
  5747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5748. "onresize": function () { }
  5749. }, {
  5750. closecallback: function () { }
  5751. }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5753. break;
  5754. case "mindNetwork": //好友打开
  5755. _formdiv = new U.UF.UI.form(
  5756. "思维网格",
  5757. $$("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 }), {
  5758. "id": "mindNetwork",
  5759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5760. "onresize": function () { }
  5761. }, {
  5762. closecallback: function () { }
  5763. }, { "style": { "height": "36px" } }).form; //创建窗体
  5764. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5765. break;
  5766. case "studentClassRoom": //好友打开
  5767. _formdiv = new U.UF.UI.form(
  5768. "实时课堂",
  5769. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/liveRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5770. "id": "studentClassRoom",
  5771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5777. setTimeout(() => {
  5778. U.UF.F.windowZooming(_formdiv)
  5779. }, 0);
  5780. break;
  5781. }
  5782. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5783. switch (str) {
  5784. case "studnetProject": //好友打开
  5785. _formdiv = new U.UF.UI.form(
  5786. "我的项目",
  5787. $$("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 }), {
  5788. "id": "studnetProject",
  5789. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5790. "onresize": function () { }
  5791. }, {
  5792. closecallback: function () { }
  5793. }, { "style": { "height": "36px" } }).form; //创建窗体
  5794. _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); } }
  5795. break;
  5796. case "studentEvaluate": //好友打开
  5797. _formdiv = new U.UF.UI.form(
  5798. "我的评价",
  5799. $$("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 }), {
  5800. "id": "studentEvaluate",
  5801. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5802. "onresize": function () { }
  5803. }, {
  5804. closecallback: function () { }
  5805. }, { "style": { "height": "36px" } }).form; //创建窗体
  5806. _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); } }
  5807. break;
  5808. case "my":
  5809. _formdiv = new U.UF.UI.form(
  5810. "我的资料",
  5811. $$("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 }), {
  5812. "id": "my",
  5813. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5814. "onresize": function () { }
  5815. }, {
  5816. closecallback: function () { }
  5817. }, { "style": { "height": "36px" } }).form; //创建窗体
  5818. _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); } }
  5819. break;
  5820. case "program":
  5821. _formdiv = new U.UF.UI.form(
  5822. "编程平台",
  5823. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5824. "id": "program",
  5825. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5826. "onresize": function () { }
  5827. }, {
  5828. closecallback: function () { }
  5829. }, { "style": { "height": "36px" } }).form; //创建窗体
  5830. _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); } }
  5831. break;
  5832. case "library":
  5833. _formdiv = new U.UF.UI.form(
  5834. "素材库",
  5835. $$("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 }), {
  5836. "id": "library",
  5837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5838. "onresize": function () { }
  5839. }, {
  5840. closecallback: function () { }
  5841. }, { "style": { "height": "36px" } }).form; //创建窗体
  5842. _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); } }
  5843. break;
  5844. case "whiteboard":
  5845. _formdiv = new U.UF.UI.form(
  5846. "电子白板",
  5847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5848. "id": "whiteboard",
  5849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5850. "onresize": function () { }
  5851. }, {
  5852. closecallback: function () { }
  5853. }, { "style": { "height": "36px" } }).form; //创建窗体
  5854. _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); } }
  5855. break;
  5856. case "investigation":
  5857. _formdiv = new U.UF.UI.form(
  5858. "问卷调查",
  5859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5860. "id": "investigation",
  5861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //创建窗体
  5866. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5867. break;
  5868. case "note":
  5869. _formdiv = new U.UF.UI.form(
  5870. "便签分类",
  5871. $$("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 }), {
  5872. "id": "note",
  5873. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5874. "onresize": function () { }
  5875. }, {
  5876. closecallback: function () { }
  5877. }, { "style": { "height": "36px" } }).form; //创建窗体
  5878. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5879. break;
  5880. // case "score":
  5881. // _formdiv = new U.UF.UI.form(
  5882. // "量规评分",
  5883. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5884. // "id": "score",
  5885. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5886. // "onresize": function() {}
  5887. // }, {
  5888. // closecallback: function() {}
  5889. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5890. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5891. // break;
  5892. case "mind":
  5893. _formdiv = new U.UF.UI.form(
  5894. "思维导图",
  5895. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5896. "id": "mind",
  5897. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5898. "onresize": function () { }
  5899. }, {
  5900. closecallback: function () { }
  5901. }, { "style": { "height": "36px" } }).form; //创建窗体
  5902. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5903. break;
  5904. case "doc":
  5905. // U.MD.D.I.isRoom();
  5906. _formdiv = new U.UF.UI.form(
  5907. "协同文档",
  5908. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5909. "id": "doc",
  5910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5911. "onresize": function () { }
  5912. }, {
  5913. closecallback: function () { }
  5914. }, { "style": { "height": "36px" } }).form; //创建窗体
  5915. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5916. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5917. })
  5918. _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); } }
  5919. break;
  5920. case "train": //好友打开
  5921. _formdiv = new U.UF.UI.form(
  5922. "训练平台",
  5923. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5924. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5931. break;
  5932. case "studentStudy":
  5933. _formdiv = new U.UF.UI.form(
  5934. "课程中心",
  5935. $$("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
  5936. "id": "studentStudy",
  5937. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5943. break;
  5944. case "mindNetwork": //好友打开
  5945. _formdiv = new U.UF.UI.form(
  5946. "思维网格",
  5947. $$("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 }), {
  5948. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5955. break;
  5956. case "studentClassRoom": //好友打开
  5957. _formdiv = new U.UF.UI.form(
  5958. "实时课堂",
  5959. $$("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 }), {
  5960. "id": "studentClassRoom",
  5961. "style": { "width": "90%", "height": "90%", "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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5967. setTimeout(() => {
  5968. U.UF.F.windowZooming(_formdiv)
  5969. }, 0);
  5970. break;
  5971. }
  5972. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5973. //选择应用处理
  5974. switch (str) {
  5975. case "project": //好友打开
  5976. _formdiv = new U.UF.UI.form(
  5977. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5978. $$("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 }), {
  5979. "id": "project",
  5980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5981. "onresize": function () { }
  5982. }, {
  5983. closecallback: function () { }
  5984. }, { "style": { "height": "36px" } }).form; //创建窗体
  5985. _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); } }
  5986. break;
  5987. case "student":
  5988. _formdiv = new U.UF.UI.form(
  5989. "学生管理",
  5990. $$("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 }), {
  5991. "id": "student",
  5992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5993. "onresize": function () { }
  5994. }, {
  5995. closecallback: function () { }
  5996. }, { "style": { "height": "36px" } }).form; //创建窗体
  5997. _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); } }
  5998. break;
  5999. case "evaluate":
  6000. _formdiv = new U.UF.UI.form(
  6001. "学生评价",
  6002. $$("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 }), {
  6003. "id": "evaluate",
  6004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6005. "onresize": function () { }
  6006. }, {
  6007. closecallback: function () { }
  6008. }, { "style": { "height": "36px" } }).form; //创建窗体
  6009. _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); } }
  6010. break;
  6011. case "sys":
  6012. _formdiv = new U.UF.UI.form(
  6013. "目标管理",
  6014. $$("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 }), {
  6015. "id": "sys",
  6016. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6017. "onresize": function () { }
  6018. }, {
  6019. closecallback: function () { }
  6020. }, { "style": { "height": "36px" } }).form; //创建窗体
  6021. _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); } }
  6022. break;
  6023. case "courseDesign":
  6024. _formdiv = new U.UF.UI.form(
  6025. "项目设计",
  6026. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6027. "id": "courseDesign",
  6028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6029. "onresize": function () { }
  6030. }, {
  6031. closecallback: function () { }
  6032. }, { "style": { "height": "36px" } }).form; //创建窗体
  6033. _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); } }
  6034. break;
  6035. case "program":
  6036. _formdiv = new U.UF.UI.form(
  6037. "编程平台",
  6038. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6039. "id": "program",
  6040. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6041. "onresize": function () { }
  6042. }, {
  6043. closecallback: function () { }
  6044. }, { "style": { "height": "36px" } }).form; //创建窗体
  6045. _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); } }
  6046. break;
  6047. case "class":
  6048. _formdiv = new U.UF.UI.form(
  6049. "班级管理",
  6050. $$("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 }), {
  6051. "id": "class",
  6052. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //创建窗体
  6057. _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); } }
  6058. break;
  6059. case "Grade":
  6060. _formdiv = new U.UF.UI.form(
  6061. "年级管理",
  6062. $$("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 }), {
  6063. "id": "Grade",
  6064. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6065. "onresize": function () { }
  6066. }, {
  6067. closecallback: function () { }
  6068. }, { "style": { "height": "36px" } }).form; //创建窗体
  6069. _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); } }
  6070. break;
  6071. case "teacherOffice":
  6072. _formdiv = new U.UF.UI.form(
  6073. "教研室",
  6074. $$("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 }), {
  6075. "id": "teacherOffice",
  6076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6077. "onresize": function () { }
  6078. }, {
  6079. closecallback: function () { }
  6080. }, { "style": { "height": "36px" } }).form; //创建窗体
  6081. _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); } }
  6082. break;
  6083. case "my":
  6084. _formdiv = new U.UF.UI.form(
  6085. "我的资料",
  6086. $$("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 }), {
  6087. "id": "my",
  6088. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6089. "onresize": function () { }
  6090. }, {
  6091. closecallback: function () { }
  6092. }, { "style": { "height": "36px" } }).form; //创建窗体
  6093. _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); } }
  6094. break;
  6095. case "notice":
  6096. _formdiv = new U.UF.UI.form(
  6097. "通知公告",
  6098. $$("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 }), {
  6099. "id": "notice",
  6100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6101. "onresize": function () { }
  6102. }, {
  6103. closecallback: function () { }
  6104. }, { "style": { "height": "36px" } }).form; //创建窗体
  6105. _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); } }
  6106. break;
  6107. case "library":
  6108. _formdiv = new U.UF.UI.form(
  6109. "素材库",
  6110. $$("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 }), {
  6111. "id": "library",
  6112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6113. "onresize": function () { }
  6114. }, {
  6115. closecallback: function () { }
  6116. }, { "style": { "height": "36px" } }).form; //创建窗体
  6117. _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); } }
  6118. break;
  6119. case "whiteboard":
  6120. _formdiv = new U.UF.UI.form(
  6121. "电子白板",
  6122. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6123. "id": "whiteboard",
  6124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6125. "onresize": function () { }
  6126. }, {
  6127. closecallback: function () { }
  6128. }, { "style": { "height": "36px" } }).form; //创建窗体
  6129. _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); } }
  6130. break;
  6131. case "investigation":
  6132. _formdiv = new U.UF.UI.form(
  6133. "问卷调查",
  6134. $$("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 }), {
  6135. "id": "investigation",
  6136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6137. "onresize": function () { }
  6138. }, {
  6139. closecallback: function () { }
  6140. }, { "style": { "height": "36px" } }).form; //创建窗体
  6141. _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); } }
  6142. break;
  6143. case "note":
  6144. _formdiv = new U.UF.UI.form(
  6145. "便签分类",
  6146. $$("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 }), {
  6147. "id": "note",
  6148. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6149. "onresize": function () { }
  6150. }, {
  6151. closecallback: function () { }
  6152. }, { "style": { "height": "36px" } }).form; //创建窗体
  6153. _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); } }
  6154. break;
  6155. // case "score":
  6156. // _formdiv = new U.UF.UI.form(
  6157. // "量规评分",
  6158. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6159. // "id": "score",
  6160. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6161. // "onresize": function() {}
  6162. // }, {
  6163. // closecallback: function() {}
  6164. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6165. // _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); } }
  6166. // break;
  6167. case "mind":
  6168. _formdiv = new U.UF.UI.form(
  6169. "思维导图",
  6170. $$("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"
  6171. "id": "mind",
  6172. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6173. "onresize": function () { }
  6174. }, {
  6175. closecallback: function () { }
  6176. }, { "style": { "height": "36px" } }).form; //创建窗体
  6177. _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); } }
  6178. break;
  6179. case "doc":
  6180. // U.MD.D.I.isRoom();
  6181. _formdiv = new U.UF.UI.form(
  6182. "协同文档",
  6183. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6184. "id": "doc",
  6185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6186. "onresize": function () { }
  6187. }, {
  6188. closecallback: function () { }
  6189. }, { "style": { "height": "36px" } }).form; //创建窗体
  6190. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6191. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6192. })
  6193. _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); } }
  6194. break;
  6195. case "study":
  6196. _formdiv = new U.UF.UI.form(
  6197. "课程中心",
  6198. $$("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
  6199. "id": "study",
  6200. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6201. "onresize": function () { }
  6202. }, {
  6203. closecallback: function () { }
  6204. }, { "style": { "height": "36px" } }).form; //创建窗体
  6205. _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); } }
  6206. break;
  6207. case "mindNetwork": //好友打开
  6208. _formdiv = new U.UF.UI.form(
  6209. "思维网格",
  6210. $$("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 }), {
  6211. "id": "mindNetwork",
  6212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6213. "onresize": function () { }
  6214. }, {
  6215. closecallback: function () { }
  6216. }, { "style": { "height": "36px" } }).form; //创建窗体
  6217. _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); } }
  6218. break;
  6219. case "train": //好友打开
  6220. _formdiv = new U.UF.UI.form(
  6221. "训练平台",
  6222. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6223. "id": "mindNetwork",
  6224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6225. "onresize": function () { }
  6226. }, {
  6227. closecallback: function () { }
  6228. }, { "style": { "height": "36px" } }).form; //创建窗体
  6229. _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); } }
  6230. break;
  6231. case "teacherClassRoom": //好友打开
  6232. _formdiv = new U.UF.UI.form(
  6233. "实时课堂",
  6234. $$("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 }), {
  6235. "id": "teacherClassRoom",
  6236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6237. "onresize": function () { }
  6238. }, {
  6239. closecallback: function () { }
  6240. }, { "style": { "height": "36px" } }).form; //创建窗体
  6241. _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); } }
  6242. setTimeout(() => {
  6243. U.UF.F.windowZooming(_formdiv)
  6244. }, 0);
  6245. break;
  6246. }
  6247. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6248. switch (str) {
  6249. case "project": //好友打开
  6250. _formdiv = new U.UF.UI.form(
  6251. "课程管理",
  6252. $$("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 }), {
  6253. "id": "project",
  6254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6255. "onresize": function () { }
  6256. }, {
  6257. closecallback: function () { }
  6258. }, { "style": { "height": "36px" } }).form; //创建窗体
  6259. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6260. break;
  6261. case "evaluate":
  6262. _formdiv = new U.UF.UI.form(
  6263. "学生评价",
  6264. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6265. "id": "evaluate",
  6266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6267. "onresize": function () { }
  6268. }, {
  6269. closecallback: function () { }
  6270. }, { "style": { "height": "36px" } }).form; //创建窗体
  6271. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6272. break;
  6273. case "notice":
  6274. _formdiv = new U.UF.UI.form(
  6275. "通知公告",
  6276. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6277. "id": "notice",
  6278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6279. "onresize": function () { }
  6280. }, {
  6281. closecallback: function () { }
  6282. }, { "style": { "height": "36px" } }).form; //创建窗体
  6283. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6284. break;
  6285. case "stuLibrary":
  6286. _formdiv = new U.UF.UI.form(
  6287. "学习资料",
  6288. $$("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 }), {
  6289. "id": "stuLibrary",
  6290. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6291. "onresize": function () { }
  6292. }, {
  6293. closecallback: function () { }
  6294. }, { "style": { "height": "36px" } }).form; //创建窗体
  6295. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6296. break;
  6297. case "program":
  6298. _formdiv = new U.UF.UI.form(
  6299. "编程平台",
  6300. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6301. "id": "program",
  6302. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6303. "onresize": function () { }
  6304. }, {
  6305. closecallback: function () { }
  6306. }, { "style": { "height": "36px" } }).form; //创建窗体
  6307. _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); } }
  6308. break;
  6309. case "whiteboard":
  6310. _formdiv = new U.UF.UI.form(
  6311. "电子白板",
  6312. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6313. "id": "whiteboard",
  6314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6315. "onresize": function () { }
  6316. }, {
  6317. closecallback: function () { }
  6318. }, { "style": { "height": "36px" } }).form; //创建窗体
  6319. _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); } }
  6320. break;
  6321. case "investigation":
  6322. _formdiv = new U.UF.UI.form(
  6323. "问卷调查",
  6324. $$("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 }), {
  6325. "id": "investigation",
  6326. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6327. "onresize": function () { }
  6328. }, {
  6329. closecallback: function () { }
  6330. }, { "style": { "height": "36px" } }).form; //创建窗体
  6331. _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); } }
  6332. break;
  6333. case "mind":
  6334. _formdiv = new U.UF.UI.form(
  6335. "思维导图",
  6336. $$("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"
  6337. "id": "mind",
  6338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6339. "onresize": function () { }
  6340. }, {
  6341. closecallback: function () { }
  6342. }, { "style": { "height": "36px" } }).form; //创建窗体
  6343. _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); } }
  6344. break;
  6345. case "doc":
  6346. // U.MD.D.I.isRoom();
  6347. _formdiv = new U.UF.UI.form(
  6348. "协同文档",
  6349. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6350. "id": "doc",
  6351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6352. "onresize": function () { }
  6353. }, {
  6354. closecallback: function () { }
  6355. }, { "style": { "height": "36px" } }).form; //创建窗体
  6356. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6357. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6358. })
  6359. _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); } }
  6360. break;
  6361. case "study":
  6362. _formdiv = new U.UF.UI.form(
  6363. "课程中心",
  6364. $$("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
  6365. "id": "study",
  6366. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //创建窗体
  6371. _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); } }
  6372. break;
  6373. case "mindNetwork": //好友打开
  6374. _formdiv = new U.UF.UI.form(
  6375. "思维网格",
  6376. $$("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 }), {
  6377. "id": "mindNetwork",
  6378. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6379. "onresize": function () { }
  6380. }, {
  6381. closecallback: function () { }
  6382. }, { "style": { "height": "36px" } }).form; //创建窗体
  6383. _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); } }
  6384. break;
  6385. case "train": //好友打开
  6386. _formdiv = new U.UF.UI.form(
  6387. "训练平台",
  6388. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6389. "id": "train",
  6390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6391. "onresize": function () { }
  6392. }, {
  6393. closecallback: function () { }
  6394. }, { "style": { "height": "36px" } }).form; //创建窗体
  6395. _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); } }
  6396. break;
  6397. case "sys":
  6398. _formdiv = new U.UF.UI.form(
  6399. "目标管理",
  6400. $$("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 }), {
  6401. "id": "sys",
  6402. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6403. "onresize": function () { }
  6404. }, {
  6405. closecallback: function () { }
  6406. }, { "style": { "height": "36px" } }).form; //创建窗体
  6407. _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); } }
  6408. break;
  6409. case "courseDesign":
  6410. _formdiv = new U.UF.UI.form(
  6411. "项目设计",
  6412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6413. "id": "courseDesign",
  6414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6415. "onresize": function () { }
  6416. }, {
  6417. closecallback: function () { }
  6418. }, { "style": { "height": "36px" } }).form; //创建窗体
  6419. _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); } }
  6420. break;
  6421. }
  6422. } else if (!_type) {
  6423. switch (str) {
  6424. case "my":
  6425. _formdiv = new U.UF.UI.form(
  6426. "我的资料",
  6427. $$("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 }), {
  6428. "id": "my",
  6429. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //创建窗体
  6434. _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); } }
  6435. break;
  6436. }
  6437. }
  6438. switch (str) {
  6439. // AIprogram2 AI体验 aihub.cocorobo.cn
  6440. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6441. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6442. case "formulaEdi": //公式编辑
  6443. _formdiv = new U.UF.UI.form(
  6444. "公式编辑",
  6445. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6446. "id": "formulaEdi",
  6447. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6448. "onresize": function () { }
  6449. }, {
  6450. closecallback: function () { }
  6451. }, { "style": { "height": "36px" } }).form; //创建窗体
  6452. _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); } }
  6453. break;
  6454. case "molStr": //分子结构
  6455. _formdiv = new U.UF.UI.form(
  6456. "分子结构",
  6457. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6458. "id": "molStr",
  6459. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6460. "onresize": function () { }
  6461. }, {
  6462. closecallback: function () { }
  6463. }, { "style": { "height": "36px" } }).form; //创建窗体
  6464. _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); } }
  6465. break;
  6466. case "timeAxis": //时间轴
  6467. _formdiv = new U.UF.UI.form(
  6468. "时间轴",
  6469. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6470. "id": "timeAxis",
  6471. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6472. "onresize": function () { }
  6473. }, {
  6474. closecallback: function () { }
  6475. }, { "style": { "height": "36px" } }).form; //创建窗体
  6476. _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); } }
  6477. break;
  6478. case "AIprogram2": //AI体验
  6479. _formdiv = new U.UF.UI.form(
  6480. "AI体验",
  6481. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6482. "id": "AIprogram2",
  6483. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6484. "onresize": function () { }
  6485. }, {
  6486. closecallback: function () { }
  6487. }, { "style": { "height": "36px" } }).form; //创建窗体
  6488. _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); } }
  6489. break;
  6490. case "Pythonprogram": //python编程
  6491. _formdiv = new U.UF.UI.form(
  6492. "Python编程",
  6493. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6494. "id": "Pythonprogram",
  6495. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6496. "onresize": function () { }
  6497. }, {
  6498. closecallback: function () { }
  6499. }, { "style": { "height": "36px" } }).form; //创建窗体
  6500. _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); } }
  6501. break;
  6502. case "AIprogram": //ai编程
  6503. _formdiv = new U.UF.UI.form(
  6504. "AI编程平台",
  6505. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6506. "id": "AIprogram",
  6507. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6508. "onresize": function () { }
  6509. }, {
  6510. closecallback: function () { }
  6511. }, { "style": { "height": "36px" } }).form; //创建窗体
  6512. _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); } }
  6513. break;
  6514. case "CocoPi": //CocoPi
  6515. _formdiv = new U.UF.UI.form(
  6516. "CocoPi",
  6517. $$("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" }), {
  6518. "id": "CocoPi",
  6519. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6520. "onresize": function () { }
  6521. }, {
  6522. closecallback: function () { }
  6523. }, { "style": { "height": "36px" } }).form; //创建窗体
  6524. _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); } }
  6525. break;
  6526. case "Wood": //Wood
  6527. _formdiv = new U.UF.UI.form(
  6528. "海龟编程",
  6529. $$("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/" }), {
  6530. "id": "Wood",
  6531. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6532. "onresize": function () { }
  6533. }, {
  6534. closecallback: function () { }
  6535. }, { "style": { "height": "36px" } }).form; //创建窗体
  6536. _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); } }
  6537. break;
  6538. case "car": //模拟驾驶
  6539. _formdiv = new U.UF.UI.form(
  6540. "模拟驾驶",
  6541. $$("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/" }), {
  6542. "id": "car",
  6543. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6544. "onresize": function () { }
  6545. }, {
  6546. closecallback: function () { }
  6547. }, { "style": { "height": "36px" } }).form; //创建窗体
  6548. _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); } }
  6549. break;
  6550. case "lineSearch": //路径搜索
  6551. _formdiv = new U.UF.UI.form(
  6552. "路径搜索",
  6553. $$("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/" }), {
  6554. "id": "lineSearch",
  6555. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6556. "onresize": function () { }
  6557. }, {
  6558. closecallback: function () { }
  6559. }, { "style": { "height": "36px" } }).form; //创建窗体
  6560. _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); } }
  6561. break;
  6562. case "deepLearning": //深度学习
  6563. _formdiv = new U.UF.UI.form(
  6564. "深度学习",
  6565. $$("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/#" }), {
  6566. "id": "deepLearning",
  6567. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6568. "onresize": function () { }
  6569. }, {
  6570. closecallback: function () { }
  6571. }, { "style": { "height": "36px" } }).form; //创建窗体
  6572. _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); } }
  6573. break;
  6574. case "allHistory": //深度学习
  6575. _formdiv = new U.UF.UI.form(
  6576. "全历史",
  6577. $$("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/" }), {
  6578. "id": "allHistory",
  6579. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6580. "onresize": function () { }
  6581. }, {
  6582. closecallback: function () { }
  6583. }, { "style": { "height": "36px" } }).form; //创建窗体
  6584. _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); } }
  6585. break;
  6586. case "chatPDF": //ai编程
  6587. _formdiv = new U.UF.UI.form(
  6588. "chatPDF",
  6589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6590. "id": "chatPDF",
  6591. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6592. "onresize": function () { }
  6593. }, {
  6594. closecallback: function () { }
  6595. }, { "style": { "height": "36px" } }).form; //创建窗体
  6596. _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); } }
  6597. break;
  6598. case "resources": //国家教育
  6599. _formdiv = new U.UF.UI.form(
  6600. "国家教育",
  6601. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6602. "id": "resources",
  6603. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6604. "onresize": function () { }
  6605. }, {
  6606. closecallback: function () { }
  6607. }, { "style": { "height": "36px" } }).form; //创建窗体
  6608. _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); } }
  6609. break;
  6610. case "codeEdit": //源码编辑
  6611. _formdiv = new U.UF.UI.form(
  6612. "源码编辑",
  6613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6614. "id": "codeEdit",
  6615. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6616. "onresize": function () { }
  6617. }, {
  6618. closecallback: function () { }
  6619. }, { "style": { "height": "36px" } }).form; //创建窗体
  6620. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6621. break; //
  6622. case "MindMap": //MindMap
  6623. _formdiv = new U.UF.UI.form(
  6624. "MindMap",
  6625. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6626. "id": "MindMap",
  6627. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6628. "onresize": function () { }
  6629. }, {
  6630. closecallback: function () { }
  6631. }, { "style": { "height": "36px" } }).form; //创建窗体
  6632. _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); } }
  6633. break;
  6634. case "netWorkPanel": //netWorkPanel
  6635. _formdiv = new U.UF.UI.form(
  6636. "netWorkPanel",
  6637. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6638. "id": "netWorkPanel",
  6639. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6640. "onresize": function () { }
  6641. }, {
  6642. closecallback: function () { }
  6643. }, { "style": { "height": "36px" } }).form; //创建窗体
  6644. _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); } }
  6645. break;
  6646. case "GeoGebra": //GeoGebra
  6647. _formdiv = new U.UF.UI.form(
  6648. "GeoGebra",
  6649. $$("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" }), {
  6650. "id": "GeoGebra",
  6651. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6652. "onresize": function () { }
  6653. }, {
  6654. closecallback: function () { }
  6655. }, { "style": { "height": "36px" } }).form; //创建窗体
  6656. _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); } }
  6657. break;
  6658. case "translation": //翻译
  6659. _formdiv = new U.UF.UI.form(
  6660. "翻译",
  6661. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6662. "id": "translation",
  6663. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6664. "onresize": function () { }
  6665. }, {
  6666. closecallback: function () { }
  6667. }, { "style": { "height": "36px" } }).form; //创建窗体
  6668. _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); } }
  6669. break;
  6670. case "mohe": //魔盒
  6671. _formdiv = new U.UF.UI.form(
  6672. "魔盒识字",
  6673. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6674. "id": "mohe",
  6675. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () { }
  6679. }, { "style": { "height": "36px" } }).form; //创建窗体
  6680. _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); } }
  6681. break;
  6682. case "24game": //24点
  6683. _formdiv = new U.UF.UI.form(
  6684. "24点",
  6685. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6686. "id": "24game",
  6687. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //创建窗体
  6692. _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); } }
  6693. break;
  6694. case "case":
  6695. _formdiv = new U.UF.UI.form(
  6696. "课程进展",
  6697. $$("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 }), {
  6698. "id": "case",
  6699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6700. "onresize": function () { }
  6701. }, {
  6702. closecallback: function () { }
  6703. }, { "style": { "height": "36px" } }).form; //创建窗体
  6704. _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); } }
  6705. break;
  6706. case "snf":
  6707. _formdiv = new U.UF.UI.form(
  6708. "赛诺梵",
  6709. $$("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" }), {
  6710. "id": "snf",
  6711. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6712. "onresize": function () { }
  6713. }, {
  6714. closecallback: function () { }
  6715. }, { "style": { "height": "36px" } }).form; //创建窗体
  6716. _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); } }
  6717. break;
  6718. case "hanFamily":
  6719. _formdiv = new U.UF.UI.form(
  6720. "汉字家族",
  6721. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6722. "id": "hanFamily",
  6723. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6724. "onresize": function () { }
  6725. }, {
  6726. closecallback: function () { }
  6727. }, { "style": { "height": "36px" } }).form; //创建窗体
  6728. _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); } }
  6729. break;
  6730. case "hanClassics":
  6731. _formdiv = new U.UF.UI.form(
  6732. "国学经典",
  6733. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6734. "id": "hanClassics",
  6735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () { }
  6739. }, { "style": { "height": "36px" } }).form; //创建窗体
  6740. _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); } }
  6741. break;
  6742. case "hanTraining":
  6743. _formdiv = new U.UF.UI.form(
  6744. "笔画训练",
  6745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6746. "id": "hanTraining",
  6747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6753. break;
  6754. case "hanClass":
  6755. _formdiv = new U.UF.UI.form(
  6756. "书法课堂",
  6757. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6758. "id": "hanClass",
  6759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6765. break;
  6766. case "han":
  6767. _formdiv = new U.UF.UI.form(
  6768. "汉字宫",
  6769. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6770. "id": "han",
  6771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6777. break;
  6778. case "projectGM": //课程管理
  6779. _formdiv = new U.UF.UI.form(
  6780. "课程管理",
  6781. $$("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 }), {
  6782. "id": "projectGM",
  6783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6789. break;
  6790. case "studyGM": //课程中心
  6791. _formdiv = new U.UF.UI.form(
  6792. "课程中心",
  6793. $$("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
  6794. "id": "study",
  6795. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6796. "onresize": function () { }
  6797. }, {
  6798. closecallback: function () { }
  6799. }, { "style": { "height": "36px" } }).form; //创建窗体
  6800. _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); } }
  6801. break;
  6802. // studentGM
  6803. case "studentGM": //学生管理
  6804. _formdiv = new U.UF.UI.form(
  6805. "学生管理",
  6806. $$("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 }), {
  6807. "id": "studentGM",
  6808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6809. "onresize": function () { }
  6810. }, {
  6811. closecallback: function () { }
  6812. }, { "style": { "height": "36px" } }).form; //创建窗体
  6813. _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); } }
  6814. break;
  6815. case "evaluateGM": //学生评价
  6816. _formdiv = new U.UF.UI.form(
  6817. "学生评价",
  6818. $$("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 }), {
  6819. "id": "evaluateGM",
  6820. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //创建窗体
  6825. _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); } }
  6826. break;
  6827. // classGM
  6828. case "classGM": //班级管理
  6829. _formdiv = new U.UF.UI.form(
  6830. "班级管理",
  6831. $$("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 }), {
  6832. "id": "classGM",
  6833. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6834. "onresize": function () { }
  6835. }, {
  6836. closecallback: function () { }
  6837. }, { "style": { "height": "36px" } }).form; //创建窗体
  6838. _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); } }
  6839. break;
  6840. // dataGM
  6841. case "dataGM":
  6842. _formdiv = new U.UF.UI.form(
  6843. "我的资料",
  6844. $$("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 }), {
  6845. "id": "dataGM",
  6846. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6847. "onresize": function () { }
  6848. }, {
  6849. closecallback: function () { }
  6850. }, { "style": { "height": "36px" } }).form; //创建窗体
  6851. _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); } }
  6852. break;
  6853. // caseGM
  6854. case "caseGM": //课程进展
  6855. _formdiv = new U.UF.UI.form(
  6856. "课程进展",
  6857. $$("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 }), {
  6858. "id": "caseGM",
  6859. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6860. "onresize": function () { }
  6861. }, {
  6862. closecallback: function () { }
  6863. }, { "style": { "height": "36px" } }).form; //创建窗体
  6864. _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); } }
  6865. break;
  6866. // meterialGM
  6867. case "meterialGM": //素材库
  6868. _formdiv = new U.UF.UI.form(
  6869. "素材库",
  6870. $$("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 }), {
  6871. "id": "meterialGM",
  6872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6873. "onresize": function () { }
  6874. }, {
  6875. closecallback: function () { }
  6876. }, { "style": { "height": "36px" } }).form; //创建窗体
  6877. _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); } }
  6878. break;
  6879. // evaluateSGM
  6880. case "evaluateSGM": //我的评价
  6881. _formdiv = new U.UF.UI.form(
  6882. "我的评价",
  6883. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6884. "id": "evaluateSGM",
  6885. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6886. "onresize": function () { }
  6887. }, {
  6888. closecallback: function () { }
  6889. }, { "style": { "height": "36px" } }).form; //创建窗体
  6890. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6891. break;
  6892. case "jupyter": //jupyter
  6893. _formdiv = new U.UF.UI.form(
  6894. "jupyter",
  6895. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6896. "id": "jupyter",
  6897. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6898. "onresize": function () { }
  6899. }, {
  6900. closecallback: function () { }
  6901. }, { "style": { "height": "36px" } }).form; //创建窗体
  6902. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6903. break;
  6904. case "number": //数字实验室
  6905. _formdiv = new U.UF.UI.form(
  6906. "数字实验室",
  6907. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6908. "id": "number",
  6909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6910. "onresize": function () { }
  6911. }, {
  6912. closecallback: function () { }
  6913. }, { "style": { "height": "36px" } }).form; //创建窗体
  6914. _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); } }
  6915. break;
  6916. case "studentCourse": //项目管理 学生
  6917. _formdiv = new U.UF.UI.form(
  6918. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6919. $$("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 }), {
  6920. "id": "studentCourse",
  6921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6922. "onresize": function () { }
  6923. }, {
  6924. closecallback: function () { }
  6925. }, { "style": { "height": "36px" } }).form; //创建窗体
  6926. _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); } }
  6927. break;
  6928. case "studentCourseS": //项目管理 老师
  6929. _formdiv = new U.UF.UI.form(
  6930. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6931. $$("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 }), {
  6932. "id": "studentCourseS",
  6933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6934. "onresize": function () { }
  6935. }, {
  6936. closecallback: function () { }
  6937. }, { "style": { "height": "36px" } }).form; //创建窗体
  6938. _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); } }
  6939. break;
  6940. case "studentIndex": //项目中心
  6941. _formdiv = new U.UF.UI.form(
  6942. "项目中心",
  6943. $$("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 }), {
  6944. "id": "studentIndex",
  6945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6946. "onresize": function () { }
  6947. }, {
  6948. closecallback: function () { }
  6949. }, { "style": { "height": "36px" } }).form; //创建窗体
  6950. _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); } }
  6951. break;
  6952. case "CaseDesignS":
  6953. _formdiv = new U.UF.UI.form(
  6954. "项目进展",
  6955. $$("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 }), {
  6956. "id": "case",
  6957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6958. "onresize": function () { }
  6959. }, {
  6960. closecallback: function () { }
  6961. }, { "style": { "height": "36px" } }).form; //创建窗体
  6962. _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); } }
  6963. break;
  6964. case "tcStudent": //腾讯学生管理
  6965. _formdiv = new U.UF.UI.form(
  6966. "学生管理",
  6967. $$("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 }), {
  6968. "id": "tcStudent",
  6969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6970. "onresize": function () { }
  6971. }, {
  6972. closecallback: function () { }
  6973. }, { "style": { "height": "36px" } }).form; //创建窗体
  6974. _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); } }
  6975. break;
  6976. case "tcSchool": //腾讯学校管理
  6977. _formdiv = new U.UF.UI.form(
  6978. "学校管理",
  6979. $$("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 }), {
  6980. "id": "tcSchool",
  6981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6982. "onresize": function () { }
  6983. }, {
  6984. closecallback: function () { }
  6985. }, { "style": { "height": "36px" } }).form; //创建窗体
  6986. _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); } }
  6987. break;
  6988. case "tcTeacher": //腾讯学校管理
  6989. _formdiv = new U.UF.UI.form(
  6990. "教师管理",
  6991. $$("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 }), {
  6992. "id": "tcTeacher",
  6993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6994. "onresize": function () { }
  6995. }, {
  6996. closecallback: function () { }
  6997. }, { "style": { "height": "36px" } }).form; //创建窗体
  6998. _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); } }
  6999. break;
  7000. case "teacher":
  7001. _formdiv = new U.UF.UI.form(
  7002. "教师管理",
  7003. $$("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 }), {
  7004. "id": "teacher",
  7005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7006. "onresize": function () { }
  7007. }, {
  7008. closecallback: function () { }
  7009. }, { "style": { "height": "36px" } }).form; //创建窗体
  7010. _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); } }
  7011. break;
  7012. case "tcData": //腾讯我的资料
  7013. _formdiv = new U.UF.UI.form(
  7014. "我的资料",
  7015. $$("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 }), {
  7016. "id": "tcData",
  7017. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7018. "onresize": function () { }
  7019. }, {
  7020. closecallback: function () { }
  7021. }, { "style": { "height": "36px" } }).form; //创建窗体
  7022. _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); } }
  7023. break;
  7024. case "tcNotice": //腾讯消息通知
  7025. _formdiv = new U.UF.UI.form(
  7026. "消息通知",
  7027. $$("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 }), {
  7028. "id": "tcNotice",
  7029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7030. "onresize": function () { }
  7031. }, {
  7032. closecallback: function () { }
  7033. }, { "style": { "height": "36px" } }).form; //创建窗体
  7034. _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); } }
  7035. break;
  7036. case "myReport": //好友打开
  7037. _formdiv = new U.UF.UI.form(
  7038. "我的评价",
  7039. $$("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 }), {
  7040. "id": "myReport",
  7041. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7042. "onresize": function () { }
  7043. }, {
  7044. closecallback: function () { }
  7045. }, { "style": { "height": "36px" } }).form; //创建窗体
  7046. _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); } }
  7047. break;
  7048. case "learnAna": //好友打开
  7049. _formdiv = new U.UF.UI.form(
  7050. "学习分析",
  7051. $$("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 }), {
  7052. "id": "learnAna",
  7053. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7054. "onresize": function () { }
  7055. }, {
  7056. closecallback: function () { }
  7057. }, { "style": { "height": "36px" } }).form; //创建窗体
  7058. _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); } }
  7059. break;
  7060. case "AIChat": //AI共创
  7061. _formdiv = new U.UF.UI.form(
  7062. "AI共创",
  7063. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7064. "id": "AIChat",
  7065. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7066. "onresize": function () { }
  7067. }, {
  7068. istop: true,
  7069. closecallback: function () { $("#aichat_icon").remove(); },
  7070. narrowcallback: function () {
  7071. if (!$("#aichat_icon")[0]) {
  7072. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7073. }
  7074. },
  7075. }, { "style": { "height": "36px" } }).form; //创建窗体
  7076. _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); } }
  7077. break;
  7078. case "ainew": //AI共创
  7079. _formdiv = new U.UF.UI.form(
  7080. "AI协同",
  7081. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7082. "id": "ainew",
  7083. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7084. "onresize": function () { }
  7085. }, {
  7086. closecallback: function () { }
  7087. }, { "style": { "height": "36px" } }).form; //创建窗体
  7088. _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); } }
  7089. break;
  7090. case "gpt4": //gpt4
  7091. _formdiv = new U.UF.UI.form(
  7092. "AI助手",
  7093. $$("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 }), {
  7094. "id": "gpt4",
  7095. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7096. "onresize": function () { }
  7097. }, {
  7098. closecallback: function () { }
  7099. }, { "style": { "height": "36px" } }).form; //创建窗体
  7100. _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); } }
  7101. break;
  7102. case "aigpt": //gpt4
  7103. _formdiv = new U.UF.UI.form(
  7104. "AI助手+",
  7105. $$("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 }), {
  7106. "id": "aigpt",
  7107. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7108. "onresize": function () { }
  7109. }, {
  7110. closecallback: function () {
  7111. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7112. }
  7113. }, { "style": { "height": "36px" } }).form; //创建窗体
  7114. _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); } }
  7115. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7116. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7117. })
  7118. break;
  7119. case "aiKnowledge": //aiKnowledge
  7120. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7121. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7122. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7123. }
  7124. _formdiv = new U.UF.UI.form(
  7125. "知识建构",
  7126. $$("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 }), {
  7127. "id": "aiKnowledge",
  7128. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7129. "onresize": function () { }
  7130. }, {
  7131. closecallback: function () { }
  7132. }, { "style": { "height": "36px" } }).form; //创建窗体
  7133. _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); } }
  7134. break;
  7135. case "futureClass": //AI共创
  7136. _formdiv = new U.UF.UI.form(
  7137. "协同建构",
  7138. $$("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
  7139. "id": "synergyCourse",
  7140. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7141. "onresize": function () { }
  7142. }, {
  7143. closecallback: function () {
  7144. $("iframe", _formdiv)[0].contentWindow.loginout();
  7145. }
  7146. }, { "style": { "height": "36px" } }).form; //创建窗体
  7147. _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); } }
  7148. break;
  7149. case "aiagent": //ai agent
  7150. _formdiv = new U.UF.UI.form(
  7151. "AI Agent",
  7152. $$("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" }), {
  7153. "id": "AIAgent",
  7154. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7155. "onresize": function () { }
  7156. }, {
  7157. closecallback: function () { }
  7158. }, { "style": { "height": "36px" } }).form; //创建窗体
  7159. _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); } }
  7160. break;
  7161. case "dataBoard": //数据看板
  7162. _formdiv = new U.UF.UI.form(
  7163. "数据看板",
  7164. $$("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 }), {
  7165. "id": "dataBoard",
  7166. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7167. "onresize": function () { }
  7168. }, {
  7169. closecallback: function () { }
  7170. }, { "style": { "height": "36px" } }).form; //创建窗体
  7171. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7172. break;
  7173. case "dataBoardSies": //数据融合
  7174. _formdiv = new U.UF.UI.form(
  7175. "数据融合",
  7176. $$("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 }), {
  7177. "id": "dataBoardSies",
  7178. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7179. "onresize": function () { }
  7180. }, {
  7181. closecallback: function () { }
  7182. }, { "style": { "height": "36px" } }).form; //创建窗体
  7183. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7184. break;
  7185. case "dataBoardNew": //数据看板
  7186. _formdiv = new U.UF.UI.form(
  7187. "综合看板",
  7188. $$("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 }), {
  7189. "id": "dataBoardNew",
  7190. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7191. "onresize": function () { }
  7192. }, {
  7193. closecallback: function () { }
  7194. }, { "style": { "height": "36px" } }).form; //创建窗体
  7195. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7196. break;
  7197. case "dataBoardTest": //数据看板
  7198. _formdiv = new U.UF.UI.form(
  7199. "评测看板",
  7200. $$("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 }), {
  7201. "id": "dataBoardTest",
  7202. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7203. "onresize": function () { }
  7204. }, {
  7205. closecallback: function () { }
  7206. }, { "style": { "height": "36px" } }).form; //创建窗体
  7207. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7208. break;
  7209. case "AIAnalyse": //AI共创
  7210. _formdiv = new U.UF.UI.form(
  7211. "AI分析",
  7212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7213. "id": "AIAnalyse",
  7214. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7215. "onresize": function () { }
  7216. }, {
  7217. closecallback: function () { }
  7218. }, { "style": { "height": "36px" } }).form; //创建窗体
  7219. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7220. break;
  7221. case "studioCourse": //AI共创
  7222. _formdiv = new U.UF.UI.form(
  7223. "工作管理",
  7224. $$("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 }), {
  7225. "id": "studioCourse",
  7226. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7227. "onresize": function () { }
  7228. }, {
  7229. closecallback: function () { }
  7230. }, { "style": { "height": "36px" } }).form; //创建窗体
  7231. _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); } }
  7232. break;
  7233. case "studioIndex": //AI共创
  7234. _formdiv = new U.UF.UI.form(
  7235. "工作中心",
  7236. $$("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 }), {
  7237. "id": "studioIndex",
  7238. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7239. "onresize": function () { }
  7240. }, {
  7241. closecallback: function () { }
  7242. }, { "style": { "height": "36px" } }).form; //创建窗体
  7243. _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); } }
  7244. break;
  7245. case "source":
  7246. _formdiv = new U.UF.UI.form(
  7247. "教学资源",
  7248. $$("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 }), {
  7249. "id": "source",
  7250. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7251. "onresize": function () { }
  7252. }, {
  7253. closecallback: function () { }
  7254. }, { "style": { "height": "36px" } }).form; //创建窗体
  7255. _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); } }
  7256. break;
  7257. case "testTeacher":
  7258. _formdiv = new U.UF.UI.form(
  7259. "智能表单",
  7260. $$("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 }), {
  7261. "id": "testTeacher",
  7262. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7263. "onresize": function () { }
  7264. }, {
  7265. closecallback: function () { }
  7266. }, { "style": { "height": "36px" } }).form; //创建窗体
  7267. _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); } }
  7268. break;
  7269. case "testStudent":
  7270. _formdiv = new U.UF.UI.form(
  7271. "教师中心",
  7272. $$("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 }), {
  7273. "id": "testStudent",
  7274. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7275. "onresize": function () { }
  7276. }, {
  7277. closecallback: function () { }
  7278. }, { "style": { "height": "36px" } }).form; //创建窗体
  7279. _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); } }
  7280. break;
  7281. case "testTeacherSies":
  7282. _formdiv = new U.UF.UI.form(
  7283. "教师管理",
  7284. $$("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 }), {
  7285. "id": "testTeacherSies",
  7286. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7287. "onresize": function () { }
  7288. }, {
  7289. closecallback: function () { }
  7290. }, { "style": { "height": "36px" } }).form; //创建窗体
  7291. _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); } }
  7292. break;
  7293. case "testStudentSies":
  7294. _formdiv = new U.UF.UI.form(
  7295. "教师中心",
  7296. $$("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 }), {
  7297. "id": "testStudentSies",
  7298. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7299. "onresize": function () { }
  7300. }, {
  7301. closecallback: function () { }
  7302. }, { "style": { "height": "36px" } }).form; //创建窗体
  7303. _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); } }
  7304. break;
  7305. case "ytpbl": //消息通知
  7306. _formdiv = new U.UF.UI.form(
  7307. "案例征集",
  7308. $$("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 }), {
  7309. "id": "ytpbl",
  7310. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7311. "onresize": function () { }
  7312. }, {
  7313. closecallback: function () { }
  7314. }, { "style": { "height": "36px" } }).form; //创建窗体
  7315. _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); } }
  7316. // 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");
  7317. break;
  7318. case "aiCourseResource": //人工智能窗体
  7319. _formdiv = new U.UF.UI.form(
  7320. false,
  7321. $$("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 }), {
  7322. "id": "aiCourseResource",
  7323. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7324. "onresize": function () { },
  7325. "isdrag": false,
  7326. }, {
  7327. closecallback: function () { }
  7328. }, { "style": { "height": "36px" } }).form; //创建窗体
  7329. _taskbar = ''
  7330. break;
  7331. case "szdjgCocooroboX": //图形化编程
  7332. _formdiv = new U.UF.UI.form(
  7333. "图形化编程",
  7334. $$("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" }), {
  7335. "id": "szdjgCocooroboX",
  7336. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7337. "onresize": function () { }
  7338. }, {
  7339. closecallback: function () { }
  7340. }, { "style": { "height": "36px" } }).form; //创建窗体
  7341. _taskbar = ''
  7342. break;
  7343. case "szdjgPython": //python编程
  7344. _formdiv = new U.UF.UI.form(
  7345. "Python编程",
  7346. $$("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" }), {
  7347. "id": "szdjgPython",
  7348. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7349. "onresize": function () { }
  7350. }, {
  7351. closecallback: function () { }
  7352. }, { "style": { "height": "36px" } }).form; //创建窗体
  7353. _taskbar = ''
  7354. break;
  7355. case "Record":
  7356. _formdiv = new U.UF.UI.form(
  7357. "观察记录",
  7358. $$("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 }), {
  7359. "id": "Record",
  7360. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7361. "onresize": function () { }
  7362. }, {
  7363. closecallback: function () { }
  7364. }, { "style": { "height": "36px" } }).form; //创建窗体
  7365. _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); } }
  7366. break;
  7367. case "aigptCourse":
  7368. _formdiv = new U.UF.UI.form(
  7369. "AI智能体",
  7370. $$("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' }), {
  7371. "id": "aigptCourse",
  7372. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7373. "onresize": function () { }
  7374. }, {
  7375. closecallback: function () { }
  7376. }, { "style": { "height": "36px" } }).form; //创建窗体
  7377. _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); } }
  7378. break;
  7379. case "classroomObservation":
  7380. _formdiv = new U.UF.UI.form(
  7381. "课堂观察",
  7382. $$("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 }), {
  7383. "id": "classroomObservation",
  7384. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7385. "onresize": function () { }
  7386. }, {
  7387. closecallback: function () { }
  7388. }, { "style": { "height": "36px" } }).form; //创建窗体
  7389. _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); } }
  7390. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7391. break;
  7392. case "pblCourse":
  7393. _formdiv = new U.UF.UI.form(
  7394. "学生PBL",
  7395. $$("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 }), {
  7396. "id": "pblCourse",
  7397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7398. "onresize": function () { }
  7399. }, {
  7400. closecallback: function () { }
  7401. }, { "style": { "height": "36px" } }).form; //创建窗体
  7402. _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); } }
  7403. break;
  7404. case "appStore":
  7405. U.MD.D.addOp('','cocoflowOpen','')
  7406. _formdiv = new U.UF.UI.form(
  7407. "CocoFlow",
  7408. $$("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": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7409. "id": "appStore",
  7410. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7411. "onresize": function () { }
  7412. }, {
  7413. closecallback: function () { }
  7414. }, { "style": { "height": "36px" } }).form; //创建窗体
  7415. _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); } }
  7416. break;
  7417. case "sassPlatform":
  7418. _formdiv = new U.UF.UI.form(
  7419. "Sass通用后台管理",
  7420. $$("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 }), {
  7421. "id": "sassPlatform",
  7422. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7423. "onresize": function () { }
  7424. }, {
  7425. closecallback: function () { }
  7426. }, { "style": { "height": "36px" } }).form; //创建窗体
  7427. _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); } }
  7428. break;
  7429. case "EDU":
  7430. _formdiv = new U.UF.UI.form(
  7431. "EDU",
  7432. $$("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" }), {
  7433. "id": "EDU",
  7434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7435. "onresize": function () { }
  7436. }, {
  7437. closecallback: function () { }
  7438. }, { "style": { "height": "36px" } }).form; //创建窗体
  7439. _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); } }
  7440. break;
  7441. case "knowledge":
  7442. _formdiv = new U.UF.UI.form(
  7443. "知识库",
  7444. $$("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 }), {
  7445. "id": "knowledge",
  7446. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7447. "onresize": function () { }
  7448. }, {
  7449. closecallback: function () { }
  7450. }, { "style": { "height": "36px" } }).form; //创建窗体
  7451. _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); } }
  7452. break;
  7453. case "userExamine":
  7454. _formdiv = new U.UF.UI.form(
  7455. "账号申请",
  7456. $$("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" }), {
  7457. "id": "userExamine",
  7458. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7459. "onresize": function () { }
  7460. }, {
  7461. closecallback: function () { }
  7462. }, { "style": { "height": "36px" } }).form; //创建窗体
  7463. break;
  7464. case "cocoflowDeskTop": //cocoflowDeskTop
  7465. _formdiv = new U.UF.UI.form(
  7466. false,
  7467. $$("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 }), {
  7468. "id": "cocoflowDeskTop",
  7469. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7470. "onresize": function () { },
  7471. }, {
  7472. closecallback: function () { },
  7473. "isdrag": false,
  7474. }, { "style": { "height": "36px" } }).form; //创建窗体
  7475. _taskbar = ''
  7476. break;
  7477. case "liyuanLogin": //liyuanLogin
  7478. _formdiv = new U.UF.UI.form(
  7479. false,
  7480. $$("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": "//liyuan.cocorobo.cn" }), {
  7481. "id": "liyuanLogin",
  7482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7483. "onresize": function () { },
  7484. }, {
  7485. closecallback: function () { },
  7486. isdrag: false,
  7487. isstretching: false,
  7488. isenlarge: false,
  7489. isnarrow: false
  7490. }, { "style": { "height": "36px" } }).form; //创建窗体
  7491. _taskbar = ''
  7492. break;
  7493. case "updatePaDialog":
  7494. _formdiv = new U.UF.UI.form(
  7495. "密码修改",
  7496. $$("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/#/changePswd?userid=" + _userid }), {
  7497. "id": "updatePaDialog",
  7498. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7499. "onresize": function () { },
  7500. }, {
  7501. closecallback: function () { },
  7502. isclose: false,
  7503. isdrag: false,
  7504. isstretching: false,
  7505. isenlarge: false,
  7506. isnarrow: false
  7507. }, { "style": { "height": "36px" } }).form; //创建窗体
  7508. break;
  7509. }
  7510. //U.MD.D.I.openClick(str);
  7511. //如果有任务栏信息
  7512. if (_taskbar) {
  7513. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7514. }
  7515. if(iframeBool){
  7516. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7517. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7518. // console.log("iframe进入");
  7519. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7520. // };
  7521. setTimeout(() => {
  7522. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7523. }, 2000);
  7524. }
  7525. }
  7526. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7527. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7528. _userinfo = US.userInfo, //登录用户信息
  7529. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7530. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7531. let iframeBool = true;
  7532. let queryString = ''
  7533. if(array && array.length){
  7534. const paramsMap = {
  7535. userid: _userid,
  7536. org: _org,
  7537. oid: _oid,
  7538. type: _type,
  7539. role: _role,
  7540. classId: _classId,
  7541. TscreenType: _TscreenType,
  7542. SscreenType: _SscreenType
  7543. };
  7544. const canshu = array
  7545. .filter(param => paramsMap[param] !== undefined)
  7546. .map(param => `${param}=${paramsMap[param]}`);
  7547. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7548. }
  7549. let _url = url + queryString
  7550. if(U.UF.UI.form.allForm[id]){
  7551. iframeBool = false
  7552. }
  7553. _formdiv = new U.UF.UI.form(
  7554. false,
  7555. $$("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 }),
  7556. {
  7557. "id": id,
  7558. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7559. "onresize": function () { },
  7560. },
  7561. {
  7562. closecallback: function () { },
  7563. isdrag: false,
  7564. isstretching: false,
  7565. isenlarge: false,
  7566. isnarrow: false
  7567. },
  7568. { "style": { "height": "36px" } },
  7569. undefined,
  7570. undefined,
  7571. dom
  7572. ).form
  7573. }
  7574. // U.MD.D.I.openClick = function(str){
  7575. // var click = '';
  7576. // switch(str){
  7577. // case 'friend':
  7578. // click = '我的好友';
  7579. // break;
  7580. // case 'domain':
  7581. // click = '域名管理';
  7582. // break;
  7583. // case 'disk':
  7584. // click = '我的云盘';
  7585. // break;
  7586. // case 'word':
  7587. // click = 'Word';
  7588. // break;
  7589. // case 'excel':
  7590. // click = 'Execl';
  7591. // break;
  7592. // case 'txt':
  7593. // click = '文本文件';
  7594. // break;
  7595. // case 'lookupFriend':
  7596. // click = '查找好友';
  7597. // break;
  7598. // case 'ftp':
  7599. // click = 'FTP';
  7600. // break;
  7601. // case 'group':
  7602. // click = '群组';
  7603. // break;
  7604. // case 'set':
  7605. // click = '我的设置';
  7606. // break;
  7607. // case 'systemSet':
  7608. // click = '系统设置';
  7609. // break;
  7610. // case 'boomYun':
  7611. // click = '互联办公';
  7612. // break;
  7613. // case 'xz':
  7614. // click = '云端下载';
  7615. // break;
  7616. // case 'client':
  7617. // click = '有思浏览器';
  7618. // break;
  7619. // case 'backEndProgramming':
  7620. // click = '在线后台编程';
  7621. // break;
  7622. // case 'frontEndProgramming':
  7623. // click = '在线前端编程';
  7624. // break;
  7625. // default: break;
  7626. // }
  7627. // if(U.MD.D.I.Ip && click){
  7628. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7629. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7630. // })
  7631. // }
  7632. // }
  7633. /**
  7634. *函数作用:ajax简易函数,使用post格式
  7635. *@param url {data} 后台地址
  7636. *@param data {data} 参数json
  7637. *@param fn {data} 回调函数
  7638. *
  7639. */
  7640. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7641. // var xhr = new XMLHttpRequest();
  7642. // xhr.open("GET",url,true);
  7643. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7644. // xhr.onreadystatechange = function(){
  7645. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7646. // fn.call(this,xhr.responseText);
  7647. // }
  7648. // };
  7649. // xhr.send();
  7650. // }
  7651. /*判断是否是内网IP*/
  7652. // U.MD.D.I.isInnerIPFn = function(str){
  7653. // var curPageUrl = str;
  7654. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7655. // curPageUrl =curPageUrl.replace(reg1,'');
  7656. // // console.log('curPageUrl-1 '+curPageUrl);
  7657. // var reg2 = /\:+/g;//替换冒号为一点
  7658. // curPageUrl =curPageUrl.replace(reg2,'.');
  7659. // // console.log('curPageUrl-2 '+curPageUrl);
  7660. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7661. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7662. // if(curPageUrl[2] != '16'){
  7663. // return ipAddress;
  7664. // }else{
  7665. // return false;
  7666. // }
  7667. // }
  7668. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7669. // //compatibility for firefox and chrome
  7670. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7671. // var pc = new myPeerConnection({
  7672. // iceServers: []
  7673. // }),
  7674. // noop = function() {},
  7675. // localIPs = {},
  7676. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7677. // key;
  7678. // function iterateIP(ip) {
  7679. // if (!localIPs[ip]) onNewIP(ip);
  7680. // localIPs[ip] = true;
  7681. // }
  7682. // //create a bogus data channel
  7683. // pc.createDataChannel("");
  7684. // // create offer and set local description
  7685. // pc.createOffer().then(function(sdp) {
  7686. // sdp.sdp.split('\n').forEach(function(line) {
  7687. // if (line.indexOf('candidate') < 0) return;
  7688. // line.match(ipRegex).forEach(iterateIP);
  7689. // });
  7690. // pc.setLocalDescription(sdp, noop, noop);
  7691. // }).catch(function(reason) {
  7692. // // An error occurred, so handle the failure to connect
  7693. // });
  7694. // //sten for candidate events
  7695. // pc.onicecandidate = function(ice) {
  7696. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7697. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7698. // };
  7699. // }
  7700. // U.MD.D.I.getUserIpBool = function(callback){
  7701. // U.MD.D.I.getUserIP(function(ip){
  7702. // alert("Got IP! :" + ip);
  7703. // });
  7704. //}
  7705. //#endregion
  7706. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7707. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7708. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7709. _userinfo = US.userInfo, //登录用户信息
  7710. _userid = US.userInfo.userid //登录用户id
  7711. let _iframe;
  7712. let _cid = cid,
  7713. _stage = stage,
  7714. _task = task,
  7715. _tool = tool;
  7716. var _jie = $$("div", {
  7717. "style": {
  7718. "position": "absolute",
  7719. "bottom": "50px",
  7720. "right": "50px",
  7721. "zIndex": "9999",
  7722. "backgroundColor": "#2268bc",
  7723. "color": "#fff",
  7724. "padding": "12px 20px",
  7725. "cursor": "pointer",
  7726. "borderRadius": "4px",
  7727. },
  7728. "innerHTML": "提交作业"
  7729. })
  7730. let aTool = ''
  7731. let _loading = document.createElement('div')
  7732. _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;"
  7733. // _loading.id = "";
  7734. let _lchild = document.createElement('div')
  7735. let _limg = document.createElement('img')
  7736. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7737. _limg.style = "width: 26px;margin-right: 10px;"
  7738. _lchild.appendChild(_limg)
  7739. let _lspan = document.createElement('span')
  7740. _lspan.innerHTML = "上传中..."
  7741. _lchild.appendChild(_lspan)
  7742. _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%);"
  7743. _loading.appendChild(_lchild)
  7744. var _box = $$('div', {
  7745. "style": {
  7746. "position": "relative",
  7747. "width": "100%",
  7748. "height": "100%",
  7749. },
  7750. })
  7751. _box.appendChild(_loading)
  7752. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7753. switch (str) {
  7754. case "whiteboard":
  7755. aTool = 1;
  7756. _iframe = $$("iframe", {
  7757. "frameborder": "no",
  7758. "border": "0",
  7759. "scrolling ": "no",
  7760. "style": {
  7761. "cssText": "border:0;width:100%;height:100%"
  7762. },
  7763. "src": "https://beta.iwb.cocorobo.cn/"
  7764. })
  7765. _box.appendChild(_iframe);
  7766. _box.appendChild(_jie);
  7767. _formdiv = new U.UF.UI.form(
  7768. "电子白板",
  7769. _box, {
  7770. "id": "whiteboard" + cid + stage + task + tool,
  7771. "style": {
  7772. "width": "90%",
  7773. "height": "90%",
  7774. "overflow": 'hidden'
  7775. },
  7776. "onresize": function () { }
  7777. }, {
  7778. closecallback: function () { }
  7779. }, {
  7780. "style": {
  7781. "height": "36px"
  7782. }
  7783. }).form; //创建窗体
  7784. _taskbar = {
  7785. "id": str + _formdiv.id,
  7786. "style": {
  7787. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7788. },
  7789. "name": "电子白板",
  7790. "forms": _formdiv,
  7791. "click": function () {
  7792. U.MD.D.I.openApplication(str, obj, info);
  7793. }
  7794. }
  7795. break;
  7796. case "mind":
  7797. aTool = 3;
  7798. _iframe = $$("iframe", {
  7799. "frameborder": "no",
  7800. "border": "0",
  7801. "scrolling ": "no",
  7802. "style": {
  7803. "cssText": "border:0;width:100%;height:100%"
  7804. },
  7805. "src": "/kityminder-editor/dist/index.html"
  7806. })
  7807. _box.appendChild(_iframe);
  7808. _box.appendChild(_jie);
  7809. _formdiv = new U.UF.UI.form(
  7810. "思维导图",
  7811. _box, { //"/jsmind/example/demo.html"
  7812. "id": "mind" + cid + stage + task + tool,
  7813. "style": {
  7814. "width": "90%",
  7815. "height": "90%",
  7816. "overflow": 'hidden'
  7817. },
  7818. "onresize": function () { }
  7819. }, {
  7820. closecallback: function () { }
  7821. }, {
  7822. "style": {
  7823. "height": "36px"
  7824. }
  7825. }).form; //创建窗体
  7826. _taskbar = {
  7827. "id": str + _formdiv.id,
  7828. "style": {
  7829. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7830. },
  7831. "name": "思维导图",
  7832. "forms": _formdiv,
  7833. "click": function () {
  7834. U.MD.D.I.openApplication(str, obj, info);
  7835. }
  7836. }
  7837. break;
  7838. case "MindMap":
  7839. aTool = 3;
  7840. _iframe = $$("iframe", {
  7841. "frameborder": "no",
  7842. "border": "0",
  7843. "scrolling ": "no",
  7844. "style": {
  7845. "cssText": "border:0;width:100%;height:100%"
  7846. },
  7847. "src": "//cloud.cocorobo.cn/mind/"
  7848. })
  7849. _box.appendChild(_iframe);
  7850. _box.appendChild(_jie);
  7851. _formdiv = new U.UF.UI.form(
  7852. "思维导图",
  7853. _box, { //"/jsmind/example/demo.html"
  7854. "id": "mind" + cid + stage + task + tool,
  7855. "style": {
  7856. "width": "90%",
  7857. "height": "90%",
  7858. "overflow": 'hidden'
  7859. },
  7860. "onresize": function () { }
  7861. }, {
  7862. closecallback: function () { }
  7863. }, {
  7864. "style": {
  7865. "height": "36px"
  7866. }
  7867. }).form; //创建窗体
  7868. _taskbar = {
  7869. "id": str + _formdiv.id,
  7870. "style": {
  7871. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7872. },
  7873. "name": "思维导图",
  7874. "forms": _formdiv,
  7875. "click": function () {
  7876. U.MD.D.I.openApplication(str, obj, info);
  7877. }
  7878. }
  7879. break;
  7880. case "doc":
  7881. aTool = 6;
  7882. _iframe = $$("iframe", {
  7883. "frameborder": "no",
  7884. "border": "0",
  7885. "scrolling ": "no",
  7886. "style": {
  7887. "cssText": "border:0;width:100%;height:100%"
  7888. },
  7889. "src": "/Office/Word/WordEditArea.htm"
  7890. })
  7891. _box.appendChild(_iframe);
  7892. _box.appendChild(_jie);
  7893. _formdiv = new U.UF.UI.form(
  7894. "协同文档",
  7895. _box, {
  7896. "id": "doc" + cid + stage + task + tool,
  7897. "style": {
  7898. "width": "90%",
  7899. "height": "90%",
  7900. "overflow": 'hidden'
  7901. },
  7902. "onresize": function () { }
  7903. }, {
  7904. closecallback: function () { }
  7905. }, {
  7906. "style": {
  7907. "height": "36px"
  7908. }
  7909. }).form; //创建窗体
  7910. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7911. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7912. })
  7913. _taskbar = {
  7914. "id": str + _formdiv.id,
  7915. "style": {
  7916. "backgroundImage": "url(/img/icon/doc.png)"
  7917. },
  7918. "name": "协同文档",
  7919. "forms": _formdiv,
  7920. "click": function () {
  7921. U.MD.D.I.openApplication(str, obj, info);
  7922. }
  7923. }
  7924. break;
  7925. case "mindNetwork": //好友打开
  7926. aTool = 7;
  7927. _iframe = $$("iframe", {
  7928. "webkitallowfullscreen": "",
  7929. "mozallowfullscreen": "",
  7930. "allowfullscreen": "",
  7931. "frameborder": "no",
  7932. "border": "0",
  7933. "scrolling ": "no",
  7934. "style": {
  7935. "cssText": "border:0; width:100%; height:100%;"
  7936. },
  7937. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7938. })
  7939. _box.appendChild(_iframe);
  7940. _box.appendChild(_jie);
  7941. _formdiv = new U.UF.UI.form(
  7942. "思维网格",
  7943. _box, {
  7944. "id": "mindNetwork" + cid + stage + task + tool,
  7945. "style": {
  7946. "width": "90%",
  7947. "height": "90%",
  7948. "overflow": 'hidden'
  7949. },
  7950. "onresize": function () { }
  7951. }, {
  7952. closecallback: function () { }
  7953. }, {
  7954. "style": {
  7955. "height": "36px"
  7956. }
  7957. }).form; //创建窗体
  7958. _taskbar = {
  7959. "id": str + _formdiv.id,
  7960. "style": {
  7961. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7962. },
  7963. "name": "思维网格",
  7964. "forms": _formdiv,
  7965. "click": function () {
  7966. U.MD.D.I.openApplication(str, obj, info);
  7967. }
  7968. }
  7969. break;
  7970. case "courseDesign":
  7971. _iframe = $$("iframe", {
  7972. "webkitallowfullscreen": "",
  7973. "mozallowfullscreen": "",
  7974. "allowfullscreen": "",
  7975. "frameborder": "no",
  7976. "border": "0",
  7977. "scrolling ": "no",
  7978. "style": {
  7979. "cssText": "border:0; width:100%; height:100%;"
  7980. },
  7981. "src": "/course-design-vue"
  7982. })
  7983. _box.appendChild(_iframe);
  7984. _box.appendChild(_jie);
  7985. _formdiv = new U.UF.UI.form(
  7986. "项目设计",
  7987. _box, {
  7988. "id": "courseDesign" + cid + stage + task + tool,
  7989. "style": {
  7990. "width": "90%",
  7991. "height": "90%",
  7992. "overflow": 'hidden'
  7993. },
  7994. "onresize": function () { }
  7995. }, {
  7996. closecallback: function () { }
  7997. }, {
  7998. "style": {
  7999. "height": "36px"
  8000. }
  8001. }).form; //创建窗体
  8002. _taskbar = {
  8003. "id": str + _formdiv.id,
  8004. "style": {
  8005. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8006. },
  8007. "name": "项目设计",
  8008. "forms": _formdiv,
  8009. "click": function () {
  8010. U.MD.D.I.openApplication(str, obj, info);
  8011. }
  8012. }
  8013. break;
  8014. }
  8015. const script1 = document.createElement("script");
  8016. script1.type = "text/javascript";
  8017. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8018. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8019. const script2 = document.createElement("script");
  8020. script2.type = "text/javascript";
  8021. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8022. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8023. const script3 = document.createElement("script");
  8024. script3.type = "text/javascript";
  8025. script3.charset = "UTF-8";
  8026. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8027. const script4 = document.createElement("script");
  8028. script4.type = "text/javascript";
  8029. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8030. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8031. if (_iframe) {
  8032. if (str == 'doc') {
  8033. _iframe = _formdiv.querySelector('iframe')
  8034. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8035. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8036. _iframe.contentWindow.document.body.appendChild(script1);
  8037. _iframe.contentWindow.document.body.appendChild(script2);
  8038. // _iframe.contentWindow.document.body.appendChild(script3);
  8039. _iframe.contentWindow.document.body.appendChild(script4);
  8040. })
  8041. if (onloadListener) {
  8042. _iframe.contentDocument.location.reload()
  8043. } else {
  8044. _iframe.contentDocument.location.reload()
  8045. }
  8046. } else if (str == 'courseDesign') {
  8047. U.UF.DL.iframeLoad(_iframe, function () {
  8048. // _iframe.contentWindow.U.MD.O.W.load();
  8049. // _iframe.contentWindow.document.body.appendChild(script1);
  8050. _iframe.contentWindow.document.body.appendChild(script2);
  8051. _iframe.contentWindow.document.body.appendChild(script4);
  8052. })
  8053. } else if (str == 'mind') {
  8054. _iframe = _formdiv.querySelector('iframe')
  8055. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8056. //
  8057. _iframe.contentWindow.document.body.appendChild(script1);
  8058. _iframe.contentWindow.document.body.appendChild(script2);
  8059. _iframe.contentWindow.document.body.appendChild(script4);
  8060. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8061. })
  8062. if (onloadListener) {
  8063. _iframe.contentDocument.location.reload()
  8064. } else {
  8065. _iframe.contentDocument.location.reload()
  8066. }
  8067. } else if (str == 'whiteboard') {
  8068. _iframe = _formdiv.querySelector('iframe')
  8069. let onloadListener = _iframe.onload = () => {
  8070. _iframe.contentWindow.document.body.appendChild(script1);
  8071. _iframe.contentWindow.document.body.appendChild(script2);
  8072. _iframe.contentWindow.document.body.appendChild(script4);
  8073. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8074. };
  8075. // if (onloadListener) {
  8076. // try {
  8077. // _iframe.src += "?cocorobo="+new Date().getTime()
  8078. // _iframe.contentWindow.document.location.reload()
  8079. // } catch (error) {
  8080. // }
  8081. // } else {
  8082. // _iframe.contentDocument.location.reload()
  8083. // }
  8084. } else {
  8085. _iframe.onload = () => {
  8086. _iframe.contentWindow.document.body.appendChild(script1);
  8087. _iframe.contentWindow.document.body.appendChild(script2);
  8088. // _iframe.contentWindow.document.body.appendChild(script3);
  8089. _iframe.contentWindow.document.body.appendChild(script4);
  8090. };
  8091. }
  8092. _jie.onclick = async () => {
  8093. let text = ''
  8094. if (aTool == 1) {
  8095. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8096. } else if (aTool == 6) {
  8097. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8098. } else if (aTool == 3) {
  8099. text = await U.MD.D.I.getEditorContent(_iframe);
  8100. }
  8101. _loading.style.display = 'flex'
  8102. console.log(_loading);
  8103. var _ajs = _iframe.contentWindow.document.createElement("script");
  8104. _ajs.type = "text/javascript";
  8105. _ajs.innerHTML =
  8106. // 'console.log(' + _loading + ');\n' +
  8107. 'var _js = document.createElement("script");\n' +
  8108. '_js.type="text/javascript";\n' +
  8109. '_js.charset="UTF-8";\n' +
  8110. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8111. "_js.onload = function(){\n" +
  8112. ' var a = document.getElementsByTagName("img")\n' +
  8113. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8114. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8115. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8116. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8117. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8118. "beforeUpload_shishi(file," +
  8119. "'" +
  8120. _userid +
  8121. "'" +
  8122. ", " +
  8123. "'" +
  8124. _cid +
  8125. "'" +
  8126. ", " +
  8127. "'" +
  8128. _stage +
  8129. "'" +
  8130. ", " +
  8131. "'" +
  8132. _task +
  8133. "'" +
  8134. ", " +
  8135. "'" +
  8136. _tool +
  8137. "'" +
  8138. ", " +
  8139. "'" +
  8140. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8141. "'" +
  8142. ", " +
  8143. "'" +
  8144. aTool +
  8145. "'" +
  8146. ", " +
  8147. "`" +
  8148. text +
  8149. "`" +
  8150. ")\n" +
  8151. " });\n" +
  8152. "}\n" +
  8153. "document.head.appendChild(_js);\n";
  8154. _iframe.contentWindow.document.head.appendChild(_ajs);
  8155. }
  8156. }
  8157. //U.MD.D.I.openClick(str);
  8158. //如果有任务栏信息
  8159. // if (_taskbar) {
  8160. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8161. // }
  8162. }
  8163. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8164. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8165. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8166. _userinfo = US.userInfo, //登录用户信息
  8167. _userid = US.userInfo.userid //登录用户id
  8168. let _iframe;
  8169. let _cid = cid,
  8170. _stage = stage,
  8171. _task = task,
  8172. _tool = tool;
  8173. var _jie = $$("div", {
  8174. "style": {
  8175. "position": "absolute",
  8176. "bottom": "50px",
  8177. "right": "50px",
  8178. "zIndex": "9999",
  8179. "backgroundColor": "#2268bc",
  8180. "color": "#fff",
  8181. "padding": "12px 20px",
  8182. "cursor": "pointer",
  8183. "borderRadius": "4px",
  8184. },
  8185. "innerHTML": "提交作业"
  8186. })
  8187. let aTool = ''
  8188. let _loading = document.createElement('div')
  8189. _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;"
  8190. // _loading.id = "";
  8191. let _lchild = document.createElement('div')
  8192. let _limg = document.createElement('img')
  8193. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8194. _limg.style = "width: 26px;margin-right: 10px;"
  8195. _lchild.appendChild(_limg)
  8196. let _lspan = document.createElement('span')
  8197. _lspan.innerHTML = "上传中..."
  8198. _lchild.appendChild(_lspan)
  8199. _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%);"
  8200. _loading.appendChild(_lchild)
  8201. let _box = $$('div', {
  8202. "style": {
  8203. "position": "relative",
  8204. "width": "100%",
  8205. "height": "100%",
  8206. },
  8207. })
  8208. _box.appendChild(_loading)
  8209. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8210. switch (str) {
  8211. case "whiteboard":
  8212. aTool = 1;
  8213. _iframe = $$("iframe", {
  8214. "frameborder": "no",
  8215. "border": "0",
  8216. "scrolling ": "no",
  8217. "style": {
  8218. "cssText": "border:0;width:100%;height:100%"
  8219. },
  8220. "src": "https://beta.iwb.cocorobo.cn/"
  8221. })
  8222. _box.appendChild(_iframe);
  8223. _box.appendChild(_jie);
  8224. _formdiv = new U.UF.UI.form(
  8225. "电子白板",
  8226. _box, {
  8227. "id": "whiteboard" + cid + stage + task + tool,
  8228. "style": {
  8229. "width": "90%",
  8230. "height": "90%",
  8231. "overflow": 'hidden'
  8232. },
  8233. "onresize": function () { }
  8234. }, {
  8235. closecallback: function () { }
  8236. }, {
  8237. "style": {
  8238. "height": "36px"
  8239. }
  8240. }).form; //创建窗体
  8241. _taskbar = {
  8242. "id": str + _formdiv.id,
  8243. "style": {
  8244. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8245. },
  8246. "name": "电子白板",
  8247. "forms": _formdiv,
  8248. "click": function () {
  8249. U.MD.D.I.openApplication(str, obj, info);
  8250. }
  8251. }
  8252. break;
  8253. case "mind":
  8254. aTool = 3;
  8255. _iframe = $$("iframe", {
  8256. "frameborder": "no",
  8257. "border": "0",
  8258. "scrolling ": "no",
  8259. "style": {
  8260. "cssText": "border:0;width:100%;height:100%"
  8261. },
  8262. "src": "/kityminder-editor/dist/index.html"
  8263. })
  8264. _box.appendChild(_iframe);
  8265. _box.appendChild(_jie);
  8266. _formdiv = new U.UF.UI.form(
  8267. "思维导图",
  8268. _box, { //"/jsmind/example/demo.html"
  8269. "id": "mind" + cid + stage + task + tool,
  8270. "style": {
  8271. "width": "90%",
  8272. "height": "90%",
  8273. "overflow": 'hidden'
  8274. },
  8275. "onresize": function () { }
  8276. }, {
  8277. closecallback: function () { }
  8278. }, {
  8279. "style": {
  8280. "height": "36px"
  8281. }
  8282. }).form; //创建窗体
  8283. _taskbar = {
  8284. "id": str + _formdiv.id,
  8285. "style": {
  8286. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8287. },
  8288. "name": "思维导图",
  8289. "forms": _formdiv,
  8290. "click": function () {
  8291. U.MD.D.I.openApplication(str, obj, info);
  8292. }
  8293. }
  8294. break;
  8295. case "MindMap":
  8296. aTool = 3;
  8297. _iframe = $$("iframe", {
  8298. "frameborder": "no",
  8299. "border": "0",
  8300. "scrolling ": "no",
  8301. "style": {
  8302. "cssText": "border:0;width:100%;height:100%"
  8303. },
  8304. "src": "//cloud.cocorobo.cn/mind/"
  8305. })
  8306. _box.appendChild(_iframe);
  8307. _box.appendChild(_jie);
  8308. _formdiv = new U.UF.UI.form(
  8309. "思维导图",
  8310. _box, { //"/jsmind/example/demo.html"
  8311. "id": "mind" + cid + stage + task + tool,
  8312. "style": {
  8313. "width": "90%",
  8314. "height": "90%",
  8315. "overflow": 'hidden'
  8316. },
  8317. "onresize": function () { }
  8318. }, {
  8319. closecallback: function () { }
  8320. }, {
  8321. "style": {
  8322. "height": "36px"
  8323. }
  8324. }).form; //创建窗体
  8325. _taskbar = {
  8326. "id": str + _formdiv.id,
  8327. "style": {
  8328. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8329. },
  8330. "name": "思维导图",
  8331. "forms": _formdiv,
  8332. "click": function () {
  8333. U.MD.D.I.openApplication(str, obj, info);
  8334. }
  8335. }
  8336. break;
  8337. case "doc":
  8338. aTool = 6;
  8339. _iframe = $$("iframe", {
  8340. "frameborder": "no",
  8341. "border": "0",
  8342. "scrolling ": "no",
  8343. "style": {
  8344. "cssText": "border:0;width:100%;height:100%"
  8345. },
  8346. "src": "/Office/Word/WordEditArea.htm"
  8347. })
  8348. _box.appendChild(_iframe);
  8349. _box.appendChild(_jie);
  8350. _formdiv = new U.UF.UI.form(
  8351. "协同文档",
  8352. _box, {
  8353. "id": "doc" + cid + stage + task + tool,
  8354. "style": {
  8355. "width": "90%",
  8356. "height": "90%",
  8357. "overflow": 'hidden'
  8358. },
  8359. "onresize": function () { }
  8360. }, {
  8361. closecallback: function () { }
  8362. }, {
  8363. "style": {
  8364. "height": "36px"
  8365. }
  8366. }).form; //创建窗体
  8367. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8368. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8369. })
  8370. _taskbar = {
  8371. "id": str + _formdiv.id,
  8372. "style": {
  8373. "backgroundImage": "url(/img/icon/doc.png)"
  8374. },
  8375. "name": "协同文档",
  8376. "forms": _formdiv,
  8377. "click": function () {
  8378. U.MD.D.I.openApplication(str, obj, info);
  8379. }
  8380. }
  8381. break;
  8382. case "mindNetwork": //好友打开
  8383. aTool = 7;
  8384. _iframe = $$("iframe", {
  8385. "webkitallowfullscreen": "",
  8386. "mozallowfullscreen": "",
  8387. "allowfullscreen": "",
  8388. "frameborder": "no",
  8389. "border": "0",
  8390. "scrolling ": "no",
  8391. "style": {
  8392. "cssText": "border:0; width:100%; height:100%;"
  8393. },
  8394. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8395. })
  8396. _box.appendChild(_iframe);
  8397. _box.appendChild(_jie);
  8398. _formdiv = new U.UF.UI.form(
  8399. "思维网格",
  8400. _box, {
  8401. "id": "mindNetwork" + cid + stage + task + tool,
  8402. "style": {
  8403. "width": "90%",
  8404. "height": "90%",
  8405. "overflow": 'hidden'
  8406. },
  8407. "onresize": function () { }
  8408. }, {
  8409. closecallback: function () { }
  8410. }, {
  8411. "style": {
  8412. "height": "36px"
  8413. }
  8414. }).form; //创建窗体
  8415. _taskbar = {
  8416. "id": str + _formdiv.id,
  8417. "style": {
  8418. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8419. },
  8420. "name": "思维网格",
  8421. "forms": _formdiv,
  8422. "click": function () {
  8423. U.MD.D.I.openApplication(str, obj, info);
  8424. }
  8425. }
  8426. break;
  8427. case "courseDesign":
  8428. _iframe = $$("iframe", {
  8429. "webkitallowfullscreen": "",
  8430. "mozallowfullscreen": "",
  8431. "allowfullscreen": "",
  8432. "frameborder": "no",
  8433. "border": "0",
  8434. "scrolling ": "no",
  8435. "style": {
  8436. "cssText": "border:0; width:100%; height:100%;"
  8437. },
  8438. "src": "/course-design-vue"
  8439. })
  8440. _box.appendChild(_iframe);
  8441. _box.appendChild(_jie);
  8442. _formdiv = new U.UF.UI.form(
  8443. "项目设计",
  8444. _box, {
  8445. "id": "courseDesign" + cid + stage + task + tool,
  8446. "style": {
  8447. "width": "90%",
  8448. "height": "90%",
  8449. "overflow": 'hidden'
  8450. },
  8451. "onresize": function () { }
  8452. }, {
  8453. closecallback: function () { }
  8454. }, {
  8455. "style": {
  8456. "height": "36px"
  8457. }
  8458. }).form; //创建窗体
  8459. _taskbar = {
  8460. "id": str + _formdiv.id,
  8461. "style": {
  8462. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8463. },
  8464. "name": "项目设计",
  8465. "forms": _formdiv,
  8466. "click": function () {
  8467. U.MD.D.I.openApplication(str, obj, info);
  8468. }
  8469. }
  8470. break;
  8471. }
  8472. const script1 = document.createElement("script");
  8473. script1.type = "text/javascript";
  8474. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8475. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8476. const script2 = document.createElement("script");
  8477. script2.type = "text/javascript";
  8478. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8479. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8480. const script3 = document.createElement("script");
  8481. script3.type = "text/javascript";
  8482. script3.charset = "UTF-8";
  8483. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8484. const script4 = document.createElement("script");
  8485. script4.type = "text/javascript";
  8486. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8487. script4.src = window.origin + "/js/Common/jietu2E.js";
  8488. if (_iframe) {
  8489. if (str == 'doc') {
  8490. _iframe = _formdiv.querySelector('iframe')
  8491. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8492. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8493. _iframe.contentWindow.document.body.appendChild(script1);
  8494. _iframe.contentWindow.document.body.appendChild(script2);
  8495. // _iframe.contentWindow.document.body.appendChild(script3);
  8496. _iframe.contentWindow.document.body.appendChild(script4);
  8497. })
  8498. if (onloadListener) {
  8499. _iframe.contentDocument.location.reload()
  8500. } else {
  8501. _iframe.contentDocument.location.reload()
  8502. }
  8503. } else if (str == 'courseDesign') {
  8504. U.UF.DL.iframeLoad(_iframe, function () {
  8505. // _iframe.contentWindow.U.MD.O.W.load();
  8506. // _iframe.contentWindow.document.body.appendChild(script1);
  8507. _iframe.contentWindow.document.body.appendChild(script2);
  8508. _iframe.contentWindow.document.body.appendChild(script4);
  8509. })
  8510. } else if (str == 'mind') {
  8511. _iframe = _formdiv.querySelector('iframe')
  8512. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8513. //
  8514. _iframe.contentWindow.document.body.appendChild(script1);
  8515. _iframe.contentWindow.document.body.appendChild(script2);
  8516. _iframe.contentWindow.document.body.appendChild(script4);
  8517. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8518. })
  8519. if (onloadListener) {
  8520. _iframe.contentDocument.location.reload()
  8521. } else {
  8522. _iframe.contentDocument.location.reload()
  8523. }
  8524. } else if (str == 'whiteboard') {
  8525. _iframe = _formdiv.querySelector('iframe')
  8526. let onloadListener = _iframe.onload = () => {
  8527. _iframe.contentWindow.document.body.appendChild(script1);
  8528. _iframe.contentWindow.document.body.appendChild(script2);
  8529. _iframe.contentWindow.document.body.appendChild(script4);
  8530. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8531. };
  8532. // if (onloadListener) {
  8533. // try {
  8534. // _iframe.src += "?cocorobo="+new Date().getTime()
  8535. // _iframe.contentWindow.document.location.reload()
  8536. // } catch (error) {
  8537. // }
  8538. // } else {
  8539. // _iframe.contentDocument.location.reload()
  8540. // }
  8541. } else {
  8542. _iframe.onload = () => {
  8543. _iframe.contentWindow.document.body.appendChild(script1);
  8544. _iframe.contentWindow.document.body.appendChild(script2);
  8545. // _iframe.contentWindow.document.body.appendChild(script3);
  8546. _iframe.contentWindow.document.body.appendChild(script4);
  8547. };
  8548. }
  8549. _jie.onclick = async () => {
  8550. let text = ''
  8551. if (aTool == 1) {
  8552. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8553. } else if (aTool == 6) {
  8554. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8555. } else if (aTool == 3) {
  8556. text = await U.MD.D.I.getEditorContent(_iframe);
  8557. }
  8558. _loading.style.display = 'flex'
  8559. console.log(_loading);
  8560. var _ajs = _iframe.contentWindow.document.createElement("script");
  8561. _ajs.type = "text/javascript";
  8562. _ajs.innerHTML =
  8563. // 'console.log(' + _loading + ');\n' +
  8564. 'var _js = document.createElement("script");\n' +
  8565. '_js.type="text/javascript";\n' +
  8566. '_js.charset="UTF-8";\n' +
  8567. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8568. "_js.onload = function(){\n" +
  8569. ' var a = document.getElementsByTagName("img")\n' +
  8570. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8571. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8572. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8573. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8574. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8575. "beforeUpload_shishi(file," +
  8576. "'" +
  8577. _userid +
  8578. "'" +
  8579. ", " +
  8580. "'" +
  8581. _cid +
  8582. "'" +
  8583. ", " +
  8584. "'" +
  8585. _stage +
  8586. "'" +
  8587. ", " +
  8588. "'" +
  8589. _task +
  8590. "'" +
  8591. ", " +
  8592. "'" +
  8593. _tool +
  8594. "'" +
  8595. ", " +
  8596. "'" +
  8597. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8598. "'" +
  8599. ", " +
  8600. "'" +
  8601. aTool +
  8602. "'" +
  8603. ", " +
  8604. "`" +
  8605. text +
  8606. "`" +
  8607. ")\n" +
  8608. " });\n" +
  8609. "}\n" +
  8610. "document.head.appendChild(_js);\n";
  8611. _iframe.contentWindow.document.head.appendChild(_ajs);
  8612. }
  8613. }
  8614. //U.MD.D.I.openClick(str);
  8615. //如果有任务栏信息
  8616. // if (_taskbar) {
  8617. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8618. // }
  8619. }
  8620. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8621. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8622. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8623. _userid = student.userid, //登录用户id
  8624. _username = student.student //用户名字
  8625. let _iframe;
  8626. let _cid = cid,
  8627. _stage = stage,
  8628. _task = task,
  8629. _tool = tool;
  8630. var _jie = $$("div", {
  8631. "style": {
  8632. "position": "absolute",
  8633. "bottom": "50px",
  8634. "right": "50px",
  8635. "zIndex": "9999",
  8636. "backgroundColor": "#2268bc",
  8637. "color": "#fff",
  8638. "padding": "12px 20px",
  8639. "cursor": "pointer",
  8640. "borderRadius": "4px",
  8641. },
  8642. "innerHTML": "提交作业"
  8643. })
  8644. let aTool = ''
  8645. let _loading = document.createElement('div')
  8646. _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;"
  8647. // _loading.id = "";
  8648. let _lchild = document.createElement('div')
  8649. let _limg = document.createElement('img')
  8650. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8651. _limg.style = "width: 26px;margin-right: 10px;"
  8652. _lchild.appendChild(_limg)
  8653. let _lspan = document.createElement('span')
  8654. _lspan.innerHTML = "上传中..."
  8655. _lchild.appendChild(_lspan)
  8656. _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%);"
  8657. _loading.appendChild(_lchild)
  8658. var _box = $$('div', {
  8659. "style": {
  8660. "position": "relative",
  8661. "width": "100%",
  8662. "height": "100%",
  8663. },
  8664. })
  8665. _box.appendChild(_loading)
  8666. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8667. switch (str) {
  8668. case "whiteboard":
  8669. aTool = 1;
  8670. _iframe = $$("iframe", {
  8671. "frameborder": "no",
  8672. "border": "0",
  8673. "scrolling ": "no",
  8674. "style": {
  8675. "cssText": "border:0;width:100%;height:100%"
  8676. },
  8677. "src": "https://beta.iwb.cocorobo.cn/"
  8678. })
  8679. _box.appendChild(_iframe);
  8680. _box.appendChild(_jie);
  8681. _formdiv = new U.UF.UI.form(
  8682. "电子白板-" + _username,
  8683. _box, {
  8684. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8685. "style": {
  8686. "width": "90%",
  8687. "height": "90%",
  8688. "overflow": 'hidden'
  8689. },
  8690. "onresize": function () { }
  8691. }, {
  8692. closecallback: function () { }
  8693. }, {
  8694. "style": {
  8695. "height": "36px"
  8696. }
  8697. }).form; //创建窗体
  8698. _taskbar = {
  8699. "id": str + _formdiv.id,
  8700. "style": {
  8701. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8702. },
  8703. "name": "电子白板",
  8704. "forms": _formdiv,
  8705. "click": function () {
  8706. U.MD.D.I.openApplication(str, obj, info);
  8707. }
  8708. }
  8709. break;
  8710. case "mind":
  8711. aTool = 3;
  8712. _iframe = $$("iframe", {
  8713. "frameborder": "no",
  8714. "border": "0",
  8715. "scrolling ": "no",
  8716. "style": {
  8717. "cssText": "border:0;width:100%;height:100%"
  8718. },
  8719. "src": "/kityminder-editor/dist/index.html"
  8720. })
  8721. _box.appendChild(_iframe);
  8722. _box.appendChild(_jie);
  8723. _formdiv = new U.UF.UI.form(
  8724. "思维导图-" + _username,
  8725. _box, { //"/jsmind/example/demo.html"
  8726. "id": "mind" + cid + stage + task + tool + _userid,
  8727. "style": {
  8728. "width": "90%",
  8729. "height": "90%",
  8730. "overflow": 'hidden'
  8731. },
  8732. "onresize": function () { }
  8733. }, {
  8734. closecallback: function () { }
  8735. }, {
  8736. "style": {
  8737. "height": "36px"
  8738. }
  8739. }).form; //创建窗体
  8740. _taskbar = {
  8741. "id": str + _formdiv.id,
  8742. "style": {
  8743. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8744. },
  8745. "name": "思维导图",
  8746. "forms": _formdiv,
  8747. "click": function () {
  8748. U.MD.D.I.openApplication(str, obj, info);
  8749. }
  8750. }
  8751. break;
  8752. case "MindMap":
  8753. aTool = 3;
  8754. _iframe = $$("iframe", {
  8755. "frameborder": "no",
  8756. "border": "0",
  8757. "scrolling ": "no",
  8758. "style": {
  8759. "cssText": "border:0;width:100%;height:100%"
  8760. },
  8761. "src": "//cloud.cocorobo.cn/mind/"
  8762. })
  8763. _box.appendChild(_iframe);
  8764. _box.appendChild(_jie);
  8765. _formdiv = new U.UF.UI.form(
  8766. "思维导图-" + _username,
  8767. _box, { //"/jsmind/example/demo.html"
  8768. "id": "mind" + cid + stage + task + tool + _userid,
  8769. "style": {
  8770. "width": "90%",
  8771. "height": "90%",
  8772. "overflow": 'hidden'
  8773. },
  8774. "onresize": function () { }
  8775. }, {
  8776. closecallback: function () { }
  8777. }, {
  8778. "style": {
  8779. "height": "36px"
  8780. }
  8781. }).form; //创建窗体
  8782. _taskbar = {
  8783. "id": str + _formdiv.id,
  8784. "style": {
  8785. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8786. },
  8787. "name": "思维导图",
  8788. "forms": _formdiv,
  8789. "click": function () {
  8790. U.MD.D.I.openApplication(str, obj, info);
  8791. }
  8792. }
  8793. break;
  8794. case "doc":
  8795. aTool = 6;
  8796. _iframe = $$("iframe", {
  8797. "frameborder": "no",
  8798. "border": "0",
  8799. "scrolling ": "no",
  8800. "style": {
  8801. "cssText": "border:0;width:100%;height:100%"
  8802. },
  8803. "src": "/Office/Word/WordEditArea.htm"
  8804. })
  8805. _box.appendChild(_iframe);
  8806. _box.appendChild(_jie);
  8807. _formdiv = new U.UF.UI.form(
  8808. "协同文档-" + _username,
  8809. _box, {
  8810. "id": "doc" + cid + stage + task + tool + _userid,
  8811. "style": {
  8812. "width": "90%",
  8813. "height": "90%",
  8814. "overflow": 'hidden'
  8815. },
  8816. "onresize": function () { }
  8817. }, {
  8818. closecallback: function () { }
  8819. }, {
  8820. "style": {
  8821. "height": "36px"
  8822. }
  8823. }).form; //创建窗体
  8824. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8825. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8826. })
  8827. _taskbar = {
  8828. "id": str + _formdiv.id,
  8829. "style": {
  8830. "backgroundImage": "url(/img/icon/doc.png)"
  8831. },
  8832. "name": "协同文档",
  8833. "forms": _formdiv,
  8834. "click": function () {
  8835. U.MD.D.I.openApplication(str, obj, info);
  8836. }
  8837. }
  8838. break;
  8839. case "mindNetwork": //好友打开
  8840. aTool = 7;
  8841. _iframe = $$("iframe", {
  8842. "webkitallowfullscreen": "",
  8843. "mozallowfullscreen": "",
  8844. "allowfullscreen": "",
  8845. "frameborder": "no",
  8846. "border": "0",
  8847. "scrolling ": "no",
  8848. "style": {
  8849. "cssText": "border:0; width:100%; height:100%;"
  8850. },
  8851. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8852. })
  8853. _box.appendChild(_iframe);
  8854. _box.appendChild(_jie);
  8855. _formdiv = new U.UF.UI.form(
  8856. "思维网格-" + _username,
  8857. _box, {
  8858. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8859. "style": {
  8860. "width": "90%",
  8861. "height": "90%",
  8862. "overflow": 'hidden'
  8863. },
  8864. "onresize": function () { }
  8865. }, {
  8866. closecallback: function () { }
  8867. }, {
  8868. "style": {
  8869. "height": "36px"
  8870. }
  8871. }).form; //创建窗体
  8872. _taskbar = {
  8873. "id": str + _formdiv.id,
  8874. "style": {
  8875. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8876. },
  8877. "name": "思维网格",
  8878. "forms": _formdiv,
  8879. "click": function () {
  8880. U.MD.D.I.openApplication(str, obj, info);
  8881. }
  8882. }
  8883. break;
  8884. case "courseDesign":
  8885. _iframe = $$("iframe", {
  8886. "webkitallowfullscreen": "",
  8887. "mozallowfullscreen": "",
  8888. "allowfullscreen": "",
  8889. "frameborder": "no",
  8890. "border": "0",
  8891. "scrolling ": "no",
  8892. "style": {
  8893. "cssText": "border:0; width:100%; height:100%;"
  8894. },
  8895. "src": "/course-design-vue"
  8896. })
  8897. _box.appendChild(_iframe);
  8898. _box.appendChild(_jie);
  8899. _formdiv = new U.UF.UI.form(
  8900. "项目设计-" + _username,
  8901. _box, {
  8902. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8903. "style": {
  8904. "width": "90%",
  8905. "height": "90%",
  8906. "overflow": 'hidden'
  8907. },
  8908. "onresize": function () { }
  8909. }, {
  8910. closecallback: function () { }
  8911. }, {
  8912. "style": {
  8913. "height": "36px"
  8914. }
  8915. }).form; //创建窗体
  8916. _taskbar = {
  8917. "id": str + _formdiv.id,
  8918. "style": {
  8919. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8920. },
  8921. "name": "项目设计",
  8922. "forms": _formdiv,
  8923. "click": function () {
  8924. U.MD.D.I.openApplication(str, obj, info);
  8925. }
  8926. }
  8927. break;
  8928. }
  8929. const script1 = document.createElement("script");
  8930. script1.type = "text/javascript";
  8931. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8932. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8933. const script2 = document.createElement("script");
  8934. script2.type = "text/javascript";
  8935. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8936. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8937. const script3 = document.createElement("script");
  8938. script3.type = "text/javascript";
  8939. script3.charset = "UTF-8";
  8940. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8941. const script4 = document.createElement("script");
  8942. script4.type = "text/javascript";
  8943. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8944. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8945. if (_iframe) {
  8946. if (str == 'doc') {
  8947. _iframe = _formdiv.querySelector('iframe')
  8948. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8949. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8950. _iframe.contentWindow.document.body.appendChild(script1);
  8951. _iframe.contentWindow.document.body.appendChild(script2);
  8952. // _iframe.contentWindow.document.body.appendChild(script3);
  8953. _iframe.contentWindow.document.body.appendChild(script4);
  8954. })
  8955. if (onloadListener) {
  8956. _iframe.contentDocument.location.reload()
  8957. } else {
  8958. _iframe.contentDocument.location.reload()
  8959. }
  8960. } else if (str == 'courseDesign') {
  8961. U.UF.DL.iframeLoad(_iframe, function () {
  8962. // _iframe.contentWindow.U.MD.O.W.load();
  8963. // _iframe.contentWindow.document.body.appendChild(script1);
  8964. _iframe.contentWindow.document.body.appendChild(script2);
  8965. _iframe.contentWindow.document.body.appendChild(script4);
  8966. })
  8967. } else if (str == 'mind') {
  8968. _iframe = _formdiv.querySelector('iframe')
  8969. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8970. //
  8971. _iframe.contentWindow.document.body.appendChild(script1);
  8972. _iframe.contentWindow.document.body.appendChild(script2);
  8973. _iframe.contentWindow.document.body.appendChild(script4);
  8974. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8975. })
  8976. if (onloadListener) {
  8977. _iframe.contentDocument.location.reload()
  8978. } else {
  8979. _iframe.contentDocument.location.reload()
  8980. }
  8981. } else if (str == 'whiteboard') {
  8982. _iframe = _formdiv.querySelector('iframe')
  8983. let onloadListener = _iframe.onload = () => {
  8984. _iframe.contentWindow.document.body.appendChild(script1);
  8985. _iframe.contentWindow.document.body.appendChild(script2);
  8986. _iframe.contentWindow.document.body.appendChild(script4);
  8987. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8988. };
  8989. // if (onloadListener) {
  8990. // try {
  8991. // _iframe.src += "?cocorobo="+new Date().getTime()
  8992. // _iframe.contentWindow.document.location.reload()
  8993. // } catch (error) {
  8994. // }
  8995. // } else {
  8996. // _iframe.contentDocument.location.reload()
  8997. // }
  8998. } else {
  8999. _iframe.onload = () => {
  9000. _iframe.contentWindow.document.body.appendChild(script1);
  9001. _iframe.contentWindow.document.body.appendChild(script2);
  9002. // _iframe.contentWindow.document.body.appendChild(script3);
  9003. _iframe.contentWindow.document.body.appendChild(script4);
  9004. };
  9005. }
  9006. _jie.onclick = async () => {
  9007. let text = ''
  9008. if (aTool == 1) {
  9009. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9010. } else if (aTool == 6) {
  9011. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9012. } else if (aTool == 3) {
  9013. text = await U.MD.D.I.getEditorContent(_iframe);
  9014. }
  9015. _loading.style.display = 'flex'
  9016. console.log(_loading);
  9017. var _ajs = _iframe.contentWindow.document.createElement("script");
  9018. _ajs.type = "text/javascript";
  9019. _ajs.innerHTML =
  9020. // 'console.log(' + _loading + ');\n' +
  9021. 'var _js = document.createElement("script");\n' +
  9022. '_js.type="text/javascript";\n' +
  9023. '_js.charset="UTF-8";\n' +
  9024. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9025. "_js.onload = function(){\n" +
  9026. ' var a = document.getElementsByTagName("img")\n' +
  9027. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9028. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9029. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9030. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9031. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9032. "beforeUpload_shishi(file," +
  9033. "'" +
  9034. _userid +
  9035. "'" +
  9036. ", " +
  9037. "'" +
  9038. _cid +
  9039. "'" +
  9040. ", " +
  9041. "'" +
  9042. _stage +
  9043. "'" +
  9044. ", " +
  9045. "'" +
  9046. _task +
  9047. "'" +
  9048. ", " +
  9049. "'" +
  9050. _tool +
  9051. "'" +
  9052. ", " +
  9053. "'" +
  9054. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9055. "'" +
  9056. ", " +
  9057. "'" +
  9058. aTool +
  9059. "'" +
  9060. ", " +
  9061. "`" +
  9062. text +
  9063. "`" +
  9064. ")\n" +
  9065. " });\n" +
  9066. "}\n" +
  9067. "document.head.appendChild(_js);\n";
  9068. _iframe.contentWindow.document.head.appendChild(_ajs);
  9069. }
  9070. }
  9071. }
  9072. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9073. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9074. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9075. _userid = student.userid, //登录用户id
  9076. _username = student.student //用户名字
  9077. let _iframe;
  9078. let _cid = cid,
  9079. _stage = stage,
  9080. _task = task,
  9081. _tool = tool;
  9082. var _jie = $$("div", {
  9083. "style": {
  9084. "position": "absolute",
  9085. "bottom": "50px",
  9086. "right": "50px",
  9087. "zIndex": "9999",
  9088. "backgroundColor": "#2268bc",
  9089. "color": "#fff",
  9090. "padding": "12px 20px",
  9091. "cursor": "pointer",
  9092. "borderRadius": "4px",
  9093. },
  9094. "innerHTML": "提交作业"
  9095. })
  9096. let aTool = ''
  9097. let _loading = document.createElement('div')
  9098. _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;"
  9099. // _loading.id = "";
  9100. let _lchild = document.createElement('div')
  9101. let _limg = document.createElement('img')
  9102. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9103. _limg.style = "width: 26px;margin-right: 10px;"
  9104. _lchild.appendChild(_limg)
  9105. let _lspan = document.createElement('span')
  9106. _lspan.innerHTML = "上传中..."
  9107. _lchild.appendChild(_lspan)
  9108. _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%);"
  9109. _loading.appendChild(_lchild)
  9110. var _box = $$('div', {
  9111. "style": {
  9112. "position": "relative",
  9113. "width": "100%",
  9114. "height": "100%",
  9115. },
  9116. })
  9117. _box.appendChild(_loading)
  9118. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9119. switch (str) {
  9120. case "whiteboard":
  9121. aTool = 1;
  9122. _iframe = $$("iframe", {
  9123. "frameborder": "no",
  9124. "border": "0",
  9125. "scrolling ": "no",
  9126. "style": {
  9127. "cssText": "border:0;width:100%;height:100%"
  9128. },
  9129. "src": "https://beta.iwb.cocorobo.cn/"
  9130. })
  9131. _box.appendChild(_iframe);
  9132. _box.appendChild(_jie);
  9133. _formdiv = new U.UF.UI.form(
  9134. "电子白板-" + _username,
  9135. _box, {
  9136. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9137. "style": {
  9138. "width": "90%",
  9139. "height": "90%",
  9140. "overflow": 'hidden'
  9141. },
  9142. "onresize": function () { }
  9143. }, {
  9144. closecallback: function () { }
  9145. }, {
  9146. "style": {
  9147. "height": "36px"
  9148. }
  9149. }).form; //创建窗体
  9150. _taskbar = {
  9151. "id": str + _formdiv.id,
  9152. "style": {
  9153. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9154. },
  9155. "name": "电子白板",
  9156. "forms": _formdiv,
  9157. "click": function () {
  9158. U.MD.D.I.openApplication(str, obj, info);
  9159. }
  9160. }
  9161. break;
  9162. case "mind":
  9163. aTool = 3;
  9164. _iframe = $$("iframe", {
  9165. "frameborder": "no",
  9166. "border": "0",
  9167. "scrolling ": "no",
  9168. "style": {
  9169. "cssText": "border:0;width:100%;height:100%"
  9170. },
  9171. "src": "/kityminder-editor/dist/index.html"
  9172. })
  9173. _box.appendChild(_iframe);
  9174. _box.appendChild(_jie);
  9175. _formdiv = new U.UF.UI.form(
  9176. "思维导图-" + _username,
  9177. _box, { //"/jsmind/example/demo.html"
  9178. "id": "mind" + cid + stage + task + tool + _userid,
  9179. "style": {
  9180. "width": "90%",
  9181. "height": "90%",
  9182. "overflow": 'hidden'
  9183. },
  9184. "onresize": function () { }
  9185. }, {
  9186. closecallback: function () { }
  9187. }, {
  9188. "style": {
  9189. "height": "36px"
  9190. }
  9191. }).form; //创建窗体
  9192. _taskbar = {
  9193. "id": str + _formdiv.id,
  9194. "style": {
  9195. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9196. },
  9197. "name": "思维导图",
  9198. "forms": _formdiv,
  9199. "click": function () {
  9200. U.MD.D.I.openApplication(str, obj, info);
  9201. }
  9202. }
  9203. break;
  9204. case "MindMap":
  9205. aTool = 3;
  9206. _iframe = $$("iframe", {
  9207. "frameborder": "no",
  9208. "border": "0",
  9209. "scrolling ": "no",
  9210. "style": {
  9211. "cssText": "border:0;width:100%;height:100%"
  9212. },
  9213. "src": "//cloud.cocorobo.cn/mind/"
  9214. })
  9215. _box.appendChild(_iframe);
  9216. _box.appendChild(_jie);
  9217. _formdiv = new U.UF.UI.form(
  9218. "思维导图-" + _username,
  9219. _box, { //"/jsmind/example/demo.html"
  9220. "id": "mind" + cid + stage + task + tool + _userid,
  9221. "style": {
  9222. "width": "90%",
  9223. "height": "90%",
  9224. "overflow": 'hidden'
  9225. },
  9226. "onresize": function () { }
  9227. }, {
  9228. closecallback: function () { }
  9229. }, {
  9230. "style": {
  9231. "height": "36px"
  9232. }
  9233. }).form; //创建窗体
  9234. _taskbar = {
  9235. "id": str + _formdiv.id,
  9236. "style": {
  9237. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9238. },
  9239. "name": "思维导图",
  9240. "forms": _formdiv,
  9241. "click": function () {
  9242. U.MD.D.I.openApplication(str, obj, info);
  9243. }
  9244. }
  9245. break;
  9246. case "doc":
  9247. aTool = 6;
  9248. _iframe = $$("iframe", {
  9249. "frameborder": "no",
  9250. "border": "0",
  9251. "scrolling ": "no",
  9252. "style": {
  9253. "cssText": "border:0;width:100%;height:100%"
  9254. },
  9255. "src": "/Office/Word/WordEditArea.htm"
  9256. })
  9257. _box.appendChild(_iframe);
  9258. _box.appendChild(_jie);
  9259. _formdiv = new U.UF.UI.form(
  9260. "协同文档-" + _username,
  9261. _box, {
  9262. "id": "doc" + cid + stage + task + tool + _userid,
  9263. "style": {
  9264. "width": "90%",
  9265. "height": "90%",
  9266. "overflow": 'hidden'
  9267. },
  9268. "onresize": function () { }
  9269. }, {
  9270. closecallback: function () { }
  9271. }, {
  9272. "style": {
  9273. "height": "36px"
  9274. }
  9275. }).form; //创建窗体
  9276. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9277. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9278. })
  9279. _taskbar = {
  9280. "id": str + _formdiv.id,
  9281. "style": {
  9282. "backgroundImage": "url(/img/icon/doc.png)"
  9283. },
  9284. "name": "协同文档",
  9285. "forms": _formdiv,
  9286. "click": function () {
  9287. U.MD.D.I.openApplication(str, obj, info);
  9288. }
  9289. }
  9290. break;
  9291. case "mindNetwork": //好友打开
  9292. aTool = 7;
  9293. _iframe = $$("iframe", {
  9294. "webkitallowfullscreen": "",
  9295. "mozallowfullscreen": "",
  9296. "allowfullscreen": "",
  9297. "frameborder": "no",
  9298. "border": "0",
  9299. "scrolling ": "no",
  9300. "style": {
  9301. "cssText": "border:0; width:100%; height:100%;"
  9302. },
  9303. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9304. })
  9305. _box.appendChild(_iframe);
  9306. _box.appendChild(_jie);
  9307. _formdiv = new U.UF.UI.form(
  9308. "思维网格-" + _username,
  9309. _box, {
  9310. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9311. "style": {
  9312. "width": "90%",
  9313. "height": "90%",
  9314. "overflow": 'hidden'
  9315. },
  9316. "onresize": function () { }
  9317. }, {
  9318. closecallback: function () { }
  9319. }, {
  9320. "style": {
  9321. "height": "36px"
  9322. }
  9323. }).form; //创建窗体
  9324. _taskbar = {
  9325. "id": str + _formdiv.id,
  9326. "style": {
  9327. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9328. },
  9329. "name": "思维网格",
  9330. "forms": _formdiv,
  9331. "click": function () {
  9332. U.MD.D.I.openApplication(str, obj, info);
  9333. }
  9334. }
  9335. break;
  9336. case "courseDesign":
  9337. _iframe = $$("iframe", {
  9338. "webkitallowfullscreen": "",
  9339. "mozallowfullscreen": "",
  9340. "allowfullscreen": "",
  9341. "frameborder": "no",
  9342. "border": "0",
  9343. "scrolling ": "no",
  9344. "style": {
  9345. "cssText": "border:0; width:100%; height:100%;"
  9346. },
  9347. "src": "/course-design-vue"
  9348. })
  9349. _box.appendChild(_iframe);
  9350. _box.appendChild(_jie);
  9351. _formdiv = new U.UF.UI.form(
  9352. "项目设计-" + _username,
  9353. _box, {
  9354. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9355. "style": {
  9356. "width": "90%",
  9357. "height": "90%",
  9358. "overflow": 'hidden'
  9359. },
  9360. "onresize": function () { }
  9361. }, {
  9362. closecallback: function () { }
  9363. }, {
  9364. "style": {
  9365. "height": "36px"
  9366. }
  9367. }).form; //创建窗体
  9368. _taskbar = {
  9369. "id": str + _formdiv.id,
  9370. "style": {
  9371. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9372. },
  9373. "name": "项目设计",
  9374. "forms": _formdiv,
  9375. "click": function () {
  9376. U.MD.D.I.openApplication(str, obj, info);
  9377. }
  9378. }
  9379. break;
  9380. }
  9381. const script1 = document.createElement("script");
  9382. script1.type = "text/javascript";
  9383. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9384. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9385. const script2 = document.createElement("script");
  9386. script2.type = "text/javascript";
  9387. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9388. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9389. const script3 = document.createElement("script");
  9390. script3.type = "text/javascript";
  9391. script3.charset = "UTF-8";
  9392. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9393. const script4 = document.createElement("script");
  9394. script4.type = "text/javascript";
  9395. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9396. script4.src = window.origin + "/js/Common/jietu2E.js";
  9397. if (_iframe) {
  9398. if (str == 'doc') {
  9399. _iframe = _formdiv.querySelector('iframe')
  9400. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9401. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9402. _iframe.contentWindow.document.body.appendChild(script1);
  9403. _iframe.contentWindow.document.body.appendChild(script2);
  9404. // _iframe.contentWindow.document.body.appendChild(script3);
  9405. _iframe.contentWindow.document.body.appendChild(script4);
  9406. })
  9407. if (onloadListener) {
  9408. _iframe.contentDocument.location.reload()
  9409. } else {
  9410. _iframe.contentDocument.location.reload()
  9411. }
  9412. } else if (str == 'courseDesign') {
  9413. U.UF.DL.iframeLoad(_iframe, function () {
  9414. // _iframe.contentWindow.U.MD.O.W.load();
  9415. // _iframe.contentWindow.document.body.appendChild(script1);
  9416. _iframe.contentWindow.document.body.appendChild(script2);
  9417. _iframe.contentWindow.document.body.appendChild(script4);
  9418. })
  9419. } else if (str == 'mind') {
  9420. _iframe = _formdiv.querySelector('iframe')
  9421. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9422. //
  9423. _iframe.contentWindow.document.body.appendChild(script1);
  9424. _iframe.contentWindow.document.body.appendChild(script2);
  9425. _iframe.contentWindow.document.body.appendChild(script4);
  9426. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9427. })
  9428. if (onloadListener) {
  9429. _iframe.contentDocument.location.reload()
  9430. } else {
  9431. _iframe.contentDocument.location.reload()
  9432. }
  9433. } else if (str == 'whiteboard') {
  9434. _iframe = _formdiv.querySelector('iframe')
  9435. let onloadListener = _iframe.onload = () => {
  9436. _iframe.contentWindow.document.body.appendChild(script1);
  9437. _iframe.contentWindow.document.body.appendChild(script2);
  9438. _iframe.contentWindow.document.body.appendChild(script4);
  9439. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9440. };
  9441. // if (onloadListener) {
  9442. // try {
  9443. // _iframe.src += "?cocorobo="+new Date().getTime()
  9444. // _iframe.contentWindow.document.location.reload()
  9445. // } catch (error) {
  9446. // }
  9447. // } else {
  9448. // _iframe.contentDocument.location.reload()
  9449. // }
  9450. } else {
  9451. _iframe.onload = () => {
  9452. _iframe.contentWindow.document.body.appendChild(script1);
  9453. _iframe.contentWindow.document.body.appendChild(script2);
  9454. // _iframe.contentWindow.document.body.appendChild(script3);
  9455. _iframe.contentWindow.document.body.appendChild(script4);
  9456. };
  9457. }
  9458. _jie.onclick = async () => {
  9459. let text = ''
  9460. if (aTool == 1) {
  9461. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9462. } else if (aTool == 6) {
  9463. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9464. } else if (aTool == 3) {
  9465. text = await U.MD.D.I.getEditorContent(_iframe);
  9466. }
  9467. _loading.style.display = 'flex'
  9468. console.log(_loading);
  9469. var _ajs = _iframe.contentWindow.document.createElement("script");
  9470. _ajs.type = "text/javascript";
  9471. _ajs.innerHTML =
  9472. // 'console.log(' + _loading + ');\n' +
  9473. 'var _js = document.createElement("script");\n' +
  9474. '_js.type="text/javascript";\n' +
  9475. '_js.charset="UTF-8";\n' +
  9476. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9477. "_js.onload = function(){\n" +
  9478. ' var a = document.getElementsByTagName("img")\n' +
  9479. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9480. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9481. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9482. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9483. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9484. "beforeUpload_shishi(file," +
  9485. "'" +
  9486. _userid +
  9487. "'" +
  9488. ", " +
  9489. "'" +
  9490. _cid +
  9491. "'" +
  9492. ", " +
  9493. "'" +
  9494. _stage +
  9495. "'" +
  9496. ", " +
  9497. "'" +
  9498. _task +
  9499. "'" +
  9500. ", " +
  9501. "'" +
  9502. _tool +
  9503. "'" +
  9504. ", " +
  9505. "'" +
  9506. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9507. "'" +
  9508. ", " +
  9509. "'" +
  9510. aTool +
  9511. "'" +
  9512. ", " +
  9513. "`" +
  9514. text +
  9515. "`" +
  9516. ")\n" +
  9517. " });\n" +
  9518. "}\n" +
  9519. "document.head.appendChild(_js);\n";
  9520. _iframe.contentWindow.document.head.appendChild(_ajs);
  9521. }
  9522. }
  9523. }
  9524. U.MD.D.I.getEditorContent = function (iframe) {
  9525. return new Promise((resolve, reject) => {
  9526. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9527. console.log(content);
  9528. resolve(content)
  9529. });
  9530. });
  9531. }
  9532. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9533. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9534. // if (res.value[0].length > 0) {
  9535. // // resolve(res.value[0][0].text);
  9536. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9537. // $(fileInput).val('');
  9538. // });
  9539. // }
  9540. // }, [], { "type": "GET", "withCredentials": true });
  9541. var xmlhttp;
  9542. var Mac, Sn, DeviceId
  9543. if (window.XMLHttpRequest) {
  9544. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9545. xmlhttp = new XMLHttpRequest();
  9546. } else {
  9547. // IE6, IE5 浏览器执行代码
  9548. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9549. }
  9550. xmlhttp.onreadystatechange = function () {
  9551. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9552. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9553. // resolve(res.value[0][0].text);
  9554. if (type == '2') {
  9555. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9556. } else if (type == '3') {
  9557. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9558. }
  9559. } else {
  9560. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9561. }
  9562. }
  9563. }
  9564. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9565. xmlhttp.send();
  9566. }
  9567. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9568. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9569. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9570. _userinfo = US.userInfo, //登录用户信息
  9571. _userid = US.userInfo.userid //登录用户id
  9572. let _iframe;
  9573. let _cid = cid,
  9574. _stage = stage,
  9575. _task = task,
  9576. _tool = tool;
  9577. var _jie = $$("div", {
  9578. "style": {
  9579. "position": "absolute",
  9580. "bottom": "50px",
  9581. "right": "50px",
  9582. "zIndex": "9999",
  9583. "backgroundColor": "#2268bc",
  9584. "color": "#fff",
  9585. "padding": "12px 20px",
  9586. "cursor": "pointer",
  9587. "borderRadius": "4px",
  9588. },
  9589. "innerHTML": "确认并提交"
  9590. })
  9591. let aTool = ''
  9592. let _loading = document.createElement('div')
  9593. _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;"
  9594. // _loading.id = "";
  9595. let _lchild = document.createElement('div')
  9596. let _limg = document.createElement('img')
  9597. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9598. _limg.style = "width: 26px;margin-right: 10px;"
  9599. _lchild.appendChild(_limg)
  9600. let _lspan = document.createElement('span')
  9601. _lspan.innerHTML = "上传中..."
  9602. _lchild.appendChild(_lspan)
  9603. _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%);"
  9604. _loading.appendChild(_lchild)
  9605. var _box = $$('div', {
  9606. "style": {
  9607. "position": "relative",
  9608. "width": "100%",
  9609. "height": "100%",
  9610. },
  9611. })
  9612. _box.appendChild(_loading)
  9613. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9614. switch (str) {
  9615. case "whiteboard":
  9616. aTool = 1;
  9617. _iframe = $$("iframe", {
  9618. "frameborder": "no",
  9619. "border": "0",
  9620. "scrolling ": "no",
  9621. "style": {
  9622. "cssText": "border:0;width:100%;height:100%"
  9623. },
  9624. "src": "https://beta.iwb.cocorobo.cn/"
  9625. })
  9626. _box.appendChild(_iframe);
  9627. _box.appendChild(_jie);
  9628. _formdiv = new U.UF.UI.form(
  9629. "电子白板",
  9630. _box, {
  9631. "id": "whiteboards" + cid + stage + task + tool,
  9632. "style": {
  9633. "width": "90%",
  9634. "height": "90%",
  9635. "overflow": 'hidden'
  9636. },
  9637. "onresize": function () { }
  9638. }, {
  9639. closecallback: function () { }
  9640. }, {
  9641. "style": {
  9642. "height": "36px"
  9643. }
  9644. }).form; //创建窗体
  9645. _taskbar = {
  9646. "id": str + _formdiv.id,
  9647. "style": {
  9648. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9649. },
  9650. "name": "电子白板",
  9651. "forms": _formdiv,
  9652. "click": function () {
  9653. U.MD.D.I.openApplication(str, obj, info);
  9654. }
  9655. }
  9656. break;
  9657. case "mind":
  9658. aTool = 3;
  9659. _iframe = $$("iframe", {
  9660. "frameborder": "no",
  9661. "border": "0",
  9662. "scrolling ": "no",
  9663. "style": {
  9664. "cssText": "border:0;width:100%;height:100%"
  9665. },
  9666. "src": "/kityminder-editor/dist/index.html"
  9667. });
  9668. _box.appendChild(_iframe);
  9669. _box.appendChild(_jie);
  9670. _formdiv = new U.UF.UI.form(
  9671. "思维导图",
  9672. _box, { //"/jsmind/example/demo.html"
  9673. "id": "minds" + cid + stage + task + tool,
  9674. "style": {
  9675. "width": "90%",
  9676. "height": "90%",
  9677. "overflow": 'hidden'
  9678. },
  9679. "onresize": function () { }
  9680. }, {
  9681. closecallback: function () { }
  9682. }, {
  9683. "style": {
  9684. "height": "36px"
  9685. }
  9686. }).form; //创建窗体
  9687. _taskbar = {
  9688. "id": str + _formdiv.id,
  9689. "style": {
  9690. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9691. },
  9692. "name": "思维导图",
  9693. "forms": _formdiv,
  9694. "click": function () {
  9695. U.MD.D.I.openApplication(str, obj, info);
  9696. }
  9697. }
  9698. break;
  9699. case "doc":
  9700. aTool = 6;
  9701. _iframe = $$("iframe", {
  9702. "frameborder": "no",
  9703. "border": "0",
  9704. "scrolling ": "no",
  9705. "style": {
  9706. "cssText": "border:0;width:100%;height:100%"
  9707. },
  9708. "src": "/Office/Word/WordEditArea.htm"
  9709. })
  9710. _box.appendChild(_iframe);
  9711. _box.appendChild(_jie);
  9712. _formdiv = new U.UF.UI.form(
  9713. "协同文档",
  9714. _box, {
  9715. "id": "docs" + cid + stage + task + tool,
  9716. "style": {
  9717. "width": "90%",
  9718. "height": "90%",
  9719. "overflow": 'hidden'
  9720. },
  9721. "onresize": function () { }
  9722. }, {
  9723. closecallback: function () { }
  9724. }, {
  9725. "style": {
  9726. "height": "36px"
  9727. }
  9728. }).form; //创建窗体
  9729. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9730. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9731. })
  9732. _taskbar = {
  9733. "id": str + _formdiv.id,
  9734. "style": {
  9735. "backgroundImage": "url(/img/icon/doc.png)"
  9736. },
  9737. "name": "协同文档",
  9738. "forms": _formdiv,
  9739. "click": function () {
  9740. U.MD.D.I.openApplication(str, obj, info);
  9741. }
  9742. }
  9743. break;
  9744. }
  9745. const script1 = document.createElement("script");
  9746. script1.type = "text/javascript";
  9747. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9748. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9749. const script2 = document.createElement("script");
  9750. script2.type = "text/javascript";
  9751. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9752. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9753. const script3 = document.createElement("script");
  9754. script3.type = "text/javascript";
  9755. script3.charset = "UTF-8";
  9756. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9757. const script4 = document.createElement("script");
  9758. script4.type = "text/javascript";
  9759. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9760. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9761. if (_iframe) {
  9762. if (str == 'doc') {
  9763. _iframe = _formdiv.querySelector('iframe')
  9764. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9765. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9766. _iframe.contentWindow.document.body.appendChild(script1);
  9767. _iframe.contentWindow.document.body.appendChild(script2);
  9768. // _iframe.contentWindow.document.body.appendChild(script3);
  9769. _iframe.contentWindow.document.body.appendChild(script4);
  9770. })
  9771. if (onloadListener) {
  9772. _iframe.contentDocument.location.reload()
  9773. } else {
  9774. _iframe.contentDocument.location.reload()
  9775. }
  9776. } else if (str == 'mind') {
  9777. _iframe = _formdiv.querySelector('iframe')
  9778. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9779. _iframe.contentWindow.document.body.appendChild(script1);
  9780. _iframe.contentWindow.document.body.appendChild(script2);
  9781. _iframe.contentWindow.document.body.appendChild(script4);
  9782. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9783. })
  9784. if (onloadListener) {
  9785. _iframe.contentDocument.location.reload()
  9786. } else {
  9787. _iframe.contentDocument.location.reload()
  9788. }
  9789. } else {
  9790. _iframe.onload = () => {
  9791. _iframe.contentWindow.document.body.appendChild(script1);
  9792. _iframe.contentWindow.document.body.appendChild(script2);
  9793. // _iframe.contentWindow.document.body.appendChild(script3);
  9794. _iframe.contentWindow.document.body.appendChild(script4);
  9795. };
  9796. }
  9797. _jie.onclick = async () => {
  9798. let text = ''
  9799. if (aTool == 6) {
  9800. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9801. } else if (aTool == 3) {
  9802. text = await U.MD.D.I.getEditorContent(_iframe);
  9803. }
  9804. _loading.style.display = 'flex'
  9805. console.log(_loading);
  9806. var _ajs = _iframe.contentWindow.document.createElement("script");
  9807. _ajs.type = "text/javascript";
  9808. _ajs.innerHTML =
  9809. // 'console.log(' + _loading + ');\n' +
  9810. 'var _js = document.createElement("script");\n' +
  9811. '_js.type="text/javascript";\n' +
  9812. '_js.charset="UTF-8";\n' +
  9813. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9814. "_js.onload = function(){\n" +
  9815. ' var a = document.getElementsByTagName("img")\n' +
  9816. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9817. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9818. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9819. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9820. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9821. "beforeUpload_shishi(file," +
  9822. "'" +
  9823. _userid +
  9824. "'" +
  9825. ", " +
  9826. "'" +
  9827. _cid +
  9828. "'" +
  9829. ", " +
  9830. "'" +
  9831. _stage +
  9832. "'" +
  9833. ", " +
  9834. "'" +
  9835. _task +
  9836. "'" +
  9837. ", " +
  9838. "'" +
  9839. _tool +
  9840. "'" +
  9841. ", " +
  9842. "'" +
  9843. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9844. "'" +
  9845. ", " +
  9846. "'" +
  9847. aTool +
  9848. "'" +
  9849. ", " +
  9850. "`" +
  9851. text +
  9852. "`" +
  9853. ")\n" +
  9854. " });\n" +
  9855. "}\n" +
  9856. "document.head.appendChild(_js);\n";
  9857. _iframe.contentWindow.document.head.appendChild(_ajs);
  9858. }
  9859. }
  9860. //U.MD.D.I.openClick(str);
  9861. //如果有任务栏信息
  9862. // if (_taskbar) {
  9863. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9864. // }
  9865. }
  9866. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9867. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9868. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9869. _userinfo = US.userInfo, //登录用户信息
  9870. _userid = US.userInfo.userid //登录用户id
  9871. let _iframe;
  9872. let _cid = cid,
  9873. _stage = stage,
  9874. _task = task,
  9875. _tool = tool;
  9876. var _jie = $$("div", {
  9877. "style": {
  9878. "position": "absolute",
  9879. "bottom": "50px",
  9880. "right": "50px",
  9881. "zIndex": "9999",
  9882. "backgroundColor": "#2268bc",
  9883. "color": "#fff",
  9884. "padding": "12px 20px",
  9885. "cursor": "pointer",
  9886. "borderRadius": "4px",
  9887. },
  9888. "innerHTML": "确认并提交"
  9889. })
  9890. let aTool = ''
  9891. let _loading = document.createElement('div')
  9892. _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;"
  9893. // _loading.id = "";
  9894. let _lchild = document.createElement('div')
  9895. let _limg = document.createElement('img')
  9896. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9897. _limg.style = "width: 26px;margin-right: 10px;"
  9898. _lchild.appendChild(_limg)
  9899. let _lspan = document.createElement('span')
  9900. _lspan.innerHTML = "上传中..."
  9901. _lchild.appendChild(_lspan)
  9902. _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%);"
  9903. _loading.appendChild(_lchild)
  9904. var _box = $$('div', {
  9905. "style": {
  9906. "position": "relative",
  9907. "width": "100%",
  9908. "height": "100%",
  9909. },
  9910. })
  9911. _box.appendChild(_loading)
  9912. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9913. switch (str) {
  9914. case "whiteboard":
  9915. aTool = 1;
  9916. _iframe = $$("iframe", {
  9917. "frameborder": "no",
  9918. "border": "0",
  9919. "scrolling ": "no",
  9920. "style": {
  9921. "cssText": "border:0;width:100%;height:100%"
  9922. },
  9923. "src": "https://beta.iwb.cocorobo.cn/"
  9924. })
  9925. _box.appendChild(_iframe);
  9926. _box.appendChild(_jie);
  9927. _formdiv = new U.UF.UI.form(
  9928. "电子白板",
  9929. _box, {
  9930. "id": "whiteboards" + cid + stage + task + tool,
  9931. "style": {
  9932. "width": "90%",
  9933. "height": "90%",
  9934. "overflow": 'hidden'
  9935. },
  9936. "onresize": function () { }
  9937. }, {
  9938. closecallback: function () { }
  9939. }, {
  9940. "style": {
  9941. "height": "36px"
  9942. }
  9943. }).form; //创建窗体
  9944. _taskbar = {
  9945. "id": str + _formdiv.id,
  9946. "style": {
  9947. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9948. },
  9949. "name": "电子白板",
  9950. "forms": _formdiv,
  9951. "click": function () {
  9952. U.MD.D.I.openApplication(str, obj, info);
  9953. }
  9954. }
  9955. break;
  9956. case "mind":
  9957. aTool = 3;
  9958. _iframe = $$("iframe", {
  9959. "frameborder": "no",
  9960. "border": "0",
  9961. "scrolling ": "no",
  9962. "style": {
  9963. "cssText": "border:0;width:100%;height:100%"
  9964. },
  9965. "src": "/kityminder-editor/dist/index.html"
  9966. });
  9967. _box.appendChild(_iframe);
  9968. _box.appendChild(_jie);
  9969. _formdiv = new U.UF.UI.form(
  9970. "思维导图",
  9971. _box, { //"/jsmind/example/demo.html"
  9972. "id": "minds" + cid + stage + task + tool,
  9973. "style": {
  9974. "width": "90%",
  9975. "height": "90%",
  9976. "overflow": 'hidden'
  9977. },
  9978. "onresize": function () { }
  9979. }, {
  9980. closecallback: function () { }
  9981. }, {
  9982. "style": {
  9983. "height": "36px"
  9984. }
  9985. }).form; //创建窗体
  9986. _taskbar = {
  9987. "id": str + _formdiv.id,
  9988. "style": {
  9989. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9990. },
  9991. "name": "思维导图",
  9992. "forms": _formdiv,
  9993. "click": function () {
  9994. U.MD.D.I.openApplication(str, obj, info);
  9995. }
  9996. }
  9997. break;
  9998. case "doc":
  9999. aTool = 6;
  10000. _iframe = $$("iframe", {
  10001. "frameborder": "no",
  10002. "border": "0",
  10003. "scrolling ": "no",
  10004. "style": {
  10005. "cssText": "border:0;width:100%;height:100%"
  10006. },
  10007. "src": "/Office/Word/WordEditArea.htm"
  10008. })
  10009. _box.appendChild(_iframe);
  10010. _box.appendChild(_jie);
  10011. _formdiv = new U.UF.UI.form(
  10012. "协同文档",
  10013. _box, {
  10014. "id": "docs" + cid + stage + task + tool,
  10015. "style": {
  10016. "width": "90%",
  10017. "height": "90%",
  10018. "overflow": 'hidden'
  10019. },
  10020. "onresize": function () { }
  10021. }, {
  10022. closecallback: function () { }
  10023. }, {
  10024. "style": {
  10025. "height": "36px"
  10026. }
  10027. }).form; //创建窗体
  10028. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10029. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10030. })
  10031. _taskbar = {
  10032. "id": str + _formdiv.id,
  10033. "style": {
  10034. "backgroundImage": "url(/img/icon/doc.png)"
  10035. },
  10036. "name": "协同文档",
  10037. "forms": _formdiv,
  10038. "click": function () {
  10039. U.MD.D.I.openApplication(str, obj, info);
  10040. }
  10041. }
  10042. break;
  10043. }
  10044. const script1 = document.createElement("script");
  10045. script1.type = "text/javascript";
  10046. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10047. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10048. const script2 = document.createElement("script");
  10049. script2.type = "text/javascript";
  10050. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10051. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10052. const script3 = document.createElement("script");
  10053. script3.type = "text/javascript";
  10054. script3.charset = "UTF-8";
  10055. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10056. const script4 = document.createElement("script");
  10057. script4.type = "text/javascript";
  10058. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10059. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10060. if (_iframe) {
  10061. if (str == 'doc') {
  10062. _iframe = _formdiv.querySelector('iframe')
  10063. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10064. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10065. _iframe.contentWindow.document.body.appendChild(script1);
  10066. _iframe.contentWindow.document.body.appendChild(script2);
  10067. // _iframe.contentWindow.document.body.appendChild(script3);
  10068. _iframe.contentWindow.document.body.appendChild(script4);
  10069. })
  10070. if (onloadListener) {
  10071. _iframe.contentDocument.location.reload()
  10072. } else {
  10073. _iframe.contentDocument.location.reload()
  10074. }
  10075. } else if (str == 'mind') {
  10076. _iframe = _formdiv.querySelector('iframe')
  10077. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10078. _iframe.contentWindow.document.body.appendChild(script1);
  10079. _iframe.contentWindow.document.body.appendChild(script2);
  10080. _iframe.contentWindow.document.body.appendChild(script4);
  10081. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10082. })
  10083. if (onloadListener) {
  10084. _iframe.contentDocument.location.reload()
  10085. } else {
  10086. _iframe.contentDocument.location.reload()
  10087. }
  10088. } else {
  10089. _iframe.onload = () => {
  10090. _iframe.contentWindow.document.body.appendChild(script1);
  10091. _iframe.contentWindow.document.body.appendChild(script2);
  10092. // _iframe.contentWindow.document.body.appendChild(script3);
  10093. _iframe.contentWindow.document.body.appendChild(script4);
  10094. };
  10095. }
  10096. _jie.onclick = async () => {
  10097. let text = ''
  10098. if (aTool == 6) {
  10099. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10100. } else if (aTool == 3) {
  10101. text = await U.MD.D.I.getEditorContent(_iframe);
  10102. }
  10103. _loading.style.display = 'flex'
  10104. console.log(_loading);
  10105. var _ajs = _iframe.contentWindow.document.createElement("script");
  10106. _ajs.type = "text/javascript";
  10107. _ajs.innerHTML =
  10108. // 'console.log(' + _loading + ');\n' +
  10109. 'var _js = document.createElement("script");\n' +
  10110. '_js.type="text/javascript";\n' +
  10111. '_js.charset="UTF-8";\n' +
  10112. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10113. "_js.onload = function(){\n" +
  10114. ' var a = document.getElementsByTagName("img")\n' +
  10115. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10116. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10117. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10118. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10119. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10120. "beforeUpload_shishi(file," +
  10121. "'" +
  10122. _userid +
  10123. "'" +
  10124. ", " +
  10125. "'" +
  10126. _cid +
  10127. "'" +
  10128. ", " +
  10129. "'" +
  10130. _stage +
  10131. "'" +
  10132. ", " +
  10133. "'" +
  10134. _task +
  10135. "'" +
  10136. ", " +
  10137. "'" +
  10138. _tool +
  10139. "'" +
  10140. ", " +
  10141. "'" +
  10142. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10143. "'" +
  10144. ", " +
  10145. "'" +
  10146. aTool +
  10147. "'" +
  10148. ", " +
  10149. "`" +
  10150. text +
  10151. "`" +
  10152. ")\n" +
  10153. " });\n" +
  10154. "}\n" +
  10155. "document.head.appendChild(_js);\n";
  10156. _iframe.contentWindow.document.head.appendChild(_ajs);
  10157. }
  10158. }
  10159. //U.MD.D.I.openClick(str);
  10160. //如果有任务栏信息
  10161. // if (_taskbar) {
  10162. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10163. // }
  10164. }
  10165. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10166. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10167. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10168. _userinfo = US.userInfo, //登录用户信息
  10169. _userid = US.userInfo.userid //登录用户id
  10170. let _iframe;
  10171. let _cid = cid,
  10172. _stage = stage,
  10173. _task = task,
  10174. _tool = tool;
  10175. var _jie = $$("div", {
  10176. "style": {
  10177. "position": "absolute",
  10178. "bottom": "50px",
  10179. "right": "50px",
  10180. "zIndex": "9999",
  10181. "backgroundColor": "#2268bc",
  10182. "color": "#fff",
  10183. "padding": "12px 20px",
  10184. "cursor": "pointer",
  10185. "borderRadius": "4px",
  10186. },
  10187. "innerHTML": "上传模板"
  10188. })
  10189. let aTool = ''
  10190. let _loading = document.createElement('div')
  10191. _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;"
  10192. // _loading.id = "";
  10193. let _lchild = document.createElement('div')
  10194. let _limg = document.createElement('img')
  10195. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10196. _limg.style = "width: 26px;margin-right: 10px;"
  10197. _lchild.appendChild(_limg)
  10198. let _lspan = document.createElement('span')
  10199. _lspan.innerHTML = "上传中..."
  10200. _lchild.appendChild(_lspan)
  10201. _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%);"
  10202. _loading.appendChild(_lchild)
  10203. var _box = $$('div', {
  10204. "style": {
  10205. "position": "relative",
  10206. "width": "100%",
  10207. "height": "100%",
  10208. },
  10209. })
  10210. _box.appendChild(_loading)
  10211. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10212. switch (str) {
  10213. case "whiteboard":
  10214. aTool = 1;
  10215. _iframe = $$("iframe", {
  10216. "frameborder": "no",
  10217. "border": "0",
  10218. "scrolling ": "no",
  10219. "style": {
  10220. "cssText": "border:0;width:100%;height:100%"
  10221. },
  10222. "src": "https://beta.iwb.cocorobo.cn/"
  10223. })
  10224. _box.appendChild(_iframe);
  10225. _box.appendChild(_jie);
  10226. _formdiv = new U.UF.UI.form(
  10227. "电子白板",
  10228. _box, {
  10229. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10230. "style": {
  10231. "width": "90%",
  10232. "height": "90%",
  10233. "overflow": 'hidden'
  10234. },
  10235. "onresize": function () { }
  10236. }, {
  10237. closecallback: function () { }
  10238. }, {
  10239. "style": {
  10240. "height": "36px"
  10241. }
  10242. }).form; //创建窗体
  10243. _taskbar = {
  10244. "id": str + _formdiv.id,
  10245. "style": {
  10246. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10247. },
  10248. "name": "电子白板",
  10249. "forms": _formdiv,
  10250. "click": function () {
  10251. U.MD.D.I.openApplication(str, obj, info);
  10252. }
  10253. }
  10254. break;
  10255. case "mind":
  10256. aTool = 3;
  10257. _iframe = $$("iframe", {
  10258. "frameborder": "no",
  10259. "border": "0",
  10260. "scrolling ": "no",
  10261. "style": {
  10262. "cssText": "border:0;width:100%;height:100%"
  10263. },
  10264. "src": "/kityminder-editor/dist/index.html"
  10265. });
  10266. _box.appendChild(_iframe);
  10267. _box.appendChild(_jie);
  10268. _formdiv = new U.UF.UI.form(
  10269. "思维导图",
  10270. _box, { //"/jsmind/example/demo.html"
  10271. "id": "minds_Yu" + cid + stage + task + tool,
  10272. "style": {
  10273. "width": "90%",
  10274. "height": "90%",
  10275. "overflow": 'hidden'
  10276. },
  10277. "onresize": function () { }
  10278. }, {
  10279. closecallback: function () { }
  10280. }, {
  10281. "style": {
  10282. "height": "36px"
  10283. }
  10284. }).form; //创建窗体
  10285. _taskbar = {
  10286. "id": str + _formdiv.id,
  10287. "style": {
  10288. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10289. },
  10290. "name": "思维导图",
  10291. "forms": _formdiv,
  10292. "click": function () {
  10293. U.MD.D.I.openApplication(str, obj, info);
  10294. }
  10295. }
  10296. break;
  10297. case "doc":
  10298. aTool = 6;
  10299. _iframe = $$("iframe", {
  10300. "frameborder": "no",
  10301. "border": "0",
  10302. "scrolling ": "no",
  10303. "style": {
  10304. "cssText": "border:0;width:100%;height:100%"
  10305. },
  10306. "src": "/Office/Word/WordEditArea.htm"
  10307. })
  10308. _box.appendChild(_iframe);
  10309. _box.appendChild(_jie);
  10310. _formdiv = new U.UF.UI.form(
  10311. "协同文档",
  10312. _box, {
  10313. "id": "docs_Yu" + cid + stage + task + tool,
  10314. "style": {
  10315. "width": "90%",
  10316. "height": "90%",
  10317. "overflow": 'hidden'
  10318. },
  10319. "onresize": function () { }
  10320. }, {
  10321. closecallback: function () { }
  10322. }, {
  10323. "style": {
  10324. "height": "36px"
  10325. }
  10326. }).form; //创建窗体
  10327. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10328. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10329. })
  10330. _taskbar = {
  10331. "id": str + _formdiv.id,
  10332. "style": {
  10333. "backgroundImage": "url(/img/icon/doc.png)"
  10334. },
  10335. "name": "协同文档",
  10336. "forms": _formdiv,
  10337. "click": function () {
  10338. U.MD.D.I.openApplication(str, obj, info);
  10339. }
  10340. }
  10341. break;
  10342. case "CocoPi":
  10343. aTool = 57;
  10344. _iframe = $$("iframe", {
  10345. "allowpaymentrequest": "allowpaymentrequest",
  10346. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10347. "webkitallowfullscreen": "",
  10348. "mozallowfullscreen": "",
  10349. "frameborder": "no",
  10350. "border": "0",
  10351. "scrolling ": "no",
  10352. "style": {
  10353. "cssText": "border:0;width:100%;height:100%"
  10354. },
  10355. "src": "https://pi.cocorobo.cn/"
  10356. })
  10357. _box.appendChild(_iframe);
  10358. _box.appendChild(_jie);
  10359. _formdiv = new U.UF.UI.form(
  10360. "CocoPi",
  10361. _box, {
  10362. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10363. "style": {
  10364. "width": "90%",
  10365. "height": "90%",
  10366. "overflow": 'hidden'
  10367. },
  10368. "onresize": function () { }
  10369. }, {
  10370. closecallback: function () { }
  10371. }, {
  10372. "style": {
  10373. "height": "36px"
  10374. }
  10375. }).form; //创建窗体
  10376. _taskbar = {
  10377. "id": str + _formdiv.id,
  10378. "style": {
  10379. "backgroundImage": "url(/img/icon/cocopi.png)"
  10380. },
  10381. "name": "CocoPi",
  10382. "forms": _formdiv,
  10383. "click": function () {
  10384. U.MD.D.I.openApplication(str, obj, info);
  10385. }
  10386. }
  10387. break;
  10388. }
  10389. if (_iframe) {
  10390. if (str == 'doc') {
  10391. _iframe = _formdiv.querySelector('iframe')
  10392. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10393. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10394. })
  10395. if (onloadListener) {
  10396. _iframe.contentDocument.location.reload()
  10397. } else {
  10398. _iframe.contentDocument.location.reload()
  10399. }
  10400. } else if (str == 'mind') {
  10401. _iframe = _formdiv.querySelector('iframe')
  10402. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10403. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10404. })
  10405. if (onloadListener) {
  10406. _iframe.contentDocument.location.reload()
  10407. } else {
  10408. _iframe.contentDocument.location.reload()
  10409. }
  10410. } else if (str == 'whiteboard') {
  10411. _iframe = _formdiv.querySelector('iframe')
  10412. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10413. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10414. })
  10415. // if (onloadListener) {
  10416. // try {
  10417. // _iframe.src += "?cocorobo="+new Date().getTime()
  10418. // _iframe.contentWindow.document.location.reload()
  10419. // } catch (error) {
  10420. // }
  10421. // } else {
  10422. // _iframe.contentDocument.location.reload()
  10423. // }
  10424. } else if (str == 'CocoPi') {
  10425. _iframe = _formdiv.querySelector('iframe')
  10426. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10427. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10428. })
  10429. if (onloadListener) {
  10430. _iframe.contentDocument.location.reload()
  10431. } else {
  10432. _iframe.contentDocument.location.reload()
  10433. }
  10434. } else {
  10435. _iframe.onload = () => { };
  10436. }
  10437. _jie.onclick = async () => {
  10438. let text = ''
  10439. let type = '2'
  10440. if (aTool == 1) {
  10441. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10442. type = '3'
  10443. } else if (aTool == 6) {
  10444. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10445. type = '1'
  10446. } else if (aTool == 3) {
  10447. text = await U.MD.D.I.getEditorContent(_iframe);
  10448. type = '2'
  10449. } else if (aTool == 57) {
  10450. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10451. type = '4'
  10452. }
  10453. _loading.style.display = 'flex'
  10454. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10455. }
  10456. }
  10457. //U.MD.D.I.openClick(str);
  10458. //如果有任务栏信息
  10459. // if (_taskbar) {
  10460. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10461. // }
  10462. }
  10463. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10464. var xmlhttp;
  10465. var Mac, Sn, DeviceId
  10466. if (window.XMLHttpRequest) {
  10467. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10468. xmlhttp = new XMLHttpRequest();
  10469. } else {
  10470. // IE6, IE5 浏览器执行代码
  10471. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10472. }
  10473. xmlhttp.onreadystatechange = function () {
  10474. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10475. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10476. // resolve(res.value[0][0].text);
  10477. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10478. }
  10479. }
  10480. }
  10481. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10482. xmlhttp.send();
  10483. }
  10484. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10485. var xmlhttp;
  10486. var Mac, Sn, DeviceId
  10487. if (window.XMLHttpRequest) {
  10488. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10489. xmlhttp = new XMLHttpRequest();
  10490. } else {
  10491. // IE6, IE5 浏览器执行代码
  10492. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10493. }
  10494. xmlhttp.onreadystatechange = function () {
  10495. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10496. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10497. // resolve(res.value[0][0].text);
  10498. if (type == '2') {
  10499. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10500. } else if (type == '3') {
  10501. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10502. } else if (type == '4') {
  10503. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10504. }
  10505. } else {
  10506. if (type == '2') {
  10507. iframe.contentWindow.editor.minder.importData('json', '')
  10508. } else if (type == '3') {
  10509. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10510. } else if (type == '4') {
  10511. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10512. }
  10513. }
  10514. }
  10515. }
  10516. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10517. xmlhttp.send();
  10518. }
  10519. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10520. var xmlhttp;
  10521. var Mac, Sn, DeviceId
  10522. if (window.XMLHttpRequest) {
  10523. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10524. xmlhttp = new XMLHttpRequest();
  10525. } else {
  10526. // IE6, IE5 浏览器执行代码
  10527. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10528. }
  10529. xmlhttp.onreadystatechange = function () {
  10530. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10531. if (xmlhttp.response) {
  10532. // resolve(res.value[0][0].text);
  10533. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10534. // $(fileInput).val('');
  10535. // });
  10536. span.innerHTML = '上传成功'
  10537. setTimeout(() => {
  10538. loading.style.display = 'none'
  10539. }, 1000);
  10540. }
  10541. }
  10542. }
  10543. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10544. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10545. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10546. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10547. // 设置请求头,表示请求体的编码格式
  10548. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10549. // 设置请求体,使用url-encoded格式的数据
  10550. }
  10551. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10552. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10553. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10554. _userinfo = US.userInfo, //登录用户信息
  10555. _userid = US.userInfo.userid //登录用户id
  10556. let _iframe;
  10557. let _cid = cid,
  10558. _stage = stage,
  10559. _task = task,
  10560. _tool = tool;
  10561. var _jie = $$("div", {
  10562. "style": {
  10563. "position": "absolute",
  10564. "bottom": "50px",
  10565. "right": "50px",
  10566. "zIndex": "9999",
  10567. "backgroundColor": "#2268bc",
  10568. "color": "#fff",
  10569. "padding": "12px 20px",
  10570. "cursor": "pointer",
  10571. "borderRadius": "4px",
  10572. },
  10573. "innerHTML": "提交作业"
  10574. })
  10575. let aTool = ''
  10576. let _loading = document.createElement('div')
  10577. _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;"
  10578. // _loading.id = "";
  10579. let _lchild = document.createElement('div')
  10580. let _limg = document.createElement('img')
  10581. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10582. _limg.style = "width: 26px;margin-right: 10px;"
  10583. _lchild.appendChild(_limg)
  10584. let _lspan = document.createElement('span')
  10585. _lspan.innerHTML = "上传中..."
  10586. _lchild.appendChild(_lspan)
  10587. _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%);"
  10588. _loading.appendChild(_lchild)
  10589. var _box = $$('div', {
  10590. "style": {
  10591. "position": "relative",
  10592. "width": "100%",
  10593. "height": "100%",
  10594. },
  10595. })
  10596. _box.appendChild(_loading)
  10597. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10598. switch (str) {
  10599. case "CocoPi":
  10600. aTool = 57;
  10601. _iframe = $$("iframe", {
  10602. "allowpaymentrequest": "allowpaymentrequest",
  10603. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10604. "webkitallowfullscreen": "",
  10605. "mozallowfullscreen": "",
  10606. "frameborder": "no",
  10607. "border": "0",
  10608. "scrolling ": "no",
  10609. "style": {
  10610. "cssText": "border:0;width:100%;height:100%"
  10611. },
  10612. "src": "https://pi.cocorobo.cn/"
  10613. })
  10614. _box.appendChild(_iframe);
  10615. _box.appendChild(_jie);
  10616. _formdiv = new U.UF.UI.form(
  10617. "CocoPi",
  10618. _box, {
  10619. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10620. "style": {
  10621. "width": "90%",
  10622. "height": "90%",
  10623. "overflow": 'hidden'
  10624. },
  10625. "onresize": function () { }
  10626. }, {
  10627. closecallback: function () { }
  10628. }, {
  10629. "style": {
  10630. "height": "36px"
  10631. }
  10632. }).form; //创建窗体
  10633. _taskbar = {
  10634. "id": str + _formdiv.id,
  10635. "style": {
  10636. "backgroundImage": "url(/img/icon/cocopi.png)"
  10637. },
  10638. "name": "CocoPi",
  10639. "forms": _formdiv,
  10640. "click": function () {
  10641. U.MD.D.I.openApplication(str, obj, info);
  10642. }
  10643. }
  10644. break;
  10645. }
  10646. if (_iframe) {
  10647. if (str == 'CocoPi') {
  10648. _iframe = _formdiv.querySelector('iframe')
  10649. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10650. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10651. })
  10652. if (onloadListener) {
  10653. _iframe.contentDocument.location.reload()
  10654. } else {
  10655. _iframe.contentDocument.location.reload()
  10656. }
  10657. }
  10658. _jie.onclick = async () => {
  10659. let text = ''
  10660. if (aTool == 57) {
  10661. text = _iframe.contentWindow.getLoadXmlStr()
  10662. }
  10663. _loading.style.display = 'flex'
  10664. console.log(_loading);
  10665. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10666. _loading.style.display = 'none'
  10667. let _div = document.createElement('div')
  10668. _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;"
  10669. let _inner = document.createElement('div')
  10670. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10671. _inner.innerHTML = "上传成功"
  10672. _div.appendChild(_inner)
  10673. _iframe.contentWindow.window.document.body.appendChild(_div)
  10674. _div.onclick = () => {
  10675. _iframe.contentWindow.window.document.body.removeChild(_div)
  10676. }
  10677. setTimeout(() => {
  10678. _iframe.contentWindow.window.document.body.removeChild(_div)
  10679. }, 1000);
  10680. }, [], { "type": "POST", "withCredentials": true });
  10681. }
  10682. }
  10683. }
  10684. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10685. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10686. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10687. _userid = student.userid, //登录用户id
  10688. _username = student.student //用户名字
  10689. let _iframe;
  10690. let _cid = cid,
  10691. _stage = stage,
  10692. _task = task,
  10693. _tool = tool;
  10694. var _jie = $$("div", {
  10695. "style": {
  10696. "position": "absolute",
  10697. "bottom": "50px",
  10698. "right": "50px",
  10699. "zIndex": "9999",
  10700. "backgroundColor": "#2268bc",
  10701. "color": "#fff",
  10702. "padding": "12px 20px",
  10703. "cursor": "pointer",
  10704. "borderRadius": "4px",
  10705. },
  10706. "innerHTML": "提交作业"
  10707. })
  10708. let aTool = ''
  10709. let _loading = document.createElement('div')
  10710. _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;"
  10711. // _loading.id = "";
  10712. let _lchild = document.createElement('div')
  10713. let _limg = document.createElement('img')
  10714. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10715. _limg.style = "width: 26px;margin-right: 10px;"
  10716. _lchild.appendChild(_limg)
  10717. let _lspan = document.createElement('span')
  10718. _lspan.innerHTML = "上传中..."
  10719. _lchild.appendChild(_lspan)
  10720. _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%);"
  10721. _loading.appendChild(_lchild)
  10722. var _box = $$('div', {
  10723. "style": {
  10724. "position": "relative",
  10725. "width": "100%",
  10726. "height": "100%",
  10727. },
  10728. })
  10729. _box.appendChild(_loading)
  10730. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10731. switch (str) {
  10732. case "CocoPi":
  10733. aTool = 57;
  10734. _iframe = $$("iframe", {
  10735. "allowpaymentrequest": "allowpaymentrequest",
  10736. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10737. "webkitallowfullscreen": "",
  10738. "mozallowfullscreen": "",
  10739. "frameborder": "no",
  10740. "border": "0",
  10741. "scrolling ": "no",
  10742. "style": {
  10743. "cssText": "border:0;width:100%;height:100%"
  10744. },
  10745. "src": "https://pi.cocorobo.cn/"
  10746. })
  10747. _box.appendChild(_iframe);
  10748. _box.appendChild(_jie);
  10749. _formdiv = new U.UF.UI.form(
  10750. "CocoPi-" + _username,
  10751. _box, {
  10752. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10753. "style": {
  10754. "width": "90%",
  10755. "height": "90%",
  10756. "overflow": 'hidden'
  10757. },
  10758. "onresize": function () { }
  10759. }, {
  10760. closecallback: function () { }
  10761. }, {
  10762. "style": {
  10763. "height": "36px"
  10764. }
  10765. }).form; //创建窗体
  10766. _taskbar = {
  10767. "id": str + _formdiv.id,
  10768. "style": {
  10769. "backgroundImage": "url(/img/icon/cocopi.png)"
  10770. },
  10771. "name": "CocoPi",
  10772. "forms": _formdiv,
  10773. "click": function () {
  10774. U.MD.D.I.openApplication(str, obj, info);
  10775. }
  10776. }
  10777. break;
  10778. }
  10779. if (_iframe) {
  10780. if (str == 'CocoPi') {
  10781. _iframe = _formdiv.querySelector('iframe')
  10782. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10783. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10784. })
  10785. if (onloadListener) {
  10786. _iframe.contentDocument.location.reload()
  10787. } else {
  10788. _iframe.contentDocument.location.reload()
  10789. }
  10790. }
  10791. _jie.onclick = async () => {
  10792. let text = ''
  10793. if (aTool == 57) {
  10794. text = _iframe.contentWindow.getLoadXmlStr()
  10795. }
  10796. _loading.style.display = 'flex'
  10797. console.log(_loading);
  10798. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10799. _loading.style.display = 'none'
  10800. let _div = document.createElement('div')
  10801. _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;"
  10802. let _inner = document.createElement('div')
  10803. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10804. _inner.innerHTML = "上传成功"
  10805. _div.appendChild(_inner)
  10806. _iframe.contentWindow.window.document.body.appendChild(_div)
  10807. _div.onclick = () => {
  10808. _iframe.contentWindow.window.document.body.removeChild(_div)
  10809. }
  10810. setTimeout(() => {
  10811. _iframe.contentWindow.window.document.body.removeChild(_div)
  10812. }, 1000);
  10813. }, [], { "type": "POST", "withCredentials": true });
  10814. }
  10815. }
  10816. }
  10817. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10818. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10819. if (res.value[0].length > 0) {
  10820. if (atool == 57) {
  10821. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10822. }
  10823. } else {
  10824. if (atool == 57) {
  10825. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10826. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10827. }
  10828. }
  10829. }, [], { "type": "POST", "withCredentials": true });
  10830. }
  10831. U.MD.D.addOp = function(text,type,time){
  10832. var userInfo = US.userInfo;
  10833. if(Object.keys(userInfo).length !== 0){
  10834. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10835. }, [], { "type": "POST", "withCredentials": true });
  10836. }
  10837. }