DeskTop.js 707 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232
  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. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2147. //清楚桌面图标
  2148. el.innerHTML = "";
  2149. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2150. _teacherDesktopIconInfo.push(
  2151. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2152. { "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)" } },
  2153. )
  2154. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2155. }
  2156. 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') {
  2157. _teacherDesktopIconInfo.push(
  2158. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2159. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2160. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2161. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2162. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2163. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2164. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2165. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2166. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2167. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2168. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2169. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2170. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2171. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2172. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2173. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2174. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2175. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2176. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2177. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2178. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2179. )
  2180. }
  2181. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2182. _teacherDesktopIconInfo.push(
  2183. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2184. )
  2185. }
  2186. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2187. _nsfxTeacherDeskIconInfo.push(
  2188. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2189. )
  2190. }
  2191. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2192. // _teacherDesktopIconInfo.push(
  2193. // )
  2194. // }
  2195. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2196. _teacherDesktopIconInfo.push(
  2197. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2198. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2199. )
  2200. }
  2201. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2202. _teacherDesktopIconInfo.push(
  2203. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2205. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2206. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2207. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2208. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2209. )
  2210. _studentDesktopIconInfo.push(
  2211. )
  2212. }
  2213. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2214. _teacherDesktopIconInfo.push(
  2215. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2216. )
  2217. _studentDesktopIconInfo.push(
  2218. )
  2219. }
  2220. //010606 组织
  2221. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2222. _teacherDesktopIconInfo.push(
  2223. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2224. )
  2225. _studentDesktopIconInfo.push(
  2226. )
  2227. }
  2228. //麒麟二中 和 民新小学
  2229. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2230. _teacherDesktopIconInfo.push(
  2231. )
  2232. }
  2233. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2234. _teacherDesktopIconInfo.push(
  2235. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2236. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2237. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2238. )
  2239. }
  2240. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2241. _hkTeacherDeskIconInfo.push(
  2242. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2243. )
  2244. }
  2245. //北师大附中(010601)
  2246. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2247. // _teacherDesktopIconInfo.push(
  2248. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2249. // )
  2250. // _studentDesktopIconInfo.push(
  2251. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2252. // )
  2253. // }
  2254. //樂善堂余近卿中學
  2255. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2256. _teacherDesktopIconInfo.push(
  2257. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2258. )
  2259. }
  2260. // Education Artificial Intelligence
  2261. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2262. _teacherDesktopIconInfo.push(
  2263. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2264. )
  2265. }
  2266. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2267. _teacherDesktopIconInfo.push(
  2268. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2269. )
  2270. }
  2271. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2272. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2273. _teacherDesktopIconInfo.push(
  2274. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2275. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2276. )
  2277. }
  2278. //麒麟二中
  2279. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2280. _studentDesktopIconInfo.push(
  2281. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2282. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2283. )
  2284. }
  2285. //万科双语
  2286. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2287. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2288. if (el.Name == '项目管理') {
  2289. el.Name = 'PBL项目'
  2290. }
  2291. return el
  2292. })
  2293. _studentDesktopIconInfo3.push(
  2294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2295. )
  2296. }
  2297. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2298. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2299. return el.Name != '魔盒识字' && el.Name != '24点'
  2300. })
  2301. }
  2302. 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) {
  2303. _studentDesktopIconInfo.push(
  2304. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2305. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2306. )
  2307. }
  2308. //循环创建桌面图标
  2309. if (type == 1) {
  2310. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2311. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2312. _content = $$("div", {
  2313. className: "U_MD_D_KO",
  2314. "onmousedown": U.UF.C.closure(function (obj) {
  2315. //防止拖动图标即打开了桌面应用
  2316. U.MD.D.click(this, obj);
  2317. }, [_studentDesktopIconInfo[i]]),
  2318. "onclick": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_studentDesktopIconInfo[i]])
  2322. }, _frag); //
  2323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2326. }
  2327. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2328. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2329. _content = $$("div", {
  2330. className: "U_MD_D_KO",
  2331. "onmousedown": U.UF.C.closure(function (obj) {
  2332. //防止拖动图标即打开了桌面应用
  2333. U.MD.D.click(this, obj);
  2334. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2335. "onclick": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_hkZJLSStudentDeskIconInfo[i]])
  2339. }, _frag); //
  2340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2343. } //
  2344. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2345. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2346. _content = $$("div", {
  2347. className: "U_MD_D_KO",
  2348. "onmousedown": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_ytyStudentDeskIconInfo[i]]),
  2352. "onclick": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_ytyStudentDeskIconInfo[i]])
  2356. }, _frag); //
  2357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2360. } //
  2361. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2362. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2363. _content = $$("div", {
  2364. className: "U_MD_D_KO",
  2365. "onmousedown": U.UF.C.closure(function (obj) {
  2366. //防止拖动图标即打开了桌面应用
  2367. U.MD.D.click(this, obj);
  2368. }, [_jccssylStudentDeskIconInfo[i]]),
  2369. "onclick": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_jccssylStudentDeskIconInfo[i]])
  2373. }, _frag); //
  2374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2377. }
  2378. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2379. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2380. _content = $$("div", {
  2381. className: "U_MD_D_KO",
  2382. "onmousedown": U.UF.C.closure(function (obj) {
  2383. //防止拖动图标即打开了桌面应用
  2384. U.MD.D.click(this, obj);
  2385. }, [_scnuaiStudentDeskIconInfo[i]]),
  2386. "onclick": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_scnuaiStudentDeskIconInfo[i]])
  2390. }, _frag); //
  2391. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2392. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2393. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2394. }
  2395. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2396. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2397. _content = $$("div", {
  2398. className: "U_MD_D_KO",
  2399. "onmousedown": U.UF.C.closure(function (obj) {
  2400. //防止拖动图标即打开了桌面应用
  2401. U.MD.D.click(this, obj);
  2402. }, [_caleStudentDeskIconInfo[i]]),
  2403. "onclick": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_caleStudentDeskIconInfo[i]])
  2407. }, _frag); //
  2408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2411. }
  2412. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2413. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2414. _content = $$("div", {
  2415. className: "U_MD_D_KO",
  2416. "onmousedown": U.UF.C.closure(function (obj) {
  2417. //防止拖动图标即打开了桌面应用
  2418. U.MD.D.click(this, obj);
  2419. }, [_thuioeStudentDeskIconInfo[i]]),
  2420. "onclick": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_thuioeStudentDeskIconInfo[i]])
  2424. }, _frag); //
  2425. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2426. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2427. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2428. }
  2429. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2430. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2431. _content = $$("div", {
  2432. className: "U_MD_D_KO",
  2433. "onmousedown": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_tpcStudentDeskIconInfo[i]]),
  2437. "onclick": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_tpcStudentDeskIconInfo[i]])
  2441. }, _frag); //
  2442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2445. } //
  2446. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2447. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2448. _content = $$("div", {
  2449. className: "U_MD_D_KO",
  2450. "onmousedown": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_chjyjStudentDeskIconInfo[i]]),
  2454. "onclick": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_chjyjStudentDeskIconInfo[i]])
  2458. }, _frag); //
  2459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2462. }
  2463. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2464. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2465. _content = $$("div", {
  2466. className: "U_MD_D_KO",
  2467. "onmousedown": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_szjkyStudentDeskIconInfo[i]]),
  2471. "onclick": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_szjkyStudentDeskIconInfo[i]])
  2475. }, _frag); //
  2476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2479. }
  2480. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2481. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2482. _content = $$("div", {
  2483. className: "U_MD_D_KO",
  2484. "onmousedown": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_x020201StudentDeskIconInfo[i]]),
  2488. "onclick": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_x020201StudentDeskIconInfo[i]])
  2492. }, _frag); //
  2493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2496. }
  2497. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2498. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2499. _content = $$("div", {
  2500. className: "U_MD_D_KO",
  2501. "onmousedown": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_SCNUETStudentDeskIconInfo[i]]),
  2505. "onclick": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_SCNUETStudentDeskIconInfo[i]])
  2509. }, _frag); //
  2510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2513. }
  2514. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2515. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2516. _content = $$("div", {
  2517. className: "U_MD_D_KO",
  2518. "onmousedown": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_dseiStudentDeskIconInfo[i]]),
  2522. "onclick": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_dseiStudentDeskIconInfo[i]])
  2526. }, _frag); //
  2527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2530. }
  2531. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2532. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2533. _content = $$("div", {
  2534. className: "U_MD_D_KO",
  2535. "onmousedown": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2539. "onclick": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2543. }, _frag); //
  2544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2547. }
  2548. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2549. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2550. _content = $$("div", {
  2551. className: "U_MD_D_KO",
  2552. "onmousedown": U.UF.C.closure(function (obj) {
  2553. //防止拖动图标即打开了桌面应用
  2554. U.MD.D.click(this, obj);
  2555. }, [_nsfxStudentDeskIconInfo[i]]),
  2556. "onclick": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_nsfxStudentDeskIconInfo[i]])
  2560. }, _frag); //
  2561. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2562. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2563. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2564. }
  2565. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2566. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2567. _content = $$("div", {
  2568. className: "U_MD_D_KO",
  2569. "onmousedown": U.UF.C.closure(function (obj) {
  2570. //防止拖动图标即打开了桌面应用
  2571. U.MD.D.click(this, obj);
  2572. }, [_stiaStudentDeskIconInfo[i]]),
  2573. "onclick": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_stiaStudentDeskIconInfo[i]])
  2577. }, _frag); //
  2578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2581. }
  2582. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2583. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2584. _content = $$("div", {
  2585. className: "U_MD_D_KO",
  2586. "onmousedown": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_szdjgStudentDeskIconInfo[i]]),
  2590. "onclick": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_szdjgStudentDeskIconInfo[i]])
  2594. }, _frag); //
  2595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2598. }
  2599. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2600. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2601. _content = $$("div", {
  2602. className: "U_MD_D_KO",
  2603. "onmousedown": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_x010607StudentDeskIconInfo[i]]),
  2607. "onclick": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_x010607StudentDeskIconInfo[i]])
  2611. }, _frag); //
  2612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2615. }
  2616. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2617. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_xhlyStudentDeskIconInfo[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_xhlyStudentDeskIconInfo[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2632. }
  2633. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2634. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2635. _content = $$("div", {
  2636. className: "U_MD_D_KO",
  2637. "onmousedown": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2641. "onclick": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2645. }, _frag); //
  2646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2649. }
  2650. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2651. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2652. _content = $$("div", {
  2653. className: "U_MD_D_KO",
  2654. "onmousedown": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_x010503StudentDeskIconInfo[i]]),
  2658. "onclick": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_x010503StudentDeskIconInfo[i]])
  2662. }, _frag); //
  2663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2666. }
  2667. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2668. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2669. _content = $$("div", {
  2670. className: "U_MD_D_KO",
  2671. "onmousedown": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_x010504StudentDeskIconInfo[i]]),
  2675. "onclick": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_x010504StudentDeskIconInfo[i]])
  2679. }, _frag); //
  2680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2683. }
  2684. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2685. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2686. _content = $$("div", {
  2687. className: "U_MD_D_KO",
  2688. "onmousedown": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_x010505StudentDeskIconInfo[i]]),
  2692. "onclick": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_x010505StudentDeskIconInfo[i]])
  2696. }, _frag); //
  2697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2700. }
  2701. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2702. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2703. _content = $$("div", {
  2704. className: "U_MD_D_KO",
  2705. "onmousedown": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_x010404StudentDeskIconInfo[i]]),
  2709. "onclick": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_x010404StudentDeskIconInfo[i]])
  2713. }, _frag); //
  2714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2717. }
  2718. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2719. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2720. _content = $$("div", {
  2721. className: "U_MD_D_KO",
  2722. "onmousedown": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_x010204StudentDeskIconInfo[i]]),
  2726. "onclick": U.UF.C.closure(function (obj) {
  2727. //防止拖动图标即打开了桌面应用
  2728. U.MD.D.click(this, obj);
  2729. }, [_x010204StudentDeskIconInfo[i]])
  2730. }, _frag); //
  2731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2734. }
  2735. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2736. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2737. _content = $$("div", {
  2738. className: "U_MD_D_KO",
  2739. "onmousedown": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_x320101StudentDeskIconInfo[i]]),
  2743. "onclick": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_x320101StudentDeskIconInfo[i]])
  2747. }, _frag); //
  2748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2751. }
  2752. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2753. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2754. _content = $$("div", {
  2755. className: "U_MD_D_KO",
  2756. "onmousedown": U.UF.C.closure(function (obj) {
  2757. //防止拖动图标即打开了桌面应用
  2758. U.MD.D.click(this, obj);
  2759. }, [_trailStudentDeskIconInfo[i]]),
  2760. "onclick": U.UF.C.closure(function (obj) {
  2761. //防止拖动图标即打开了桌面应用
  2762. U.MD.D.click(this, obj);
  2763. }, [_trailStudentDeskIconInfo[i]])
  2764. }, _frag); //
  2765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2768. }
  2769. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2770. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2771. _content = $$("div", {
  2772. className: "U_MD_D_KO",
  2773. "onmousedown": U.UF.C.closure(function (obj) {
  2774. //防止拖动图标即打开了桌面应用
  2775. U.MD.D.click(this, obj);
  2776. }, [_trialStudentDeskIconInfo[i]]),
  2777. "onclick": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_trialStudentDeskIconInfo[i]])
  2781. }, _frag); //
  2782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2785. }
  2786. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2787. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2788. _content = $$("div", {
  2789. className: "U_MD_D_KO",
  2790. "onmousedown": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2794. "onclick": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2798. }, _frag); //
  2799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2802. }
  2803. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2804. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2805. _content = $$("div", {
  2806. className: "U_MD_D_KO",
  2807. "onmousedown": U.UF.C.closure(function (obj) {
  2808. //防止拖动图标即打开了桌面应用
  2809. U.MD.D.click(this, obj);
  2810. }, [_szsyStudentDeskIconInfo[i]]),
  2811. "onclick": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_szsyStudentDeskIconInfo[i]])
  2815. }, _frag); //
  2816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2819. }
  2820. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2821. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2822. _content = $$("div", {
  2823. className: "U_MD_D_KO",
  2824. "onmousedown": U.UF.C.closure(function (obj) {
  2825. //防止拖动图标即打开了桌面应用
  2826. U.MD.D.click(this, obj);
  2827. }, [_x010608StudentDeskIconInfo[i]]),
  2828. "onclick": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_x010608StudentDeskIconInfo[i]])
  2832. }, _frag); //
  2833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2836. }
  2837. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2838. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2839. _content = $$("div", {
  2840. className: "U_MD_D_KO",
  2841. "onmousedown": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_x010611StudentDeskIconInfo[i]]),
  2845. "onclick": U.UF.C.closure(function (obj) {
  2846. //防止拖动图标即打开了桌面应用
  2847. U.MD.D.click(this, obj);
  2848. }, [_x010611StudentDeskIconInfo[i]])
  2849. }, _frag); //
  2850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2853. }
  2854. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2855. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2856. _content = $$("div", {
  2857. className: "U_MD_D_KO",
  2858. "onmousedown": U.UF.C.closure(function (obj) {
  2859. //防止拖动图标即打开了桌面应用
  2860. U.MD.D.click(this, obj);
  2861. }, [_x010612StudentDeskIconInfo[i]]),
  2862. "onclick": U.UF.C.closure(function (obj) {
  2863. //防止拖动图标即打开了桌面应用
  2864. U.MD.D.click(this, obj);
  2865. }, [_x010612StudentDeskIconInfo[i]])
  2866. }, _frag); //
  2867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2870. }
  2871. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2872. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2873. _content = $$("div", {
  2874. className: "U_MD_D_KO",
  2875. "onmousedown": U.UF.C.closure(function (obj) {
  2876. //防止拖动图标即打开了桌面应用
  2877. U.MD.D.click(this, obj);
  2878. }, [_tianyuantudentDeskIconInfo[i]]),
  2879. "onclick": U.UF.C.closure(function (obj) {
  2880. //防止拖动图标即打开了桌面应用
  2881. U.MD.D.click(this, obj);
  2882. }, [_tianyuantudentDeskIconInfo[i]])
  2883. }, _frag); //
  2884. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2885. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2886. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2887. }
  2888. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2889. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2890. _content = $$("div", {
  2891. className: "U_MD_D_KO",
  2892. "onmousedown": U.UF.C.closure(function (obj) {
  2893. //防止拖动图标即打开了桌面应用
  2894. U.MD.D.click(this, obj);
  2895. }, [_siesStudentDeskIconInfo[i]]),
  2896. "onclick": U.UF.C.closure(function (obj) {
  2897. //防止拖动图标即打开了桌面应用
  2898. U.MD.D.click(this, obj);
  2899. }, [_siesStudentDeskIconInfo[i]])
  2900. }, _frag); //
  2901. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2902. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2903. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2904. }
  2905. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2906. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2907. _content = $$("div", {
  2908. className: "U_MD_D_KO",
  2909. "onmousedown": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_guzmsStudentDeskIconInfo[i]]),
  2913. "onclick": U.UF.C.closure(function (obj) {
  2914. //防止拖动图标即打开了桌面应用
  2915. U.MD.D.click(this, obj);
  2916. }, [_guzmsStudentDeskIconInfo[i]])
  2917. }, _frag); //
  2918. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2919. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2920. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2921. }
  2922. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2923. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2924. _content = $$("div", {
  2925. className: "U_MD_D_KO",
  2926. "onmousedown": U.UF.C.closure(function (obj) {
  2927. //防止拖动图标即打开了桌面应用
  2928. U.MD.D.click(this, obj);
  2929. }, [_hkStudentDeskIconInfo[i]]),
  2930. "onclick": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_hkStudentDeskIconInfo[i]])
  2934. }, _frag); //
  2935. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2936. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2937. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2938. }
  2939. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2940. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2941. _content = $$("div", {
  2942. className: "U_MD_D_KO",
  2943. "onmousedown": U.UF.C.closure(function (obj) {
  2944. //防止拖动图标即打开了桌面应用
  2945. U.MD.D.click(this, obj);
  2946. }, [_hkaceStudentDeskIconInfo[i]]),
  2947. "onclick": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_hkaceStudentDeskIconInfo[i]])
  2951. }, _frag); //
  2952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2955. }
  2956. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2957. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2958. _content = $$("div", {
  2959. className: "U_MD_D_KO",
  2960. "onmousedown": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2964. "onclick": U.UF.C.closure(function (obj) {
  2965. //防止拖动图标即打开了桌面应用
  2966. U.MD.D.click(this, obj);
  2967. }, [_BSDNSstudentDesktopIconInfo[i]])
  2968. }, _frag); //
  2969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2972. }
  2973. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2974. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_cocobizStudentDeskIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_cocobizStudentDeskIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2991. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2992. _content = $$("div", {
  2993. className: "U_MD_D_KO",
  2994. "onmousedown": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2998. "onclick": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_xxzjkyStudentDeskIconInfo[i]])
  3002. }, _frag); //
  3003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3006. }
  3007. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3008. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3009. _content = $$("div", {
  3010. className: "U_MD_D_KO",
  3011. "onmousedown": U.UF.C.closure(function (obj) {
  3012. //防止拖动图标即打开了桌面应用
  3013. U.MD.D.click(this, obj);
  3014. }, [_studentDesktopIconInfo[i]]),
  3015. "onclick": U.UF.C.closure(function (obj) {
  3016. //防止拖动图标即打开了桌面应用
  3017. U.MD.D.click(this, obj);
  3018. }, [_studentDesktopIconInfo[i]])
  3019. }, _frag); //
  3020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3023. }
  3024. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3025. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3026. _content = $$("div", {
  3027. className: "U_MD_D_KO",
  3028. "onmousedown": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_tcStudentDeskIconInfo[i]]),
  3032. "onclick": U.UF.C.closure(function (obj) {
  3033. //防止拖动图标即打开了桌面应用
  3034. U.MD.D.click(this, obj);
  3035. }, [_tcStudentDeskIconInfo[i]])
  3036. }, _frag); //
  3037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3040. }
  3041. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3042. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3043. _content = $$("div", {
  3044. className: "U_MD_D_KO",
  3045. "onmousedown": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_szscStudentDeskIconInfo[i]]),
  3049. "onclick": U.UF.C.closure(function (obj) {
  3050. //防止拖动图标即打开了桌面应用
  3051. U.MD.D.click(this, obj);
  3052. }, [_szscStudentDeskIconInfo[i]])
  3053. }, _frag); //
  3054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3057. }
  3058. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3059. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3060. _content = $$("div", {
  3061. className: "U_MD_D_KO",
  3062. "onmousedown": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_studentDesktopIconInfo3[i]]),
  3066. "onclick": U.UF.C.closure(function (obj) {
  3067. //防止拖动图标即打开了桌面应用
  3068. U.MD.D.click(this, obj);
  3069. }, [_studentDesktopIconInfo3[i]])
  3070. }, _frag); //
  3071. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3072. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3073. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3074. }
  3075. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3076. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3077. _content = $$("div", {
  3078. className: "U_MD_D_KO",
  3079. "onmousedown": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_studentDesktopIconInfo2[i]]),
  3083. "onclick": U.UF.C.closure(function (obj) {
  3084. //防止拖动图标即打开了桌面应用
  3085. U.MD.D.click(this, obj);
  3086. }, [_studentDesktopIconInfo2[i]])
  3087. }, _frag); //
  3088. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3089. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3090. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3091. }
  3092. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3093. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3094. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3095. continue
  3096. }
  3097. _content = $$("div", {
  3098. className: "U_MD_D_KO",
  3099. "onmousedown": U.UF.C.closure(function (obj) {
  3100. //防止拖动图标即打开了桌面应用
  3101. U.MD.D.click(this, obj);
  3102. }, [_wanketeacherDesktopIconInfo[i]]),
  3103. "onclick": U.UF.C.closure(function (obj) {
  3104. //防止拖动图标即打开了桌面应用
  3105. U.MD.D.click(this, obj);
  3106. }, [_wanketeacherDesktopIconInfo[i]])
  3107. }, _frag); //
  3108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3111. }
  3112. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3113. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3114. _content = $$("div", {
  3115. className: "U_MD_D_KO",
  3116. "onmousedown": U.UF.C.closure(function (obj) {
  3117. //防止拖动图标即打开了桌面应用
  3118. U.MD.D.click(this, obj);
  3119. }, [_wankeAdminDesktopIconInfo[i]]),
  3120. "onclick": U.UF.C.closure(function (obj) {
  3121. //防止拖动图标即打开了桌面应用
  3122. U.MD.D.click(this, obj);
  3123. }, [_wankeAdminDesktopIconInfo[i]])
  3124. }, _frag); //
  3125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3128. }
  3129. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3130. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3131. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3132. continue
  3133. }
  3134. _content = $$("div", {
  3135. className: "U_MD_D_KO",
  3136. "onmousedown": U.UF.C.closure(function (obj) {
  3137. //防止拖动图标即打开了桌面应用
  3138. U.MD.D.click(this, obj);
  3139. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3140. "onclick": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_scnuaiTeacherDeskIconInfo[i]])
  3144. }, _frag); //
  3145. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3146. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3147. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3148. }
  3149. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3150. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3151. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3152. continue
  3153. }
  3154. _content = $$("div", {
  3155. className: "U_MD_D_KO",
  3156. "onmousedown": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3160. "onclick": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_BSDNSteacherDesktopIconInfo[i]])
  3164. }, _frag); //
  3165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3168. }
  3169. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3170. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3171. _content = $$("div", {
  3172. className: "U_MD_D_KO",
  3173. "onmousedown": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_scnuaiAdminDeskIconInfo[i]]),
  3177. "onclick": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_scnuaiAdminDeskIconInfo[i]])
  3181. }, _frag); //
  3182. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3185. }
  3186. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3187. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3188. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3189. continue
  3190. }
  3191. _content = $$("div", {
  3192. className: "U_MD_D_KO",
  3193. "onmousedown": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_jccssylTeacherDeskIconInfo[i]]),
  3197. "onclick": U.UF.C.closure(function (obj) {
  3198. //防止拖动图标即打开了桌面应用
  3199. U.MD.D.click(this, obj);
  3200. }, [_jccssylTeacherDeskIconInfo[i]])
  3201. }, _frag); //
  3202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3205. }
  3206. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3207. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3208. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3209. continue
  3210. }
  3211. _content = $$("div", {
  3212. className: "U_MD_D_KO",
  3213. "onmousedown": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_caleTeacherDeskIconInfo[i]]),
  3217. "onclick": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_caleTeacherDeskIconInfo[i]])
  3221. }, _frag); //
  3222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3225. }
  3226. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3227. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_tpcOrganizerDeskIconInfo[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_tpcOrganizerDeskIconInfo[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3242. }
  3243. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3244. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3245. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_tpcTeacherDeskIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_tpcTeacherDeskIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3262. }
  3263. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3264. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3265. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3266. continue
  3267. }
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_teacherDesktopIconInfo2[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_teacherDesktopIconInfo2[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3282. }
  3283. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3284. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3285. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3286. continue
  3287. }
  3288. _content = $$("div", {
  3289. className: "U_MD_D_KO",
  3290. "onmousedown": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_thuioeTeacherDeskIconInfo[i]]),
  3294. "onclick": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_thuioeTeacherDeskIconInfo[i]])
  3298. }, _frag); //
  3299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3302. }
  3303. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3304. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3305. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3306. continue
  3307. }
  3308. _content = $$("div", {
  3309. className: "U_MD_D_KO",
  3310. "onmousedown": U.UF.C.closure(function (obj) {
  3311. //防止拖动图标即打开了桌面应用
  3312. U.MD.D.click(this, obj);
  3313. }, [_lotechTeacherDeskIconInfo[i]]),
  3314. "onclick": U.UF.C.closure(function (obj) {
  3315. //防止拖动图标即打开了桌面应用
  3316. U.MD.D.click(this, obj);
  3317. }, [_lotechTeacherDeskIconInfo[i]])
  3318. }, _frag); //
  3319. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3320. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3321. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3322. }//
  3323. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3324. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3325. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3326. continue
  3327. }
  3328. _content = $$("div", {
  3329. className: "U_MD_D_KO",
  3330. "onmousedown": U.UF.C.closure(function (obj) {
  3331. //防止拖动图标即打开了桌面应用
  3332. U.MD.D.click(this, obj);
  3333. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3334. "onclick": U.UF.C.closure(function (obj) {
  3335. //防止拖动图标即打开了桌面应用
  3336. U.MD.D.click(this, obj);
  3337. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3338. }, _frag); //
  3339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3342. }
  3343. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3344. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3345. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3346. continue
  3347. }
  3348. _content = $$("div", {
  3349. className: "U_MD_D_KO",
  3350. "onmousedown": U.UF.C.closure(function (obj) {
  3351. //防止拖动图标即打开了桌面应用
  3352. U.MD.D.click(this, obj);
  3353. }, [_siesTeacherDeskIconInfo[i]]),
  3354. "onclick": U.UF.C.closure(function (obj) {
  3355. //防止拖动图标即打开了桌面应用
  3356. U.MD.D.click(this, obj);
  3357. }, [_siesTeacherDeskIconInfo[i]])
  3358. }, _frag); //
  3359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3362. }
  3363. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3364. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3365. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3366. continue
  3367. }
  3368. _content = $$("div", {
  3369. className: "U_MD_D_KO",
  3370. "onmousedown": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_guzmsTeacherDeskIconInfo[i]]),
  3374. "onclick": U.UF.C.closure(function (obj) {
  3375. //防止拖动图标即打开了桌面应用
  3376. U.MD.D.click(this, obj);
  3377. }, [_guzmsTeacherDeskIconInfo[i]])
  3378. }, _frag); //
  3379. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3380. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3381. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3382. }
  3383. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3384. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3385. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3386. continue
  3387. }
  3388. _content = $$("div", {
  3389. className: "U_MD_D_KO",
  3390. "onmousedown": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_longhuaTeacherDeskIconInfo[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_longhuaTeacherDeskIconInfo[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3402. }
  3403. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3404. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3405. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3406. continue
  3407. }
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_ytyTeacherDeskIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_ytyTeacherDeskIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3424. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3425. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3426. continue
  3427. }
  3428. _content = $$("div", {
  3429. className: "U_MD_D_KO",
  3430. "onmousedown": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3434. "onclick": U.UF.C.closure(function (obj) {
  3435. //防止拖动图标即打开了桌面应用
  3436. U.MD.D.click(this, obj);
  3437. }, [_yunhaiTeacherDeskIconInfo[i]])
  3438. }, _frag); //
  3439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3442. } //_hkStudentDeskIconInfo
  3443. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3444. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3445. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3446. continue
  3447. }
  3448. _content = $$("div", {
  3449. className: "U_MD_D_KO",
  3450. "onmousedown": U.UF.C.closure(function (obj) {
  3451. //防止拖动图标即打开了桌面应用
  3452. U.MD.D.click(this, obj);
  3453. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3454. "onclick": U.UF.C.closure(function (obj) {
  3455. //防止拖动图标即打开了桌面应用
  3456. U.MD.D.click(this, obj);
  3457. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3458. }, _frag); //
  3459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3462. }
  3463. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3464. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3465. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3466. continue
  3467. }
  3468. _content = $$("div", {
  3469. className: "U_MD_D_KO",
  3470. "onmousedown": U.UF.C.closure(function (obj) {
  3471. //防止拖动图标即打开了桌面应用
  3472. U.MD.D.click(this, obj);
  3473. }, [_ricohTeacherDeskIconInfo[i]]),
  3474. "onclick": U.UF.C.closure(function (obj) {
  3475. //防止拖动图标即打开了桌面应用
  3476. U.MD.D.click(this, obj);
  3477. }, [_ricohTeacherDeskIconInfo[i]])
  3478. }, _frag); //
  3479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3482. }
  3483. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3484. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3485. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3486. continue
  3487. }
  3488. _content = $$("div", {
  3489. className: "U_MD_D_KO",
  3490. "onmousedown": U.UF.C.closure(function (obj) {
  3491. //防止拖动图标即打开了桌面应用
  3492. U.MD.D.click(this, obj);
  3493. }, [_hkTeacherDeskIconInfo[i]]),
  3494. "onclick": U.UF.C.closure(function (obj) {
  3495. //防止拖动图标即打开了桌面应用
  3496. U.MD.D.click(this, obj);
  3497. }, [_hkTeacherDeskIconInfo[i]])
  3498. }, _frag); //
  3499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3502. }
  3503. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3504. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3505. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3506. continue
  3507. }
  3508. _content = $$("div", {
  3509. className: "U_MD_D_KO",
  3510. "onmousedown": U.UF.C.closure(function (obj) {
  3511. //防止拖动图标即打开了桌面应用
  3512. U.MD.D.click(this, obj);
  3513. }, [_hkaceTeacherDeskIconInfo[i]]),
  3514. "onclick": U.UF.C.closure(function (obj) {
  3515. //防止拖动图标即打开了桌面应用
  3516. U.MD.D.click(this, obj);
  3517. }, [_hkaceTeacherDeskIconInfo[i]])
  3518. }, _frag); //
  3519. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3520. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3521. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3522. }
  3523. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3524. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3525. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3526. continue
  3527. }
  3528. _content = $$("div", {
  3529. className: "U_MD_D_KO",
  3530. "onmousedown": U.UF.C.closure(function (obj) {
  3531. //防止拖动图标即打开了桌面应用
  3532. U.MD.D.click(this, obj);
  3533. }, [_cocobizTeacherDeskIconInfo[i]]),
  3534. "onclick": U.UF.C.closure(function (obj) {
  3535. //防止拖动图标即打开了桌面应用
  3536. U.MD.D.click(this, obj);
  3537. }, [_cocobizTeacherDeskIconInfo[i]])
  3538. }, _frag); //
  3539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3542. }
  3543. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3544. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3545. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3546. continue
  3547. }
  3548. _content = $$("div", {
  3549. className: "U_MD_D_KO",
  3550. "onmousedown": U.UF.C.closure(function (obj) {
  3551. //防止拖动图标即打开了桌面应用
  3552. U.MD.D.click(this, obj);
  3553. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3554. "onclick": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3558. }, _frag); //
  3559. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3560. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3561. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3562. }
  3563. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3564. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3565. _content = $$("div", {
  3566. className: "U_MD_D_KO",
  3567. "onmousedown": U.UF.C.closure(function (obj) {
  3568. //防止拖动图标即打开了桌面应用
  3569. U.MD.D.click(this, obj);
  3570. }, [_gdjgAdminDeskIconInfo[i]]),
  3571. "onclick": U.UF.C.closure(function (obj) {
  3572. //防止拖动图标即打开了桌面应用
  3573. U.MD.D.click(this, obj);
  3574. }, [_gdjgAdminDeskIconInfo[i]])
  3575. }, _frag); //
  3576. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3577. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3578. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3579. }
  3580. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3581. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3582. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3583. continue
  3584. }
  3585. _content = $$("div", {
  3586. className: "U_MD_D_KO",
  3587. "onmousedown": U.UF.C.closure(function (obj) {
  3588. //防止拖动图标即打开了桌面应用
  3589. U.MD.D.click(this, obj);
  3590. }, [_gdjgTeacherDeskIconInfo[i]]),
  3591. "onclick": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_gdjgTeacherDeskIconInfo[i]])
  3595. }, _frag); //
  3596. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3597. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3598. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3599. }
  3600. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3601. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3602. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3603. continue
  3604. }
  3605. _content = $$("div", {
  3606. className: "U_MD_D_KO",
  3607. "onmousedown": U.UF.C.closure(function (obj) {
  3608. //防止拖动图标即打开了桌面应用
  3609. U.MD.D.click(this, obj);
  3610. }, [_szherTeacherDeskIconInfo[i]]),
  3611. "onclick": U.UF.C.closure(function (obj) {
  3612. //防止拖动图标即打开了桌面应用
  3613. U.MD.D.click(this, obj);
  3614. }, [_szherTeacherDeskIconInfo[i]])
  3615. }, _frag); //
  3616. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3617. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3618. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3619. }
  3620. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3621. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3622. _content = $$("div", {
  3623. className: "U_MD_D_KO",
  3624. "onmousedown": U.UF.C.closure(function (obj) {
  3625. //防止拖动图标即打开了桌面应用
  3626. U.MD.D.click(this, obj);
  3627. }, [_heyuannAdminDeskIconInfo[i]]),
  3628. "onclick": U.UF.C.closure(function (obj) {
  3629. //防止拖动图标即打开了桌面应用
  3630. U.MD.D.click(this, obj);
  3631. }, [_heyuannAdminDeskIconInfo[i]])
  3632. }, _frag); //
  3633. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3636. }
  3637. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3638. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3639. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3640. continue
  3641. }
  3642. _content = $$("div", {
  3643. className: "U_MD_D_KO",
  3644. "onmousedown": U.UF.C.closure(function (obj) {
  3645. //防止拖动图标即打开了桌面应用
  3646. U.MD.D.click(this, obj);
  3647. }, [_heyuanTeacherDeskIconInfo[i]]),
  3648. "onclick": U.UF.C.closure(function (obj) {
  3649. //防止拖动图标即打开了桌面应用
  3650. U.MD.D.click(this, obj);
  3651. }, [_heyuanTeacherDeskIconInfo[i]])
  3652. }, _frag); //
  3653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3656. } //
  3657. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3658. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3659. _content = $$("div", {
  3660. className: "U_MD_D_KO",
  3661. "onmousedown": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_dseiAdminDeskIconInfo[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_dseiAdminDeskIconInfo[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3673. }
  3674. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3675. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3676. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3677. continue
  3678. }
  3679. _content = $$("div", {
  3680. className: "U_MD_D_KO",
  3681. "onmousedown": U.UF.C.closure(function (obj) {
  3682. //防止拖动图标即打开了桌面应用
  3683. U.MD.D.click(this, obj);
  3684. }, [_dseiTeacherDeskIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_dseiTeacherDeskIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3693. } //
  3694. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3695. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3696. _content = $$("div", {
  3697. className: "U_MD_D_KO",
  3698. "onmousedown": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_chjyjAdminDeskIconInfo[i]]),
  3702. "onclick": U.UF.C.closure(function (obj) {
  3703. //防止拖动图标即打开了桌面应用
  3704. U.MD.D.click(this, obj);
  3705. }, [_chjyjAdminDeskIconInfo[i]])
  3706. }, _frag); //
  3707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3710. }//
  3711. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3712. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3713. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3714. continue
  3715. }
  3716. _content = $$("div", {
  3717. className: "U_MD_D_KO",
  3718. "onmousedown": U.UF.C.closure(function (obj) {
  3719. //防止拖动图标即打开了桌面应用
  3720. U.MD.D.click(this, obj);
  3721. }, [_chjyjTeacherDeskIconInfo[i]]),
  3722. "onclick": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_chjyjTeacherDeskIconInfo[i]])
  3726. }, _frag); //
  3727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3730. }
  3731. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3732. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3733. _content = $$("div", {
  3734. className: "U_MD_D_KO",
  3735. "onmousedown": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_szjkyAdminDeskIconInfo[i]]),
  3739. "onclick": U.UF.C.closure(function (obj) {
  3740. //防止拖动图标即打开了桌面应用
  3741. U.MD.D.click(this, obj);
  3742. }, [_szjkyAdminDeskIconInfo[i]])
  3743. }, _frag); //
  3744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3747. }//
  3748. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3749. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3750. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3751. continue
  3752. }
  3753. _content = $$("div", {
  3754. className: "U_MD_D_KO",
  3755. "onmousedown": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_szjkyTeacherDeskIconInfo[i]]),
  3759. "onclick": U.UF.C.closure(function (obj) {
  3760. //防止拖动图标即打开了桌面应用
  3761. U.MD.D.click(this, obj);
  3762. }, [_szjkyTeacherDeskIconInfo[i]])
  3763. }, _frag); //
  3764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3767. }
  3768. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3769. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3770. _content = $$("div", {
  3771. className: "U_MD_D_KO",
  3772. "onmousedown": U.UF.C.closure(function (obj) {
  3773. //防止拖动图标即打开了桌面应用
  3774. U.MD.D.click(this, obj);
  3775. }, [_x020201AdminDeskIconInfo[i]]),
  3776. "onclick": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_x020201AdminDeskIconInfo[i]])
  3780. }, _frag); //
  3781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3784. }//
  3785. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3786. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3787. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3788. continue
  3789. }
  3790. _content = $$("div", {
  3791. className: "U_MD_D_KO",
  3792. "onmousedown": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_x020201TeacherDeskIconInfo[i]]),
  3796. "onclick": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_x020201TeacherDeskIconInfo[i]])
  3800. }, _frag); //
  3801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3804. }
  3805. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3806. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3807. _content = $$("div", {
  3808. className: "U_MD_D_KO",
  3809. "onmousedown": U.UF.C.closure(function (obj) {
  3810. //防止拖动图标即打开了桌面应用
  3811. U.MD.D.click(this, obj);
  3812. }, [_SCNUETAdminDeskIconInfo[i]]),
  3813. "onclick": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_SCNUETAdminDeskIconInfo[i]])
  3817. }, _frag); //
  3818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3821. }//
  3822. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3823. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3824. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3825. continue
  3826. }
  3827. _content = $$("div", {
  3828. className: "U_MD_D_KO",
  3829. "onmousedown": U.UF.C.closure(function (obj) {
  3830. //防止拖动图标即打开了桌面应用
  3831. U.MD.D.click(this, obj);
  3832. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3833. "onclick": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_SCNUETTeacherDeskIconInfo[i]])
  3837. }, _frag); //
  3838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3841. }
  3842. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3843. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3844. _content = $$("div", {
  3845. className: "U_MD_D_KO",
  3846. "onmousedown": U.UF.C.closure(function (obj) {
  3847. //防止拖动图标即打开了桌面应用
  3848. U.MD.D.click(this, obj);
  3849. }, [_futianAdminDeskIconInfo[i]]),
  3850. "onclick": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_futianAdminDeskIconInfo[i]])
  3854. }, _frag); //
  3855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3858. }
  3859. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3860. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3861. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3862. continue
  3863. }
  3864. _content = $$("div", {
  3865. className: "U_MD_D_KO",
  3866. "onmousedown": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_futianTeacherDeskIconInfo[i]]),
  3870. "onclick": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_futianTeacherDeskIconInfo[i]])
  3874. }, _frag); //
  3875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3878. }
  3879. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3880. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3881. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3882. continue
  3883. }
  3884. _content = $$("div", {
  3885. className: "U_MD_D_KO",
  3886. "onmousedown": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_MingdeTeacherDeskIcon[i]]),
  3890. "onclick": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_MingdeTeacherDeskIcon[i]])
  3894. }, _frag); //
  3895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3898. }
  3899. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3900. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3901. _content = $$("div", {
  3902. className: "U_MD_D_KO",
  3903. "onmousedown": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_lhsAdminDesktopIconInfo[i]]),
  3907. "onclick": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_lhsAdminDesktopIconInfo[i]])
  3911. }, _frag); //
  3912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3915. }
  3916. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3917. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3918. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3919. continue
  3920. }
  3921. _content = $$("div", {
  3922. className: "U_MD_D_KO",
  3923. "onmousedown": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_lhsteacherDesktopIconInfo[i]]),
  3927. "onclick": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_lhsteacherDesktopIconInfo[i]])
  3931. }, _frag); //
  3932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3935. }
  3936. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3937. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3938. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3939. continue
  3940. }
  3941. _content = $$("div", {
  3942. className: "U_MD_D_KO",
  3943. "onmousedown": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3947. "onclick": U.UF.C.closure(function (obj) {
  3948. //防止拖动图标即打开了桌面应用
  3949. U.MD.D.click(this, obj);
  3950. }, [_zhoujiateacherDesktopIconInfo[i]])
  3951. }, _frag); //
  3952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3955. }
  3956. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3957. for (i = 0; i < _hanDeskIcon.length; i++) {
  3958. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3959. continue
  3960. }
  3961. _content = $$("div", {
  3962. className: "U_MD_D_KO",
  3963. "onmousedown": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_hanDeskIcon[i]]),
  3967. "onclick": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_hanDeskIcon[i]])
  3971. }, _frag); //
  3972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3975. }
  3976. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3977. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3978. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3979. continue
  3980. }
  3981. _content = $$("div", {
  3982. className: "U_MD_D_KO",
  3983. "onmousedown": U.UF.C.closure(function (obj) {
  3984. //防止拖动图标即打开了桌面应用
  3985. U.MD.D.click(this, obj);
  3986. }, [_orgStemDeskIcon[i]]),
  3987. "onclick": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_orgStemDeskIcon[i]])
  3991. }, _frag); //
  3992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3995. }
  3996. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3997. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3998. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3999. continue
  4000. }
  4001. _content = $$("div", {
  4002. className: "U_MD_D_KO",
  4003. "onmousedown": U.UF.C.closure(function (obj) {
  4004. //防止拖动图标即打开了桌面应用
  4005. U.MD.D.click(this, obj);
  4006. }, [_szulsDeskIcon[i]]),
  4007. "onclick": U.UF.C.closure(function (obj) {
  4008. //防止拖动图标即打开了桌面应用
  4009. U.MD.D.click(this, obj);
  4010. }, [_szulsDeskIcon[i]])
  4011. }, _frag); //
  4012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4015. }
  4016. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4017. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4018. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4019. continue
  4020. }
  4021. _content = $$("div", {
  4022. className: "U_MD_D_KO",
  4023. "onmousedown": U.UF.C.closure(function (obj) {
  4024. //防止拖动图标即打开了桌面应用
  4025. U.MD.D.click(this, obj);
  4026. }, [_orgDesktopIconInfo[i]]),
  4027. "onclick": U.UF.C.closure(function (obj) {
  4028. //防止拖动图标即打开了桌面应用
  4029. U.MD.D.click(this, obj);
  4030. }, [_orgDesktopIconInfo[i]])
  4031. }, _frag); //
  4032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4035. }
  4036. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4037. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4038. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4039. continue
  4040. }
  4041. _content = $$("div", {
  4042. className: "U_MD_D_KO",
  4043. "onmousedown": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_schoolDesktopIconInfo[i]]),
  4047. "onclick": U.UF.C.closure(function (obj) {
  4048. //防止拖动图标即打开了桌面应用
  4049. U.MD.D.click(this, obj);
  4050. }, [_schoolDesktopIconInfo[i]])
  4051. }, _frag); //
  4052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4055. }
  4056. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4057. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4058. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4059. continue
  4060. }
  4061. _content = $$("div", {
  4062. className: "U_MD_D_KO",
  4063. "onmousedown": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_GMteacherDesktopIconInfo[i]]),
  4067. "onclick": U.UF.C.closure(function (obj) {
  4068. //防止拖动图标即打开了桌面应用
  4069. U.MD.D.click(this, obj);
  4070. }, [_GMteacherDesktopIconInfo[i]])
  4071. }, _frag); //
  4072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4075. }
  4076. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4077. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4078. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4079. continue
  4080. }
  4081. _content = $$("div", {
  4082. className: "U_MD_D_KO",
  4083. "onmousedown": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_SONGteacherDesktopIconInfo[i]]),
  4087. "onclick": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_SONGteacherDesktopIconInfo[i]])
  4091. }, _frag); //
  4092. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4095. }
  4096. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4097. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4098. _content = $$("div", {
  4099. className: "U_MD_D_KO",
  4100. "onmousedown": U.UF.C.closure(function (obj) {
  4101. //防止拖动图标即打开了桌面应用
  4102. U.MD.D.click(this, obj);
  4103. }, [_GMstudentDesktopIconInfo[i]]),
  4104. "onclick": U.UF.C.closure(function (obj) {
  4105. //防止拖动图标即打开了桌面应用
  4106. U.MD.D.click(this, obj);
  4107. }, [_GMstudentDesktopIconInfo[i]])
  4108. }, _frag); //
  4109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4112. }
  4113. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4114. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4115. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4116. continue
  4117. }
  4118. _content = $$("div", {
  4119. className: "U_MD_D_KO",
  4120. "onmousedown": U.UF.C.closure(function (obj) {
  4121. //防止拖动图标即打开了桌面应用
  4122. U.MD.D.click(this, obj);
  4123. }, [_tcTeacherDeskIconInfo[i]]),
  4124. "onclick": U.UF.C.closure(function (obj) {
  4125. //防止拖动图标即打开了桌面应用
  4126. U.MD.D.click(this, obj);
  4127. }, [_tcTeacherDeskIconInfo[i]])
  4128. }, _frag); //
  4129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4132. }
  4133. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4134. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4135. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4136. continue
  4137. }
  4138. _content = $$("div", {
  4139. className: "U_MD_D_KO",
  4140. "onmousedown": U.UF.C.closure(function (obj) {
  4141. //防止拖动图标即打开了桌面应用
  4142. U.MD.D.click(this, obj);
  4143. }, [_tcOrganizerDeskIconInfo[i]]),
  4144. "onclick": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_tcOrganizerDeskIconInfo[i]])
  4148. }, _frag); //
  4149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4152. }
  4153. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4154. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4155. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4156. continue
  4157. }
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_szscTeacherDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_szscTeacherDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4172. }
  4173. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4174. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4175. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_szscOrganizerDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_szscOrganizerDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4194. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4195. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4196. continue
  4197. }
  4198. _content = $$("div", {
  4199. className: "U_MD_D_KO",
  4200. "onmousedown": U.UF.C.closure(function (obj) {
  4201. //防止拖动图标即打开了桌面应用
  4202. U.MD.D.click(this, obj);
  4203. }, [_nsfxTeacherDeskIconInfo[i]]),
  4204. "onclick": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_nsfxTeacherDeskIconInfo[i]])
  4208. }, _frag); //
  4209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4212. }
  4213. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4214. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4215. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4216. continue
  4217. }
  4218. _content = $$("div", {
  4219. className: "U_MD_D_KO",
  4220. "onmousedown": U.UF.C.closure(function (obj) {
  4221. //防止拖动图标即打开了桌面应用
  4222. U.MD.D.click(this, obj);
  4223. }, [_stiaTeacherDeskIconInfo[i]]),
  4224. "onclick": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_stiaTeacherDeskIconInfo[i]])
  4228. }, _frag); //
  4229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4232. }
  4233. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4234. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4235. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4236. continue
  4237. }
  4238. _content = $$("div", {
  4239. className: "U_MD_D_KO",
  4240. "onmousedown": U.UF.C.closure(function (obj) {
  4241. //防止拖动图标即打开了桌面应用
  4242. U.MD.D.click(this, obj);
  4243. }, [_szdjgTeacherDeskIconInfo[i]]),
  4244. "onclick": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_szdjgTeacherDeskIconInfo[i]])
  4248. }, _frag); //
  4249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4252. }
  4253. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4254. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4255. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4256. continue
  4257. }
  4258. _content = $$("div", {
  4259. className: "U_MD_D_KO",
  4260. "onmousedown": U.UF.C.closure(function (obj) {
  4261. //防止拖动图标即打开了桌面应用
  4262. U.MD.D.click(this, obj);
  4263. }, [_x010607TeacherDeskIconInfo[i]]),
  4264. "onclick": U.UF.C.closure(function (obj) {
  4265. //防止拖动图标即打开了桌面应用
  4266. U.MD.D.click(this, obj);
  4267. }, [_x010607TeacherDeskIconInfo[i]])
  4268. }, _frag); //
  4269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4272. }
  4273. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4274. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4275. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4276. continue
  4277. }
  4278. _content = $$("div", {
  4279. className: "U_MD_D_KO",
  4280. "onmousedown": U.UF.C.closure(function (obj) {
  4281. //防止拖动图标即打开了桌面应用
  4282. U.MD.D.click(this, obj);
  4283. }, [_xhlyTeacherDeskIconInfo[i]]),
  4284. "onclick": U.UF.C.closure(function (obj) {
  4285. //防止拖动图标即打开了桌面应用
  4286. U.MD.D.click(this, obj);
  4287. }, [_xhlyTeacherDeskIconInfo[i]])
  4288. }, _frag); //
  4289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4292. }
  4293. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4294. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4295. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4296. continue
  4297. }
  4298. _content = $$("div", {
  4299. className: "U_MD_D_KO",
  4300. "onmousedown": U.UF.C.closure(function (obj) {
  4301. //防止拖动图标即打开了桌面应用
  4302. U.MD.D.click(this, obj);
  4303. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4304. "onclick": U.UF.C.closure(function (obj) {
  4305. //防止拖动图标即打开了桌面应用
  4306. U.MD.D.click(this, obj);
  4307. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4308. }, _frag); //
  4309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4312. }
  4313. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4314. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4315. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4316. continue
  4317. }
  4318. _content = $$("div", {
  4319. className: "U_MD_D_KO",
  4320. "onmousedown": U.UF.C.closure(function (obj) {
  4321. //防止拖动图标即打开了桌面应用
  4322. U.MD.D.click(this, obj);
  4323. }, [_x010503TeacherDeskIconInfo[i]]),
  4324. "onclick": U.UF.C.closure(function (obj) {
  4325. //防止拖动图标即打开了桌面应用
  4326. U.MD.D.click(this, obj);
  4327. }, [_x010503TeacherDeskIconInfo[i]])
  4328. }, _frag); //
  4329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4332. }
  4333. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4334. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4335. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4336. continue
  4337. }
  4338. _content = $$("div", {
  4339. className: "U_MD_D_KO",
  4340. "onmousedown": U.UF.C.closure(function (obj) {
  4341. //防止拖动图标即打开了桌面应用
  4342. U.MD.D.click(this, obj);
  4343. }, [_x010504TeacherDeskIconInfo[i]]),
  4344. "onclick": U.UF.C.closure(function (obj) {
  4345. //防止拖动图标即打开了桌面应用
  4346. U.MD.D.click(this, obj);
  4347. }, [_x010504TeacherDeskIconInfo[i]])
  4348. }, _frag); //
  4349. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4350. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4351. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4352. }
  4353. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4354. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4355. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4356. continue
  4357. }
  4358. _content = $$("div", {
  4359. className: "U_MD_D_KO",
  4360. "onmousedown": U.UF.C.closure(function (obj) {
  4361. //防止拖动图标即打开了桌面应用
  4362. U.MD.D.click(this, obj);
  4363. }, [_x010505TeacherDeskIconInfo[i]]),
  4364. "onclick": U.UF.C.closure(function (obj) {
  4365. //防止拖动图标即打开了桌面应用
  4366. U.MD.D.click(this, obj);
  4367. }, [_x010505TeacherDeskIconInfo[i]])
  4368. }, _frag); //
  4369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4372. }
  4373. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4374. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4375. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4376. continue
  4377. }
  4378. _content = $$("div", {
  4379. className: "U_MD_D_KO",
  4380. "onmousedown": U.UF.C.closure(function (obj) {
  4381. //防止拖动图标即打开了桌面应用
  4382. U.MD.D.click(this, obj);
  4383. }, [_x010404TeacherDeskIconInfo[i]]),
  4384. "onclick": U.UF.C.closure(function (obj) {
  4385. //防止拖动图标即打开了桌面应用
  4386. U.MD.D.click(this, obj);
  4387. }, [_x010404TeacherDeskIconInfo[i]])
  4388. }, _frag); //
  4389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4392. }
  4393. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4394. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4395. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4396. continue
  4397. }
  4398. _content = $$("div", {
  4399. className: "U_MD_D_KO",
  4400. "onmousedown": U.UF.C.closure(function (obj) {
  4401. //防止拖动图标即打开了桌面应用
  4402. U.MD.D.click(this, obj);
  4403. }, [_x010204TeacherDeskIconInfo[i]]),
  4404. "onclick": U.UF.C.closure(function (obj) {
  4405. //防止拖动图标即打开了桌面应用
  4406. U.MD.D.click(this, obj);
  4407. }, [_x010204TeacherDeskIconInfo[i]])
  4408. }, _frag); //
  4409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4412. }
  4413. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4414. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4415. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4416. continue
  4417. }
  4418. _content = $$("div", {
  4419. className: "U_MD_D_KO",
  4420. "onmousedown": U.UF.C.closure(function (obj) {
  4421. //防止拖动图标即打开了桌面应用
  4422. U.MD.D.click(this, obj);
  4423. }, [_x320101TeacherDeskIconInfo[i]]),
  4424. "onclick": U.UF.C.closure(function (obj) {
  4425. //防止拖动图标即打开了桌面应用
  4426. U.MD.D.click(this, obj);
  4427. }, [_x320101TeacherDeskIconInfo[i]])
  4428. }, _frag); //
  4429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4432. }
  4433. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4434. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4435. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4436. continue
  4437. }
  4438. _content = $$("div", {
  4439. className: "U_MD_D_KO",
  4440. "onmousedown": U.UF.C.closure(function (obj) {
  4441. //防止拖动图标即打开了桌面应用
  4442. U.MD.D.click(this, obj);
  4443. }, [_trailTeacherDeskIconInfo[i]]),
  4444. "onclick": U.UF.C.closure(function (obj) {
  4445. //防止拖动图标即打开了桌面应用
  4446. U.MD.D.click(this, obj);
  4447. }, [_trailTeacherDeskIconInfo[i]])
  4448. }, _frag); //
  4449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4452. }
  4453. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4454. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4455. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4456. continue
  4457. }
  4458. _content = $$("div", {
  4459. className: "U_MD_D_KO",
  4460. "onmousedown": U.UF.C.closure(function (obj) {
  4461. //防止拖动图标即打开了桌面应用
  4462. U.MD.D.click(this, obj);
  4463. }, [_trialTeacherDeskIconInfo[i]]),
  4464. "onclick": U.UF.C.closure(function (obj) {
  4465. //防止拖动图标即打开了桌面应用
  4466. U.MD.D.click(this, obj);
  4467. }, [_trialTeacherDeskIconInfo[i]])
  4468. }, _frag); //
  4469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4472. }
  4473. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4474. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4475. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4476. continue
  4477. }
  4478. _content = $$("div", {
  4479. className: "U_MD_D_KO",
  4480. "onmousedown": U.UF.C.closure(function (obj) {
  4481. //防止拖动图标即打开了桌面应用
  4482. U.MD.D.click(this, obj);
  4483. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4484. "onclick": U.UF.C.closure(function (obj) {
  4485. //防止拖动图标即打开了桌面应用
  4486. U.MD.D.click(this, obj);
  4487. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4488. }, _frag); //
  4489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4492. }
  4493. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4494. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4495. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4496. continue
  4497. }
  4498. _content = $$("div", {
  4499. className: "U_MD_D_KO",
  4500. "onmousedown": U.UF.C.closure(function (obj) {
  4501. //防止拖动图标即打开了桌面应用
  4502. U.MD.D.click(this, obj);
  4503. }, [_szsyTeacherDeskIconInfo[i]]),
  4504. "onclick": U.UF.C.closure(function (obj) {
  4505. //防止拖动图标即打开了桌面应用
  4506. U.MD.D.click(this, obj);
  4507. }, [_szsyTeacherDeskIconInfo[i]])
  4508. }, _frag); //
  4509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4512. }
  4513. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4514. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4515. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4516. continue
  4517. }
  4518. _content = $$("div", {
  4519. className: "U_MD_D_KO",
  4520. "onmousedown": U.UF.C.closure(function (obj) {
  4521. //防止拖动图标即打开了桌面应用
  4522. U.MD.D.click(this, obj);
  4523. }, [_x010608TeacherDeskIconInfo[i]]),
  4524. "onclick": U.UF.C.closure(function (obj) {
  4525. //防止拖动图标即打开了桌面应用
  4526. U.MD.D.click(this, obj);
  4527. }, [_x010608TeacherDeskIconInfo[i]])
  4528. }, _frag); //
  4529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4532. }
  4533. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4534. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4535. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4536. continue
  4537. }
  4538. _content = $$("div", {
  4539. className: "U_MD_D_KO",
  4540. "onmousedown": U.UF.C.closure(function (obj) {
  4541. //防止拖动图标即打开了桌面应用
  4542. U.MD.D.click(this, obj);
  4543. }, [_x010611TeacherDeskIconInfo[i]]),
  4544. "onclick": U.UF.C.closure(function (obj) {
  4545. //防止拖动图标即打开了桌面应用
  4546. U.MD.D.click(this, obj);
  4547. }, [_x010611TeacherDeskIconInfo[i]])
  4548. }, _frag); //
  4549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4552. }
  4553. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4554. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4555. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4556. continue
  4557. }
  4558. _content = $$("div", {
  4559. className: "U_MD_D_KO",
  4560. "onmousedown": U.UF.C.closure(function (obj) {
  4561. //防止拖动图标即打开了桌面应用
  4562. U.MD.D.click(this, obj);
  4563. }, [_x010612TeacherDeskIconInfo[i]]),
  4564. "onclick": U.UF.C.closure(function (obj) {
  4565. //防止拖动图标即打开了桌面应用
  4566. U.MD.D.click(this, obj);
  4567. }, [_x010612TeacherDeskIconInfo[i]])
  4568. }, _frag); //
  4569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4572. }
  4573. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4574. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4575. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4576. continue
  4577. }
  4578. _content = $$("div", {
  4579. className: "U_MD_D_KO",
  4580. "onmousedown": U.UF.C.closure(function (obj) {
  4581. //防止拖动图标即打开了桌面应用
  4582. U.MD.D.click(this, obj);
  4583. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4584. "onclick": U.UF.C.closure(function (obj) {
  4585. //防止拖动图标即打开了桌面应用
  4586. U.MD.D.click(this, obj);
  4587. }, [_tianyuanTeacherDeskIconInfo[i]])
  4588. }, _frag); //
  4589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4592. }
  4593. } else {
  4594. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4595. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4596. continue
  4597. }
  4598. _content = $$("div", {
  4599. className: "U_MD_D_KO",
  4600. "onmousedown": U.UF.C.closure(function (obj) {
  4601. //防止拖动图标即打开了桌面应用
  4602. U.MD.D.click(this, obj);
  4603. }, [_teacherDesktopIconInfo[i]]),
  4604. "onclick": U.UF.C.closure(function (obj) {
  4605. //防止拖动图标即打开了桌面应用
  4606. U.MD.D.click(this, obj);
  4607. }, [_teacherDesktopIconInfo[i]])
  4608. }, _frag); //
  4609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4612. }
  4613. }
  4614. } else {
  4615. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4616. _content = $$("div", {
  4617. className: "U_MD_D_KO",
  4618. style: { 'width': '124px', 'height': '145px' },
  4619. "onmousedown": U.UF.C.closure(function (obj) {
  4620. //防止拖动图标即打开了桌面应用
  4621. U.MD.D.click(this, obj);
  4622. }, [_easyDesktopIconInfo[i]]),
  4623. "onclick": U.UF.C.closure(function (obj) {
  4624. //防止拖动图标即打开了桌面应用
  4625. U.MD.D.click(this, obj);
  4626. }, [_easyDesktopIconInfo[i]])
  4627. }, _frag); //
  4628. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4631. }
  4632. }
  4633. if (type == 1) {
  4634. //加载好后给图标定位
  4635. U.MD.D.iconPostion($(_frag).Child());
  4636. } else {
  4637. //加载好后给图标定位
  4638. U.MD.D.iconPostion2($(_frag).Child());
  4639. }
  4640. //把图标加载到页面
  4641. el.appendChild(_frag);
  4642. }
  4643. /**
  4644. * 显示任务栏
  4645. *
  4646. * @param {element} 桌面元素
  4647. */
  4648. U.MD.D.I.displayTaskbar = function (el) {
  4649. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4650. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4651. //任务栏位置变化
  4652. U.selectEl(el).css({ "bottom": "0px" });
  4653. //桌面位置变话
  4654. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4655. }
  4656. }
  4657. //#region 桌面图标拖动逻辑
  4658. /**
  4659. * 桌面排列图标
  4660. *
  4661. * @param {element} 桌面元素
  4662. * @param {object} 上下相距的距离
  4663. * @param {object} 左右相距的距离
  4664. * @return {object} 命名空间
  4665. */
  4666. U.MD.D.iconPostion = function (childs, top, left) {
  4667. var i; //用于循环处理
  4668. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4669. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4670. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4671. for (i = 0; i < childs.length; i++) {
  4672. //如果竖排top超过了范围处理
  4673. if (top + 95 > US.height - 10) {
  4674. //left超过了页面范围处理,则向上重叠打印处理
  4675. if ((left + 180) > US.width) {
  4676. top -= 110;
  4677. left -= 90;
  4678. }
  4679. //没有超过范围,那么left+90添加到下一个竖排打印
  4680. else {
  4681. left += 90;
  4682. top = 15;
  4683. };
  4684. }
  4685. //给图标的位置赋值
  4686. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4687. if (i < childs.length - 1) {
  4688. //页面图标每次向下加95
  4689. top += 95;
  4690. }
  4691. }
  4692. //返回最后调用的图标的位置
  4693. return [top, left];
  4694. }
  4695. /**
  4696. * 桌面排列图标
  4697. *
  4698. * @param {element} 桌面元素
  4699. * @param {object} 上下相距的距离
  4700. * @param {object} 左右相距的距离
  4701. * @return {object} 命名空间
  4702. */
  4703. U.MD.D.iconPostion2 = function (childs, top, left) {
  4704. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4705. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4706. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4707. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4708. for (i = 0; i < childs.length; i++) {
  4709. //如果竖排top超过了范围处理
  4710. if (left + 150 > US.width - 10) {
  4711. //left超过了页面范围处理,则向上重叠打印处理
  4712. if ((top + 180) > US.Height) {
  4713. top -= 150;
  4714. left -= 150;
  4715. }
  4716. //没有超过范围,那么left+90添加到下一个竖排打印
  4717. else {
  4718. top += 150;
  4719. left = ol;
  4720. };
  4721. }
  4722. //给图标的位置赋值
  4723. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4724. if (i < childs.length - 1) {
  4725. //页面图标每次向下加95
  4726. left += 150;
  4727. }
  4728. }
  4729. //返回最后调用的图标的位置
  4730. return [top, left];
  4731. }
  4732. /**
  4733. * 桌面点击事件逻辑
  4734. *
  4735. * @param {element} 桌面元素
  4736. * @param {object} 上下相距的距离
  4737. * @param {object} 左右相距的距离
  4738. * @return {object} 命名空间
  4739. */
  4740. U.MD.D.click = function (el, obj) {
  4741. var _buttonnumber = event.button; //点击的按钮的事件值
  4742. var _userinfo = US.userInfo;
  4743. U.UF.EV.stopBubble(); //阻止向上冒泡
  4744. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4745. if (_buttonnumber < 2) {
  4746. //如果是click事件的处理
  4747. if (event.type == "click") {
  4748. //如果元素在mousemove事件中没有移动则出发click事件
  4749. if (!U.MD.D.I.IsDrag) {
  4750. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4751. U.alert("请先登录您的账号!");
  4752. setTimeout(() => {
  4753. U.MD.U.L.login();
  4754. }, 2000);
  4755. } else {
  4756. //打开应用处理
  4757. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4758. }
  4759. }
  4760. }
  4761. //如果是mouse事件的处理
  4762. else {
  4763. if (US.Config.type == '1') {
  4764. //拖动处理,添加拖动和拖动结束事件
  4765. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4766. }
  4767. }
  4768. U.MD.D.I.IsDrag = false;
  4769. }
  4770. }
  4771. /**
  4772. * 拖动的处理
  4773. *
  4774. */
  4775. U.MD.D.iconMove = function () {
  4776. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4777. U.MD.D.I.IsDrag = true;
  4778. }
  4779. /**
  4780. * 拖动结束后,这里是定位处理,以网状的形式定位
  4781. *
  4782. * @param {element} 拖动的元素
  4783. * @return {object} 命名空间
  4784. */
  4785. U.MD.D.iconUp = function (el) {
  4786. var _top = 15,
  4787. _left = 20,
  4788. _margin,
  4789. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4790. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4791. if (_positioninfo["OT"] > 15) {
  4792. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4793. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4794. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4795. }
  4796. if (_positioninfo["OL"] > 20) {
  4797. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4798. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4799. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4800. }
  4801. //while循环判断么一个重叠的元素
  4802. do {
  4803. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4804. _top = _positioninfo[0] + 95; //得到定位后的top
  4805. _left = _positioninfo[1]; //得到定位后的left
  4806. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4807. }
  4808. /**
  4809. * 判断拖动后图标是否重叠
  4810. *
  4811. * @param {element} 拖动的元素
  4812. * @param {element} 桌面所有的元素
  4813. * @param {array} 拖动元素的位置
  4814. ----------[0] 上 top
  4815. ----------[1] 左 left
  4816. * @return {object} 命名空间
  4817. */
  4818. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4819. //循环所有的图标
  4820. for (var i = 0; i < childs.length; i++) {
  4821. //判断有没有和该图标诶子重叠的元素
  4822. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4823. return childs[i]; //如果有返回
  4824. }
  4825. }
  4826. }
  4827. //#endregion
  4828. //#endregion
  4829. //#region 桌面应用
  4830. /**
  4831. * 打开应用
  4832. *
  4833. * @param {string} 类型
  4834. -----------------Disk 网盘系统
  4835. -----------------PDisk 学习系统网盘
  4836. -----------------Poto 图片
  4837. -----------------Video 视频
  4838. -----------------Music 音乐
  4839. -----------------Word word
  4840. -----------------Excel excel
  4841. -----------------Txt 记事本
  4842. -----------------PB 学习系统
  4843. -----------------Blog 朋友圈系统
  4844. -----------------FTP ftp系统
  4845. -----------------Group 好友群
  4846. -----------------SY 首页系统
  4847. -----------------Set 个人设置
  4848. -----------------XSet 系统设置
  4849. -----------------App 我们所有的app
  4850. -----------------BC c.1473.cn 平台
  4851. -----------------CWeb d.1473.cn 变成平台
  4852. -----------------其他的外联系统 我们统一用iframe打开
  4853. * @param {array} 类型
  4854. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4855. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4856. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4857. 如果第一个参数为其他,则无第二个参数
  4858. * @returns {array}
  4859. */
  4860. window.addEventListener('message', function (e) { // 监听 message 事件
  4861. // alert(e.data.type);
  4862. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4863. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4864. //3是展示全部阶段 2学生 1老师 4专家
  4865. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4866. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4867. //3是展示全部阶段 2学生 1老师 4专家
  4868. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4869. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4870. //3是展示全部阶段 2学生 1老师 4专家
  4871. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4872. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4873. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4874. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4875. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4876. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4877. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4878. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4879. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4880. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4881. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4882. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4883. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4884. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4885. //3是展示全部阶段 2学生 1老师 4专家
  4886. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4887. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4888. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4889. U.MD.D.I.selectUser();
  4890. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4891. var _formel = document.getElementById("study");
  4892. U.UF.F.windowZooming(_formel);
  4893. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4894. var _formel = document.getElementById("studyDetail");
  4895. U.UF.F.windowZooming(_formel);
  4896. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4897. var _formel = document.getElementById("studyDetail");
  4898. U.UF.F.windowZooming(_formel);
  4899. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4900. var _formel = document.getElementById("studentStudy");
  4901. U.UF.F.windowZooming(_formel);
  4902. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4903. // var _formel = document.getElementById("study");
  4904. //如果最大化了,那么就把他缩小
  4905. // if (_formel.ismaximize) {
  4906. // return;
  4907. // }
  4908. // U.UF.F.windowZooming(_formel);
  4909. // U.UF.F.topWindow(_formel);
  4910. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4911. // var _formel = document.getElementById("studyDetail");
  4912. //如果最大化了,那么就把他缩小
  4913. // if (_formel.ismaximize) {
  4914. // return;
  4915. // }
  4916. // U.UF.F.windowZooming(_formel);
  4917. // U.UF.F.topWindow(_formel);
  4918. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4919. // var _formel = document.getElementById("studentStudy");
  4920. // if (_formel.ismaximize) {
  4921. // return;
  4922. // }
  4923. // U.UF.F.windowZooming(_formel);
  4924. // U.UF.F.topWindow(_formel);
  4925. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4926. var _formel = document.getElementById("study");
  4927. // if (_formel.ismaximize) {
  4928. // return;
  4929. // }
  4930. // U.UF.F.windowZooming(_formel);
  4931. U.UF.F.topWindow(_formel);
  4932. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4933. var _formel = document.getElementById("studentIndex");
  4934. U.UF.F.windowZooming(_formel);
  4935. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4936. var _formel = document.getElementById("studyDetailS");
  4937. U.UF.F.windowZooming(_formel);
  4938. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4939. var _formel = document.getElementById("studioIndex");
  4940. U.UF.F.windowZooming(_formel);
  4941. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4942. var _formel = document.getElementById("studyDetailStudio");
  4943. U.UF.F.windowZooming(_formel);
  4944. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4945. var _formel = document.getElementById("studyDetailStudio");
  4946. U.UF.F.windowZooming(_formel);
  4947. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4948. var _formel = document.getElementById("studyDetailNT");
  4949. U.UF.F.windowZooming(_formel);
  4950. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4951. var _formel = document.getElementById("studyDetailS");
  4952. U.UF.F.windowZooming(_formel);
  4953. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4954. var _formel = document.getElementById("studyDetailS");
  4955. U.UF.F.topWindow(_formel);
  4956. } else if (e.data.tools && e.data.tools == "1") {
  4957. // U.MD.D.I.openApplication("whiteboard")
  4958. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4959. } else if (e.data.tools && e.data.tools == "2") {
  4960. U.MD.D.I.openApplication("note")
  4961. } else if (e.data.tools && e.data.tools == "3") {
  4962. // U.MD.D.I.openApplication("mind")
  4963. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4964. } else if (e.data.tools && e.data.tools == "4") {
  4965. U.MD.D.I.openApplication("investigation")
  4966. } else if (e.data.tools && e.data.tools == "6") {
  4967. // U.MD.D.I.openApplication("doc")
  4968. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4969. } else if (e.data.tools && e.data.tools == "7") {
  4970. // U.MD.D.I.openApplication("mindNetwork")
  4971. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4972. } else if (e.data.tools && e.data.tools == "8") {
  4973. U.MD.D.I.openApplication("library")
  4974. } else if (e.data.tools && e.data.tools == "17") {
  4975. U.MD.D.I.openApplication("stuLibrary")
  4976. } else if (e.data.tools && e.data.tools == "18") {
  4977. U.MD.D.I.openApplication("train")
  4978. } else if (e.data.tools && e.data.tools == "21") {
  4979. U.MD.D.I.openApplication("program")
  4980. } else if (e.data.tools && e.data.tools == "22") {
  4981. U.MD.D.I.openApplication("AIprogram2")
  4982. } else if (e.data.tools && e.data.tools == "23") {
  4983. U.MD.D.I.openApplication("Pythonprogram")
  4984. } else if (e.data.tools && e.data.tools == "24") {
  4985. U.MD.D.I.openApplication("AIprogram")
  4986. } else if (e.data.tools && e.data.tools == "25") {
  4987. U.MD.D.I.openApplication("sys")
  4988. } else if (e.data.tools && e.data.tools == "26") {
  4989. // U.MD.D.I.openApplication("courseDesign")
  4990. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4991. } else if (e.data.tools && e.data.tools == "31") {
  4992. U.MD.D.I.openApplication("netWorkPanel")
  4993. } else if (e.data.tools && e.data.tools == "32") {
  4994. U.MD.D.I.openApplication("codeEdit")
  4995. } else if (e.data.tools && e.data.tools == "57") {
  4996. U.MD.D.I.openApplication("CocoPi")
  4997. } else if (e.data.tools && e.data.tools == "63") {
  4998. U.MD.D.I.openApplication("Wood")
  4999. } else if (e.data.tools && e.data.tools == "58") {
  5000. U.MD.D.I.openApplication("car")
  5001. } else if (e.data.tools && e.data.tools == "59") {
  5002. U.MD.D.I.openApplication("lineSearch")
  5003. } else if (e.data.tools && e.data.tools == "60") {
  5004. U.MD.D.I.openApplication("deepLearning")
  5005. } else if (e.data.tools && e.data.tools == "61") {
  5006. U.MD.D.I.openApplication("allHistory")
  5007. } else if (e.data.tools && e.data.tools == "28") {
  5008. U.MD.D.I.openApplication("translation")
  5009. } else if (e.data.tools && e.data.tools == "37") {
  5010. U.MD.D.I.openApplication("mohe")
  5011. } else if (e.data.tools && e.data.tools == "38") {
  5012. U.MD.D.I.openApplication("24game")
  5013. } else if (e.data.tools && e.data.tools == "39") {
  5014. U.MD.D.I.openApplication("GeoGebra")
  5015. } else if (e.data.tools && e.data.tools == "43") {
  5016. U.MD.D.I.openApplication("studentEvaluate")
  5017. } else if (e.data.tools && e.data.tools == "44") {
  5018. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5019. } else if (e.data.tools && e.data.tools == "46") {
  5020. U.MD.D.I.openApplication("project")
  5021. } else if (e.data.tools && e.data.tools == "71") {
  5022. U.MD.D.I.openApplication("aigptCourse")
  5023. } else if (e.data.tools && e.data.tools == "72") {
  5024. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5025. } else if (e.data.tools && e.data.tools == "1s") {
  5026. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5027. } else if (e.data.tools && e.data.tools == "3s") {
  5028. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5029. } else if (e.data.tools && e.data.tools == "6s") {
  5030. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5031. } else if (e.data.tools && e.data.tools == "1studio") {
  5032. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5033. } else if (e.data.tools && e.data.tools == "3studio") {
  5034. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5035. } else if (e.data.tools && e.data.tools == "6studio") {
  5036. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5037. } else if (e.data.tools && e.data.tools == "3y") {
  5038. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5039. } else if (e.data.tools && e.data.tools == "1y") {
  5040. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5041. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5042. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5043. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5044. U.MD.D.I.openApplication("AIAnalyse")
  5045. } else if (e.data.tools && e.data.tools == "1teacher") {
  5046. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5047. } else if (e.data.tools && e.data.tools == "3teacher") {
  5048. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5049. } else if (e.data.tools && e.data.tools == "7teacher") {
  5050. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5051. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5052. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5053. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5054. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5055. } else if (e.data.tools && e.data.tools == "1E") {
  5056. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5057. } else if (e.data.tools && e.data.tools == "3E") {
  5058. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5059. } else if (e.data.tools && e.data.tools == "57y") {
  5060. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5061. } else if (e.data.tools && e.data.tools == "57u") {
  5062. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5063. } else if (e.data.tools && e.data.tools == "57teacher") {
  5064. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5065. } else if (e.data.tools && e.data.tools == "64") {
  5066. U.MD.D.I.openApplication("AIChat")
  5067. } else if (e.data.tools && e.data.tools == "66") {
  5068. U.MD.D.I.openApplication("formulaEdi")
  5069. } else if (e.data.tools && e.data.tools == "67") {
  5070. U.MD.D.I.openApplication("molStr")
  5071. } else if (e.data.tools && e.data.tools == "68") {
  5072. U.MD.D.I.openApplication("timeAxis")
  5073. } else if (e.data.tools && e.data.tools == "openCourse") {
  5074. let _data = {
  5075. typea: e.data.typea || '',
  5076. typeb: e.data.typeb || '',
  5077. typed: e.data.typed || '',
  5078. }
  5079. U.MD.D.I.openInApplication("index", _data)
  5080. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5081. let _data = {
  5082. classid: e.data.classid || '',
  5083. }
  5084. U.MD.D.I.openInApplication("dataClass", _data)
  5085. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5086. let _data = {
  5087. cid: e.data.cid || '',
  5088. gid: e.data.gid || '',
  5089. }
  5090. U.MD.D.I.openInApplication("opencCscl", _data)
  5091. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5092. U.MD.D.I.openApplication("dataBoardTest")
  5093. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5094. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5095. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5096. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5097. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5098. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5099. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5100. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5101. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5102. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5103. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5104. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5105. }else if (e.data.tools && e.data.tools == "loginSz") {
  5106. U.MD.D.I.openInApplication("loginSz")
  5107. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5108. if($('#classroom_observation_board')[0]){
  5109. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5110. }
  5111. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5112. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5113. if($('#classroom_observation_ob_comment')[0]){
  5114. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5115. }
  5116. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5117. }else if (e.data.tools && e.data.tools == "logout"){
  5118. U.MD.U.LO.logoutSystem()
  5119. }else if (e.data.tools && e.data.tools == "getLogin"){
  5120. let _iframe = $('#UI_Login')[0];
  5121. if (_iframe) {
  5122. var userInfo = US.userInfo;
  5123. var type = 2
  5124. if(userInfo && userInfo.userid){
  5125. type = 1
  5126. }
  5127. _contentWindow = _iframe.contentWindow;
  5128. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5129. }
  5130. }
  5131. });
  5132. U.MD.D.I.selectUser = function () {
  5133. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5134. if (res.value[0].length > 0) {
  5135. US.userInfo = res.value[0][0];
  5136. $(".userName")[0].innerHTML = US.userInfo.username;
  5137. }
  5138. }, [], { "type": "GET", "withCredentials": true });
  5139. }
  5140. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5141. var _userinfo = US.userInfo, //登录用户信息
  5142. _userid = US.userInfo.userid, //登录用户id
  5143. _oid = _userinfo.organizeid,
  5144. _type = US.userInfo.type,
  5145. _org = US.userInfo.org,
  5146. _role = US.userInfo.role,
  5147. _classId = US.userInfo.classid;
  5148. if (_type == 4) {
  5149. tType = 4
  5150. }
  5151. switch (str) {
  5152. case "studyDetailNT": //无终端模式
  5153. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5154. setTimeout(() => {
  5155. U.MD.U.L.login();
  5156. }, 2000);
  5157. } else {
  5158. _formdiv = new U.UF.UI.form(
  5159. "课程详情",
  5160. $$("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 }), {
  5161. "id": "studyDetailNT",
  5162. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5163. "onresize": function () { }
  5164. }, {
  5165. closecallback: function () { }
  5166. }, { "style": { "height": "36px" } }).form; //创建窗体
  5167. _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); } }
  5168. break;
  5169. }
  5170. case "studyDetail":
  5171. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5172. setTimeout(() => {
  5173. U.MD.U.L.login();
  5174. }, 2000);
  5175. } else {
  5176. _formdiv = new U.UF.UI.form(
  5177. "课程详情",
  5178. $$("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 }), {
  5179. "id": "studyDetail",
  5180. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5181. "onresize": function () { }
  5182. }, {
  5183. closecallback: function () { }
  5184. }, { "style": { "height": "36px" } }).form; //创建窗体
  5185. _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); } }
  5186. break;
  5187. }
  5188. case "studyDetailTrain":
  5189. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5190. setTimeout(() => {
  5191. U.MD.U.L.login();
  5192. }, 2000);
  5193. } else {
  5194. _formdiv = new U.UF.UI.form(
  5195. "培训详情",
  5196. $$("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 }), {
  5197. "id": "studyDetailTrain",
  5198. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5199. "onresize": function () { }
  5200. }, {
  5201. closecallback: function () { }
  5202. }, { "style": { "height": "36px" } }).form; //创建窗体
  5203. _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); } }
  5204. break;
  5205. }
  5206. case "studyDetailS":
  5207. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5208. setTimeout(() => {
  5209. U.MD.U.L.login();
  5210. }, 2000);
  5211. } else {
  5212. _formdiv = new U.UF.UI.form(
  5213. "项目详情",
  5214. $$("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 }), {
  5215. "id": "studyDetailS",
  5216. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5217. "onresize": function () { }
  5218. }, {
  5219. closecallback: function () { }
  5220. }, { "style": { "height": "36px" } }).form; //创建窗体
  5221. _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); } }
  5222. break;
  5223. }
  5224. case "studyDetailStudio":
  5225. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5226. setTimeout(() => {
  5227. U.MD.U.L.login();
  5228. }, 2000);
  5229. } else {
  5230. _formdiv = new U.UF.UI.form(
  5231. "工作详情",
  5232. $$("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 }), {
  5233. "id": "studyDetailStudio",
  5234. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5235. "onresize": function () { }
  5236. }, {
  5237. closecallback: function () { }
  5238. }, { "style": { "height": "36px" } }).form; //创建窗体
  5239. _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); } }
  5240. break;
  5241. }
  5242. case "studyDetailS5":
  5243. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5244. setTimeout(() => {
  5245. U.MD.U.L.login();
  5246. }, 2000);
  5247. } else {
  5248. _formdiv = new U.UF.UI.form(
  5249. "项目详情",
  5250. $$("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 }), {
  5251. "id": "studyDetailS",
  5252. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5253. "onresize": function () { }
  5254. }, {
  5255. closecallback: function () { }
  5256. }, { "style": { "height": "36px" } }).form; //创建窗体
  5257. _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); } }
  5258. break;
  5259. }
  5260. case "studyDetailGM":
  5261. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5262. setTimeout(() => {
  5263. U.MD.U.L.login();
  5264. }, 2000);
  5265. } else {
  5266. _formdiv = new U.UF.UI.form(
  5267. "课程详情",
  5268. $$("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 }), {
  5269. "id": "studyDetail",
  5270. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. _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); } }
  5276. break;
  5277. }
  5278. case "hanUrl":
  5279. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5280. setTimeout(() => {
  5281. U.MD.U.L.login();
  5282. }, 2000);
  5283. } else {
  5284. _formdiv = new U.UF.UI.form(
  5285. "汉字宫",
  5286. $$("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" }), {
  5287. "id": "hanUrl",
  5288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5289. "onresize": function () { }
  5290. }, {
  5291. closecallback: function () { }
  5292. }, { "style": { "height": "36px" } }).form; //创建窗体
  5293. _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); } }
  5294. break;
  5295. }
  5296. case "index":
  5297. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5298. setTimeout(() => {
  5299. U.MD.U.L.login();
  5300. }, 2000);
  5301. } else {
  5302. _formdiv = new U.UF.UI.form(
  5303. "课程中心",
  5304. $$("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 }), {
  5305. "id": "study",
  5306. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5307. "onresize": function () { }
  5308. }, {
  5309. closecallback: function () { }
  5310. }, { "style": { "height": "36px" } }).form; //创建窗体
  5311. _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); } }
  5312. break;
  5313. }
  5314. case "dataClass":
  5315. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5316. setTimeout(() => {
  5317. U.MD.U.L.login();
  5318. }, 2000);
  5319. } else {
  5320. _formdiv = new U.UF.UI.form(
  5321. "数据报告",
  5322. $$("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 }), {
  5323. "id": "dataClass",
  5324. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5325. "onresize": function () { }
  5326. }, {
  5327. closecallback: function () { }
  5328. }, { "style": { "height": "36px" } }).form; //创建窗体
  5329. _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); } }
  5330. break;
  5331. }
  5332. case "opencCscl":
  5333. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5334. setTimeout(() => {
  5335. U.MD.U.L.login();
  5336. }, 2000);
  5337. } else {
  5338. _formdiv = new U.UF.UI.form(
  5339. "协同建构",
  5340. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5341. "id": "futureClass",
  5342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5343. "onresize": function () { }
  5344. }, {
  5345. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5346. }, { "style": { "height": "36px" } }).form; //创建窗体
  5347. _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); } }
  5348. break;
  5349. }
  5350. case "openCourseUpdate":
  5351. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5352. setTimeout(() => {
  5353. U.MD.U.L.login();
  5354. }, 2000);
  5355. } else {
  5356. _formdiv = new U.UF.UI.form(
  5357. "课程管理",
  5358. $$("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 }), {
  5359. "id": "openCourseUpdate",
  5360. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5361. "onresize": function () { }
  5362. }, {
  5363. closecallback: function () { }
  5364. }, { "style": { "height": "36px" } }).form; //创建窗体
  5365. break;
  5366. }
  5367. case "openNewCourseUpdate":
  5368. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5369. setTimeout(() => {
  5370. U.MD.U.L.login();
  5371. }, 2000);
  5372. } else {
  5373. _formdiv = new U.UF.UI.form(
  5374. "课程管理",
  5375. $$("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 }), {
  5376. "id": "openCourseUpdate",
  5377. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5378. "onresize": function () { }
  5379. }, {
  5380. closecallback: function () { }
  5381. }, { "style": { "height": "36px" } }).form; //创建窗体
  5382. break;
  5383. }
  5384. case "openCourseEUpdate":
  5385. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5386. setTimeout(() => {
  5387. U.MD.U.L.login();
  5388. }, 2000);
  5389. } else {
  5390. _formdiv = new U.UF.UI.form(
  5391. "课程管理",
  5392. $$("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 }), {
  5393. "id": "openCourseUpdate",
  5394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5395. "onresize": function () { }
  5396. }, {
  5397. closecallback: function () { }
  5398. }, { "style": { "height": "36px" } }).form; //创建窗体
  5399. break;
  5400. }
  5401. case "openCourseAiUpdate":
  5402. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5403. setTimeout(() => {
  5404. U.MD.U.L.login();
  5405. }, 2000);
  5406. } else {
  5407. _formdiv = new U.UF.UI.form(
  5408. "课程管理",
  5409. $$("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 }), {
  5410. "id": "openCourseUpdate",
  5411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5412. "onresize": function () { }
  5413. }, {
  5414. closecallback: function () { }
  5415. }, { "style": { "height": "36px" } }).form; //创建窗体
  5416. break;
  5417. }
  5418. case "openCourseAiUpdate2":
  5419. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5420. setTimeout(() => {
  5421. U.MD.U.L.login();
  5422. }, 2000);
  5423. } else {
  5424. _formdiv = new U.UF.UI.form(
  5425. "课程管理",
  5426. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5427. "id": "openCourseUpdate",
  5428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. break;
  5434. }
  5435. case "openCourseNewUpdate":
  5436. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5437. setTimeout(() => {
  5438. U.MD.U.L.login();
  5439. }, 2000);
  5440. } else {
  5441. _formdiv = new U.UF.UI.form(
  5442. "课程管理",
  5443. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5444. "id": "openCourseUpdate",
  5445. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5446. "onresize": function () { }
  5447. }, {
  5448. closecallback: function () { }
  5449. }, { "style": { "height": "36px" } }).form; //创建窗体
  5450. break;
  5451. }
  5452. case "inviteLoginSz":
  5453. _formdiv = new U.UF.UI.form(
  5454. "随机码登录",
  5455. $$("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 }), {
  5456. "id": "loginSz",
  5457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5458. "onresize": function () { }
  5459. }, {
  5460. closecallback: function () { }
  5461. }, { "style": { "height": "36px" } }).form; //创建窗体
  5462. break;
  5463. case "loginSz":
  5464. _formdiv = new U.UF.UI.form(
  5465. "教师登录",
  5466. $$("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" }), {
  5467. "id": "loginSz",
  5468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5469. "onresize": function () { }
  5470. }, {
  5471. closecallback: function () { }
  5472. }, { "style": { "height": "36px" } }).form; //创建窗体
  5473. break;
  5474. case "teacher":
  5475. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5476. setTimeout(() => {
  5477. U.MD.U.L.login();
  5478. }, 2000);
  5479. } else {
  5480. _formdiv = new U.UF.UI.form(
  5481. "教师管理",
  5482. $$("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 }), {
  5483. "id": "teacher",
  5484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5485. "onresize": function () { }
  5486. }, {
  5487. closecallback: function () { }
  5488. }, { "style": { "height": "36px" } }).form; //创建窗体
  5489. break;
  5490. }
  5491. case "dataBoardSZArea":
  5492. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5493. setTimeout(() => {
  5494. U.MD.U.L.login();
  5495. }, 2000);
  5496. } else {
  5497. _formdiv = new U.UF.UI.form(
  5498. "综合数据看板",
  5499. $$("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 }), {
  5500. "id": "dataBoardSZArea",
  5501. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5502. "onresize": function () { }
  5503. }, {
  5504. closecallback: function () { }
  5505. }, { "style": { "height": "36px" } }).form; //创建窗体
  5506. break;
  5507. }
  5508. case "dataBoardSZCity":
  5509. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5510. setTimeout(() => {
  5511. U.MD.U.L.login();
  5512. }, 2000);
  5513. } else {
  5514. _formdiv = new U.UF.UI.form(
  5515. "综合数据看板",
  5516. $$("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 }), {
  5517. "id": "dataBoardSZCity",
  5518. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5519. "onresize": function () { }
  5520. }, {
  5521. closecallback: function () { }
  5522. }, { "style": { "height": "36px" } }).form; //创建窗体
  5523. break;
  5524. }
  5525. case "classroom_observation_board":
  5526. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5527. setTimeout(() => {
  5528. U.MD.U.L.login();
  5529. }, 2000);
  5530. } else {
  5531. _formdiv = new U.UF.UI.form(
  5532. "课堂观察",
  5533. $$("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 }), {
  5534. "id": "classroom_observation_board",
  5535. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, { "style": { "height": "36px" } }).form; //创建窗体
  5540. break;
  5541. }
  5542. case "classroom_observation_ob_comment":
  5543. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5544. setTimeout(() => {
  5545. U.MD.U.L.login();
  5546. }, 2000);
  5547. } else {
  5548. _formdiv = new U.UF.UI.form(
  5549. "课堂审核",
  5550. $$("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 }), {
  5551. "id": "classroom_observation_ob_comment",
  5552. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { }
  5556. }, { "style": { "height": "36px" } }).form; //创建窗体
  5557. break;
  5558. }
  5559. case "gptConfig":
  5560. _formdiv = new U.UF.UI.form(
  5561. data.name ? data.name : "应用中心",
  5562. $$("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 }), {
  5563. "id": "gptConfig" + data.id,
  5564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //创建窗体
  5569. break;
  5570. }
  5571. }
  5572. U.MD.D.I.openApplication = function (str, obj, info) {
  5573. obj = obj || {};
  5574. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5575. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5576. _userinfo = US.userInfo, //登录用户信息
  5577. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5578. _oid = obj.organizeid || _userinfo.organizeid,
  5579. _type = US.userInfo.type,
  5580. _org = obj.org || US.userInfo.org,
  5581. _role = US.userInfo.role,
  5582. _classId = US.userInfo.classid,
  5583. _TscreenType = 1
  5584. _screenType = 2,
  5585. _SscreenType = 3;
  5586. let iframeBool = true
  5587. if(U.UF.UI.form.allForm[str]){
  5588. iframeBool = false
  5589. }
  5590. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5591. return;
  5592. }
  5593. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student"]
  5594. if(opArray.includes(str)){
  5595. let _str = str
  5596. if(str == 'appStore'){
  5597. _str = "cocoFlow"
  5598. }else if(str == "futureClass"){
  5599. _str = "cocoNote"
  5600. }
  5601. try {
  5602. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5603. } catch (error) {
  5604. console.log(error);
  5605. }
  5606. }
  5607. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5608. switch (str) {
  5609. case "studnetProject": //好友打开
  5610. _formdiv = new U.UF.UI.form(
  5611. "我的项目",
  5612. $$("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 }), {
  5613. "id": "studnetProject",
  5614. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { }
  5618. }, { "style": { "height": "36px" } }).form; //创建窗体
  5619. _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); } }
  5620. break;
  5621. case "studentEvaluate": //好友打开
  5622. _formdiv = new U.UF.UI.form(
  5623. "我的评价",
  5624. $$("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 }), {
  5625. "id": "studentEvaluate",
  5626. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5627. "onresize": function () { }
  5628. }, {
  5629. closecallback: function () { }
  5630. }, { "style": { "height": "36px" } }).form; //创建窗体
  5631. _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); } }
  5632. break;
  5633. case "my":
  5634. _formdiv = new U.UF.UI.form(
  5635. "我的资料",
  5636. $$("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 }), {
  5637. "id": "my",
  5638. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5639. "onresize": function () { }
  5640. }, {
  5641. closecallback: function () { }
  5642. }, { "style": { "height": "36px" } }).form; //创建窗体
  5643. _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); } }
  5644. break;
  5645. case "program":
  5646. _formdiv = new U.UF.UI.form(
  5647. "编程平台",
  5648. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5649. "id": "program",
  5650. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5651. "onresize": function () { }
  5652. }, {
  5653. closecallback: function () { }
  5654. }, { "style": { "height": "36px" } }).form; //创建窗体
  5655. _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); } }
  5656. break;
  5657. case "library":
  5658. _formdiv = new U.UF.UI.form(
  5659. "素材库",
  5660. $$("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 }), {
  5661. "id": "library",
  5662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5668. break;
  5669. case "whiteboard":
  5670. _formdiv = new U.UF.UI.form(
  5671. "电子白板",
  5672. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5673. "id": "whiteboard",
  5674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5675. "onresize": function () { }
  5676. }, {
  5677. closecallback: function () { }
  5678. }, { "style": { "height": "36px" } }).form; //创建窗体
  5679. _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); } }
  5680. break;
  5681. case "investigation":
  5682. _formdiv = new U.UF.UI.form(
  5683. "问卷调查",
  5684. $$("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 }), {
  5685. "id": "investigation",
  5686. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5687. "onresize": function () { }
  5688. }, {
  5689. closecallback: function () { }
  5690. }, { "style": { "height": "36px" } }).form; //创建窗体
  5691. _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); } }
  5692. break;
  5693. case "note":
  5694. _formdiv = new U.UF.UI.form(
  5695. "便签分类",
  5696. $$("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 }), {
  5697. "id": "note",
  5698. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5699. "onresize": function () { }
  5700. }, {
  5701. closecallback: function () { }
  5702. }, { "style": { "height": "36px" } }).form; //创建窗体
  5703. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5704. break;
  5705. // case "score":
  5706. // _formdiv = new U.UF.UI.form(
  5707. // "量规评分",
  5708. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5709. // "id": "score",
  5710. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5711. // "onresize": function() {}
  5712. // }, {
  5713. // closecallback: function() {}
  5714. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5715. // _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); } }
  5716. // break;
  5717. case "mind":
  5718. _formdiv = new U.UF.UI.form(
  5719. "思维导图",
  5720. $$("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"
  5721. "id": "mind",
  5722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5723. "onresize": function () { }
  5724. }, {
  5725. closecallback: function () { }
  5726. }, { "style": { "height": "36px" } }).form; //创建窗体
  5727. _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); } }
  5728. break;
  5729. case "doc":
  5730. // U.MD.D.I.isRoom();
  5731. _formdiv = new U.UF.UI.form(
  5732. "协同文档",
  5733. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5734. "id": "doc",
  5735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5741. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5742. // })
  5743. _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); } }
  5744. break;
  5745. case "studentStudy":
  5746. _formdiv = new U.UF.UI.form(
  5747. "课程中心",
  5748. $$("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
  5749. "id": "studentStudy",
  5750. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _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); } }
  5756. break;
  5757. case "train": //好友打开
  5758. _formdiv = new U.UF.UI.form(
  5759. "训练平台",
  5760. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5761. "id": "train",
  5762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. _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); } }
  5768. break;
  5769. case "mindNetwork": //好友打开
  5770. _formdiv = new U.UF.UI.form(
  5771. "思维网格",
  5772. $$("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 }), {
  5773. "id": "mindNetwork",
  5774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. _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); } }
  5780. break;
  5781. case "studentClassRoom": //好友打开
  5782. _formdiv = new U.UF.UI.form(
  5783. "实时课堂",
  5784. $$("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 }), {
  5785. "id": "studentClassRoom",
  5786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. _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); } }
  5792. setTimeout(() => {
  5793. U.UF.F.windowZooming(_formdiv)
  5794. }, 0);
  5795. break;
  5796. }
  5797. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5798. switch (str) {
  5799. case "studnetProject": //好友打开
  5800. _formdiv = new U.UF.UI.form(
  5801. "我的项目",
  5802. $$("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 }), {
  5803. "id": "studnetProject",
  5804. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //创建窗体
  5809. _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); } }
  5810. break;
  5811. case "studentEvaluate": //好友打开
  5812. _formdiv = new U.UF.UI.form(
  5813. "我的评价",
  5814. $$("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 }), {
  5815. "id": "studentEvaluate",
  5816. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //创建窗体
  5821. _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); } }
  5822. break;
  5823. case "my":
  5824. _formdiv = new U.UF.UI.form(
  5825. "我的资料",
  5826. $$("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 }), {
  5827. "id": "my",
  5828. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _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); } }
  5834. break;
  5835. case "program":
  5836. _formdiv = new U.UF.UI.form(
  5837. "编程平台",
  5838. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5839. "id": "program",
  5840. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //创建窗体
  5845. _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); } }
  5846. break;
  5847. case "library":
  5848. _formdiv = new U.UF.UI.form(
  5849. "素材库",
  5850. $$("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 }), {
  5851. "id": "library",
  5852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. _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); } }
  5858. break;
  5859. case "whiteboard":
  5860. _formdiv = new U.UF.UI.form(
  5861. "电子白板",
  5862. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5863. "id": "whiteboard",
  5864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5865. "onresize": function () { }
  5866. }, {
  5867. closecallback: function () { }
  5868. }, { "style": { "height": "36px" } }).form; //创建窗体
  5869. _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); } }
  5870. break;
  5871. case "investigation":
  5872. _formdiv = new U.UF.UI.form(
  5873. "问卷调查",
  5874. $$("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 }), {
  5875. "id": "investigation",
  5876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5877. "onresize": function () { }
  5878. }, {
  5879. closecallback: function () { }
  5880. }, { "style": { "height": "36px" } }).form; //创建窗体
  5881. _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); } }
  5882. break;
  5883. case "note":
  5884. _formdiv = new U.UF.UI.form(
  5885. "便签分类",
  5886. $$("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 }), {
  5887. "id": "note",
  5888. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //创建窗体
  5893. _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); } }
  5894. break;
  5895. // case "score":
  5896. // _formdiv = new U.UF.UI.form(
  5897. // "量规评分",
  5898. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5899. // "id": "score",
  5900. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5901. // "onresize": function() {}
  5902. // }, {
  5903. // closecallback: function() {}
  5904. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5905. // _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); } }
  5906. // break;
  5907. case "mind":
  5908. _formdiv = new U.UF.UI.form(
  5909. "思维导图",
  5910. $$("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"
  5911. "id": "mind",
  5912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //创建窗体
  5917. _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); } }
  5918. break;
  5919. case "doc":
  5920. // U.MD.D.I.isRoom();
  5921. _formdiv = new U.UF.UI.form(
  5922. "协同文档",
  5923. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5924. "id": "doc",
  5925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5931. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5932. })
  5933. _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); } }
  5934. break;
  5935. case "train": //好友打开
  5936. _formdiv = new U.UF.UI.form(
  5937. "训练平台",
  5938. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5939. "id": "train",
  5940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5941. "onresize": function () { }
  5942. }, {
  5943. closecallback: function () { }
  5944. }, { "style": { "height": "36px" } }).form; //创建窗体
  5945. _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); } }
  5946. break;
  5947. case "studentStudy":
  5948. _formdiv = new U.UF.UI.form(
  5949. "课程中心",
  5950. $$("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
  5951. "id": "studentStudy",
  5952. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5953. "onresize": function () { }
  5954. }, {
  5955. closecallback: function () { }
  5956. }, { "style": { "height": "36px" } }).form; //创建窗体
  5957. _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); } }
  5958. break;
  5959. case "mindNetwork": //好友打开
  5960. _formdiv = new U.UF.UI.form(
  5961. "思维网格",
  5962. $$("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 }), {
  5963. "id": "mindNetwork",
  5964. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5965. "onresize": function () { }
  5966. }, {
  5967. closecallback: function () { }
  5968. }, { "style": { "height": "36px" } }).form; //创建窗体
  5969. _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); } }
  5970. break;
  5971. case "studentClassRoom": //好友打开
  5972. _formdiv = new U.UF.UI.form(
  5973. "实时课堂",
  5974. $$("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 }), {
  5975. "id": "studentClassRoom",
  5976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5977. "onresize": function () { }
  5978. }, {
  5979. closecallback: function () { }
  5980. }, { "style": { "height": "36px" } }).form; //创建窗体
  5981. _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); } }
  5982. setTimeout(() => {
  5983. U.UF.F.windowZooming(_formdiv)
  5984. }, 0);
  5985. break;
  5986. }
  5987. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5988. //选择应用处理
  5989. switch (str) {
  5990. case "project": //好友打开
  5991. _formdiv = new U.UF.UI.form(
  5992. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5993. $$("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 }), {
  5994. "id": "project",
  5995. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5996. "onresize": function () { }
  5997. }, {
  5998. closecallback: function () { }
  5999. }, { "style": { "height": "36px" } }).form; //创建窗体
  6000. _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); } }
  6001. break;
  6002. case "student":
  6003. _formdiv = new U.UF.UI.form(
  6004. "学生管理",
  6005. $$("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 }), {
  6006. "id": "student",
  6007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6008. "onresize": function () { }
  6009. }, {
  6010. closecallback: function () { }
  6011. }, { "style": { "height": "36px" } }).form; //创建窗体
  6012. _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); } }
  6013. break;
  6014. case "evaluate":
  6015. _formdiv = new U.UF.UI.form(
  6016. "学生评价",
  6017. $$("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 }), {
  6018. "id": "evaluate",
  6019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6020. "onresize": function () { }
  6021. }, {
  6022. closecallback: function () { }
  6023. }, { "style": { "height": "36px" } }).form; //创建窗体
  6024. _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); } }
  6025. break;
  6026. case "sys":
  6027. _formdiv = new U.UF.UI.form(
  6028. "目标管理",
  6029. $$("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 }), {
  6030. "id": "sys",
  6031. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6032. "onresize": function () { }
  6033. }, {
  6034. closecallback: function () { }
  6035. }, { "style": { "height": "36px" } }).form; //创建窗体
  6036. _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); } }
  6037. break;
  6038. case "courseDesign":
  6039. _formdiv = new U.UF.UI.form(
  6040. "项目设计",
  6041. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6042. "id": "courseDesign",
  6043. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6044. "onresize": function () { }
  6045. }, {
  6046. closecallback: function () { }
  6047. }, { "style": { "height": "36px" } }).form; //创建窗体
  6048. _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); } }
  6049. break;
  6050. case "program":
  6051. _formdiv = new U.UF.UI.form(
  6052. "编程平台",
  6053. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6054. "id": "program",
  6055. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6056. "onresize": function () { }
  6057. }, {
  6058. closecallback: function () { }
  6059. }, { "style": { "height": "36px" } }).form; //创建窗体
  6060. _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); } }
  6061. break;
  6062. case "class":
  6063. _formdiv = new U.UF.UI.form(
  6064. "班级管理",
  6065. $$("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 }), {
  6066. "id": "class",
  6067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6068. "onresize": function () { }
  6069. }, {
  6070. closecallback: function () { }
  6071. }, { "style": { "height": "36px" } }).form; //创建窗体
  6072. _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); } }
  6073. break;
  6074. case "Grade":
  6075. _formdiv = new U.UF.UI.form(
  6076. "年级管理",
  6077. $$("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 }), {
  6078. "id": "Grade",
  6079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6080. "onresize": function () { }
  6081. }, {
  6082. closecallback: function () { }
  6083. }, { "style": { "height": "36px" } }).form; //创建窗体
  6084. _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); } }
  6085. break;
  6086. case "teacherOffice":
  6087. _formdiv = new U.UF.UI.form(
  6088. "教研室",
  6089. $$("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 }), {
  6090. "id": "teacherOffice",
  6091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6092. "onresize": function () { }
  6093. }, {
  6094. closecallback: function () { }
  6095. }, { "style": { "height": "36px" } }).form; //创建窗体
  6096. _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); } }
  6097. break;
  6098. case "my":
  6099. _formdiv = new U.UF.UI.form(
  6100. "我的资料",
  6101. $$("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 }), {
  6102. "id": "my",
  6103. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6104. "onresize": function () { }
  6105. }, {
  6106. closecallback: function () { }
  6107. }, { "style": { "height": "36px" } }).form; //创建窗体
  6108. _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); } }
  6109. break;
  6110. case "notice":
  6111. _formdiv = new U.UF.UI.form(
  6112. "通知公告",
  6113. $$("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 }), {
  6114. "id": "notice",
  6115. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6116. "onresize": function () { }
  6117. }, {
  6118. closecallback: function () { }
  6119. }, { "style": { "height": "36px" } }).form; //创建窗体
  6120. _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); } }
  6121. break;
  6122. case "library":
  6123. _formdiv = new U.UF.UI.form(
  6124. "素材库",
  6125. $$("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 }), {
  6126. "id": "library",
  6127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6128. "onresize": function () { }
  6129. }, {
  6130. closecallback: function () { }
  6131. }, { "style": { "height": "36px" } }).form; //创建窗体
  6132. _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); } }
  6133. break;
  6134. case "whiteboard":
  6135. _formdiv = new U.UF.UI.form(
  6136. "电子白板",
  6137. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6138. "id": "whiteboard",
  6139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6140. "onresize": function () { }
  6141. }, {
  6142. closecallback: function () { }
  6143. }, { "style": { "height": "36px" } }).form; //创建窗体
  6144. _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); } }
  6145. break;
  6146. case "investigation":
  6147. _formdiv = new U.UF.UI.form(
  6148. "问卷调查",
  6149. $$("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 }), {
  6150. "id": "investigation",
  6151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () { }
  6155. }, { "style": { "height": "36px" } }).form; //创建窗体
  6156. _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); } }
  6157. break;
  6158. case "note":
  6159. _formdiv = new U.UF.UI.form(
  6160. "便签分类",
  6161. $$("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 }), {
  6162. "id": "note",
  6163. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6164. "onresize": function () { }
  6165. }, {
  6166. closecallback: function () { }
  6167. }, { "style": { "height": "36px" } }).form; //创建窗体
  6168. _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); } }
  6169. break;
  6170. // case "score":
  6171. // _formdiv = new U.UF.UI.form(
  6172. // "量规评分",
  6173. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6174. // "id": "score",
  6175. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6176. // "onresize": function() {}
  6177. // }, {
  6178. // closecallback: function() {}
  6179. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6180. // _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); } }
  6181. // break;
  6182. case "mind":
  6183. _formdiv = new U.UF.UI.form(
  6184. "思维导图",
  6185. $$("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"
  6186. "id": "mind",
  6187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6188. "onresize": function () { }
  6189. }, {
  6190. closecallback: function () { }
  6191. }, { "style": { "height": "36px" } }).form; //创建窗体
  6192. _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); } }
  6193. break;
  6194. case "doc":
  6195. // U.MD.D.I.isRoom();
  6196. _formdiv = new U.UF.UI.form(
  6197. "协同文档",
  6198. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6199. "id": "doc",
  6200. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6201. "onresize": function () { }
  6202. }, {
  6203. closecallback: function () { }
  6204. }, { "style": { "height": "36px" } }).form; //创建窗体
  6205. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6206. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6207. })
  6208. _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); } }
  6209. break;
  6210. case "study":
  6211. _formdiv = new U.UF.UI.form(
  6212. "课程中心",
  6213. $$("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
  6214. "id": "study",
  6215. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6216. "onresize": function () { }
  6217. }, {
  6218. closecallback: function () { }
  6219. }, { "style": { "height": "36px" } }).form; //创建窗体
  6220. _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); } }
  6221. break;
  6222. case "mindNetwork": //好友打开
  6223. _formdiv = new U.UF.UI.form(
  6224. "思维网格",
  6225. $$("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 }), {
  6226. "id": "mindNetwork",
  6227. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //创建窗体
  6232. _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); } }
  6233. break;
  6234. case "train": //好友打开
  6235. _formdiv = new U.UF.UI.form(
  6236. "训练平台",
  6237. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6238. "id": "mindNetwork",
  6239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6240. "onresize": function () { }
  6241. }, {
  6242. closecallback: function () { }
  6243. }, { "style": { "height": "36px" } }).form; //创建窗体
  6244. _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); } }
  6245. break;
  6246. case "teacherClassRoom": //好友打开
  6247. _formdiv = new U.UF.UI.form(
  6248. "实时课堂",
  6249. $$("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 }), {
  6250. "id": "teacherClassRoom",
  6251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //创建窗体
  6256. _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); } }
  6257. setTimeout(() => {
  6258. U.UF.F.windowZooming(_formdiv)
  6259. }, 0);
  6260. break;
  6261. }
  6262. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6263. switch (str) {
  6264. case "project": //好友打开
  6265. _formdiv = new U.UF.UI.form(
  6266. "课程管理",
  6267. $$("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 }), {
  6268. "id": "project",
  6269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //创建窗体
  6274. _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); } }
  6275. break;
  6276. case "evaluate":
  6277. _formdiv = new U.UF.UI.form(
  6278. "学生评价",
  6279. $$("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 }), {
  6280. "id": "evaluate",
  6281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //创建窗体
  6286. _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); } }
  6287. break;
  6288. case "notice":
  6289. _formdiv = new U.UF.UI.form(
  6290. "通知公告",
  6291. $$("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 }), {
  6292. "id": "notice",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //创建窗体
  6298. _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); } }
  6299. break;
  6300. case "stuLibrary":
  6301. _formdiv = new U.UF.UI.form(
  6302. "学习资料",
  6303. $$("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 }), {
  6304. "id": "stuLibrary",
  6305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6306. "onresize": function () { }
  6307. }, {
  6308. closecallback: function () { }
  6309. }, { "style": { "height": "36px" } }).form; //创建窗体
  6310. _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); } }
  6311. break;
  6312. case "program":
  6313. _formdiv = new U.UF.UI.form(
  6314. "编程平台",
  6315. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6316. "id": "program",
  6317. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6318. "onresize": function () { }
  6319. }, {
  6320. closecallback: function () { }
  6321. }, { "style": { "height": "36px" } }).form; //创建窗体
  6322. _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); } }
  6323. break;
  6324. case "whiteboard":
  6325. _formdiv = new U.UF.UI.form(
  6326. "电子白板",
  6327. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6328. "id": "whiteboard",
  6329. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6330. "onresize": function () { }
  6331. }, {
  6332. closecallback: function () { }
  6333. }, { "style": { "height": "36px" } }).form; //创建窗体
  6334. _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); } }
  6335. break;
  6336. case "investigation":
  6337. _formdiv = new U.UF.UI.form(
  6338. "问卷调查",
  6339. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6340. "id": "investigation",
  6341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6342. "onresize": function () { }
  6343. }, {
  6344. closecallback: function () { }
  6345. }, { "style": { "height": "36px" } }).form; //创建窗体
  6346. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6347. break;
  6348. case "mind":
  6349. _formdiv = new U.UF.UI.form(
  6350. "思维导图",
  6351. $$("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"
  6352. "id": "mind",
  6353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6354. "onresize": function () { }
  6355. }, {
  6356. closecallback: function () { }
  6357. }, { "style": { "height": "36px" } }).form; //创建窗体
  6358. _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); } }
  6359. break;
  6360. case "doc":
  6361. // U.MD.D.I.isRoom();
  6362. _formdiv = new U.UF.UI.form(
  6363. "协同文档",
  6364. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6365. "id": "doc",
  6366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6367. "onresize": function () { }
  6368. }, {
  6369. closecallback: function () { }
  6370. }, { "style": { "height": "36px" } }).form; //创建窗体
  6371. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6372. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6373. })
  6374. _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); } }
  6375. break;
  6376. case "study":
  6377. _formdiv = new U.UF.UI.form(
  6378. "课程中心",
  6379. $$("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
  6380. "id": "study",
  6381. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6382. "onresize": function () { }
  6383. }, {
  6384. closecallback: function () { }
  6385. }, { "style": { "height": "36px" } }).form; //创建窗体
  6386. _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); } }
  6387. break;
  6388. case "mindNetwork": //好友打开
  6389. _formdiv = new U.UF.UI.form(
  6390. "思维网格",
  6391. $$("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 }), {
  6392. "id": "mindNetwork",
  6393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6394. "onresize": function () { }
  6395. }, {
  6396. closecallback: function () { }
  6397. }, { "style": { "height": "36px" } }).form; //创建窗体
  6398. _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); } }
  6399. break;
  6400. case "train": //好友打开
  6401. _formdiv = new U.UF.UI.form(
  6402. "训练平台",
  6403. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6404. "id": "train",
  6405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6406. "onresize": function () { }
  6407. }, {
  6408. closecallback: function () { }
  6409. }, { "style": { "height": "36px" } }).form; //创建窗体
  6410. _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); } }
  6411. break;
  6412. case "sys":
  6413. _formdiv = new U.UF.UI.form(
  6414. "目标管理",
  6415. $$("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 }), {
  6416. "id": "sys",
  6417. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //创建窗体
  6422. _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); } }
  6423. break;
  6424. case "courseDesign":
  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": "/course-design-vue" }), {
  6428. "id": "courseDesign",
  6429. "style": { "width": "90%", "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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6435. break;
  6436. }
  6437. } else if (!_type) {
  6438. switch (str) {
  6439. case "my":
  6440. _formdiv = new U.UF.UI.form(
  6441. "我的资料",
  6442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6443. "id": "my",
  6444. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6445. "onresize": function () { }
  6446. }, {
  6447. closecallback: function () { }
  6448. }, { "style": { "height": "36px" } }).form; //创建窗体
  6449. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6450. break;
  6451. }
  6452. }
  6453. switch (str) {
  6454. // AIprogram2 AI体验 aihub.cocorobo.cn
  6455. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6456. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6457. case "formulaEdi": //公式编辑
  6458. _formdiv = new U.UF.UI.form(
  6459. "公式编辑",
  6460. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6461. "id": "formulaEdi",
  6462. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6463. "onresize": function () { }
  6464. }, {
  6465. closecallback: function () { }
  6466. }, { "style": { "height": "36px" } }).form; //创建窗体
  6467. _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); } }
  6468. break;
  6469. case "molStr": //分子结构
  6470. _formdiv = new U.UF.UI.form(
  6471. "分子结构",
  6472. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6473. "id": "molStr",
  6474. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6475. "onresize": function () { }
  6476. }, {
  6477. closecallback: function () { }
  6478. }, { "style": { "height": "36px" } }).form; //创建窗体
  6479. _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); } }
  6480. break;
  6481. case "timeAxis": //时间轴
  6482. _formdiv = new U.UF.UI.form(
  6483. "时间轴",
  6484. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6485. "id": "timeAxis",
  6486. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6487. "onresize": function () { }
  6488. }, {
  6489. closecallback: function () { }
  6490. }, { "style": { "height": "36px" } }).form; //创建窗体
  6491. _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); } }
  6492. break;
  6493. case "AIprogram2": //AI体验
  6494. _formdiv = new U.UF.UI.form(
  6495. "AI体验",
  6496. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6497. "id": "AIprogram2",
  6498. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6499. "onresize": function () { }
  6500. }, {
  6501. closecallback: function () { }
  6502. }, { "style": { "height": "36px" } }).form; //创建窗体
  6503. _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); } }
  6504. break;
  6505. case "Pythonprogram": //python编程
  6506. _formdiv = new U.UF.UI.form(
  6507. "Python编程",
  6508. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6509. "id": "Pythonprogram",
  6510. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6511. "onresize": function () { }
  6512. }, {
  6513. closecallback: function () { }
  6514. }, { "style": { "height": "36px" } }).form; //创建窗体
  6515. _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); } }
  6516. break;
  6517. case "AIprogram": //ai编程
  6518. _formdiv = new U.UF.UI.form(
  6519. "AI编程平台",
  6520. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6521. "id": "AIprogram",
  6522. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6523. "onresize": function () { }
  6524. }, {
  6525. closecallback: function () { }
  6526. }, { "style": { "height": "36px" } }).form; //创建窗体
  6527. _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); } }
  6528. break;
  6529. case "CocoPi": //CocoPi
  6530. _formdiv = new U.UF.UI.form(
  6531. "CocoPi",
  6532. $$("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" }), {
  6533. "id": "CocoPi",
  6534. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6535. "onresize": function () { }
  6536. }, {
  6537. closecallback: function () { }
  6538. }, { "style": { "height": "36px" } }).form; //创建窗体
  6539. _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); } }
  6540. break;
  6541. case "Wood": //Wood
  6542. _formdiv = new U.UF.UI.form(
  6543. "海龟编程",
  6544. $$("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/" }), {
  6545. "id": "Wood",
  6546. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6547. "onresize": function () { }
  6548. }, {
  6549. closecallback: function () { }
  6550. }, { "style": { "height": "36px" } }).form; //创建窗体
  6551. _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); } }
  6552. break;
  6553. case "car": //模拟驾驶
  6554. _formdiv = new U.UF.UI.form(
  6555. "模拟驾驶",
  6556. $$("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/" }), {
  6557. "id": "car",
  6558. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6559. "onresize": function () { }
  6560. }, {
  6561. closecallback: function () { }
  6562. }, { "style": { "height": "36px" } }).form; //创建窗体
  6563. _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); } }
  6564. break;
  6565. case "lineSearch": //路径搜索
  6566. _formdiv = new U.UF.UI.form(
  6567. "路径搜索",
  6568. $$("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/" }), {
  6569. "id": "lineSearch",
  6570. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6571. "onresize": function () { }
  6572. }, {
  6573. closecallback: function () { }
  6574. }, { "style": { "height": "36px" } }).form; //创建窗体
  6575. _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); } }
  6576. break;
  6577. case "deepLearning": //深度学习
  6578. _formdiv = new U.UF.UI.form(
  6579. "深度学习",
  6580. $$("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/#" }), {
  6581. "id": "deepLearning",
  6582. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6583. "onresize": function () { }
  6584. }, {
  6585. closecallback: function () { }
  6586. }, { "style": { "height": "36px" } }).form; //创建窗体
  6587. _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); } }
  6588. break;
  6589. case "allHistory": //深度学习
  6590. _formdiv = new U.UF.UI.form(
  6591. "全历史",
  6592. $$("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/" }), {
  6593. "id": "allHistory",
  6594. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6595. "onresize": function () { }
  6596. }, {
  6597. closecallback: function () { }
  6598. }, { "style": { "height": "36px" } }).form; //创建窗体
  6599. _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); } }
  6600. break;
  6601. case "chatPDF": //ai编程
  6602. _formdiv = new U.UF.UI.form(
  6603. "chatPDF",
  6604. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6605. "id": "chatPDF",
  6606. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6607. "onresize": function () { }
  6608. }, {
  6609. closecallback: function () { }
  6610. }, { "style": { "height": "36px" } }).form; //创建窗体
  6611. _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); } }
  6612. break;
  6613. case "resources": //国家教育
  6614. _formdiv = new U.UF.UI.form(
  6615. "国家教育",
  6616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6617. "id": "resources",
  6618. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //创建窗体
  6623. _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); } }
  6624. break;
  6625. case "codeEdit": //源码编辑
  6626. _formdiv = new U.UF.UI.form(
  6627. "源码编辑",
  6628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6629. "id": "codeEdit",
  6630. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () { }
  6634. }, { "style": { "height": "36px" } }).form; //创建窗体
  6635. _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); } }
  6636. break; //
  6637. case "MindMap": //MindMap
  6638. _formdiv = new U.UF.UI.form(
  6639. "MindMap",
  6640. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6641. "id": "MindMap",
  6642. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6643. "onresize": function () { }
  6644. }, {
  6645. closecallback: function () { }
  6646. }, { "style": { "height": "36px" } }).form; //创建窗体
  6647. _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); } }
  6648. break;
  6649. case "netWorkPanel": //netWorkPanel
  6650. _formdiv = new U.UF.UI.form(
  6651. "netWorkPanel",
  6652. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6653. "id": "netWorkPanel",
  6654. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6655. "onresize": function () { }
  6656. }, {
  6657. closecallback: function () { }
  6658. }, { "style": { "height": "36px" } }).form; //创建窗体
  6659. _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); } }
  6660. break;
  6661. case "GeoGebra": //GeoGebra
  6662. _formdiv = new U.UF.UI.form(
  6663. "GeoGebra",
  6664. $$("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" }), {
  6665. "id": "GeoGebra",
  6666. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6667. "onresize": function () { }
  6668. }, {
  6669. closecallback: function () { }
  6670. }, { "style": { "height": "36px" } }).form; //创建窗体
  6671. _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); } }
  6672. break;
  6673. case "translation": //翻译
  6674. _formdiv = new U.UF.UI.form(
  6675. "翻译",
  6676. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6677. "id": "translation",
  6678. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6679. "onresize": function () { }
  6680. }, {
  6681. closecallback: function () { }
  6682. }, { "style": { "height": "36px" } }).form; //创建窗体
  6683. _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); } }
  6684. break;
  6685. case "mohe": //魔盒
  6686. _formdiv = new U.UF.UI.form(
  6687. "魔盒识字",
  6688. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6689. "id": "mohe",
  6690. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6691. "onresize": function () { }
  6692. }, {
  6693. closecallback: function () { }
  6694. }, { "style": { "height": "36px" } }).form; //创建窗体
  6695. _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); } }
  6696. break;
  6697. case "24game": //24点
  6698. _formdiv = new U.UF.UI.form(
  6699. "24点",
  6700. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6701. "id": "24game",
  6702. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6703. "onresize": function () { }
  6704. }, {
  6705. closecallback: function () { }
  6706. }, { "style": { "height": "36px" } }).form; //创建窗体
  6707. _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); } }
  6708. break;
  6709. case "case":
  6710. _formdiv = new U.UF.UI.form(
  6711. "课程进展",
  6712. $$("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 }), {
  6713. "id": "case",
  6714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //创建窗体
  6719. _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); } }
  6720. break;
  6721. case "snf":
  6722. _formdiv = new U.UF.UI.form(
  6723. "赛诺梵",
  6724. $$("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" }), {
  6725. "id": "snf",
  6726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //创建窗体
  6731. _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); } }
  6732. break;
  6733. case "hanFamily":
  6734. _formdiv = new U.UF.UI.form(
  6735. "汉字家族",
  6736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6737. "id": "hanFamily",
  6738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6739. "onresize": function () { }
  6740. }, {
  6741. closecallback: function () { }
  6742. }, { "style": { "height": "36px" } }).form; //创建窗体
  6743. _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); } }
  6744. break;
  6745. case "hanClassics":
  6746. _formdiv = new U.UF.UI.form(
  6747. "国学经典",
  6748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6749. "id": "hanClassics",
  6750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6751. "onresize": function () { }
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //创建窗体
  6755. _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); } }
  6756. break;
  6757. case "hanTraining":
  6758. _formdiv = new U.UF.UI.form(
  6759. "笔画训练",
  6760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6761. "id": "hanTraining",
  6762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //创建窗体
  6767. _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); } }
  6768. break;
  6769. case "hanClass":
  6770. _formdiv = new U.UF.UI.form(
  6771. "书法课堂",
  6772. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6773. "id": "hanClass",
  6774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6775. "onresize": function () { }
  6776. }, {
  6777. closecallback: function () { }
  6778. }, { "style": { "height": "36px" } }).form; //创建窗体
  6779. _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); } }
  6780. break;
  6781. case "han":
  6782. _formdiv = new U.UF.UI.form(
  6783. "汉字宫",
  6784. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6785. "id": "han",
  6786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6787. "onresize": function () { }
  6788. }, {
  6789. closecallback: function () { }
  6790. }, { "style": { "height": "36px" } }).form; //创建窗体
  6791. _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); } }
  6792. break;
  6793. case "projectGM": //课程管理
  6794. _formdiv = new U.UF.UI.form(
  6795. "课程管理",
  6796. $$("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 }), {
  6797. "id": "projectGM",
  6798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6799. "onresize": function () { }
  6800. }, {
  6801. closecallback: function () { }
  6802. }, { "style": { "height": "36px" } }).form; //创建窗体
  6803. _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); } }
  6804. break;
  6805. case "studyGM": //课程中心
  6806. _formdiv = new U.UF.UI.form(
  6807. "课程中心",
  6808. $$("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
  6809. "id": "study",
  6810. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6811. "onresize": function () { }
  6812. }, {
  6813. closecallback: function () { }
  6814. }, { "style": { "height": "36px" } }).form; //创建窗体
  6815. _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); } }
  6816. break;
  6817. // studentGM
  6818. case "studentGM": //学生管理
  6819. _formdiv = new U.UF.UI.form(
  6820. "学生管理",
  6821. $$("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 }), {
  6822. "id": "studentGM",
  6823. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6824. "onresize": function () { }
  6825. }, {
  6826. closecallback: function () { }
  6827. }, { "style": { "height": "36px" } }).form; //创建窗体
  6828. _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); } }
  6829. break;
  6830. case "evaluateGM": //学生评价
  6831. _formdiv = new U.UF.UI.form(
  6832. "学生评价",
  6833. $$("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 }), {
  6834. "id": "evaluateGM",
  6835. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6836. "onresize": function () { }
  6837. }, {
  6838. closecallback: function () { }
  6839. }, { "style": { "height": "36px" } }).form; //创建窗体
  6840. _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); } }
  6841. break;
  6842. // classGM
  6843. case "classGM": //班级管理
  6844. _formdiv = new U.UF.UI.form(
  6845. "班级管理",
  6846. $$("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 }), {
  6847. "id": "classGM",
  6848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6849. "onresize": function () { }
  6850. }, {
  6851. closecallback: function () { }
  6852. }, { "style": { "height": "36px" } }).form; //创建窗体
  6853. _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); } }
  6854. break;
  6855. // dataGM
  6856. case "dataGM":
  6857. _formdiv = new U.UF.UI.form(
  6858. "我的资料",
  6859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6860. "id": "dataGM",
  6861. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, { "style": { "height": "36px" } }).form; //创建窗体
  6866. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6867. break;
  6868. // caseGM
  6869. case "caseGM": //课程进展
  6870. _formdiv = new U.UF.UI.form(
  6871. "课程进展",
  6872. $$("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 }), {
  6873. "id": "caseGM",
  6874. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //创建窗体
  6879. _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); } }
  6880. break;
  6881. // meterialGM
  6882. case "meterialGM": //素材库
  6883. _formdiv = new U.UF.UI.form(
  6884. "素材库",
  6885. $$("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 }), {
  6886. "id": "meterialGM",
  6887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //创建窗体
  6892. _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); } }
  6893. break;
  6894. // evaluateSGM
  6895. case "evaluateSGM": //我的评价
  6896. _formdiv = new U.UF.UI.form(
  6897. "我的评价",
  6898. $$("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 }), {
  6899. "id": "evaluateSGM",
  6900. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6901. "onresize": function () { }
  6902. }, {
  6903. closecallback: function () { }
  6904. }, { "style": { "height": "36px" } }).form; //创建窗体
  6905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6906. break;
  6907. case "jupyter": //jupyter
  6908. _formdiv = new U.UF.UI.form(
  6909. "jupyter",
  6910. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6911. "id": "jupyter",
  6912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6913. "onresize": function () { }
  6914. }, {
  6915. closecallback: function () { }
  6916. }, { "style": { "height": "36px" } }).form; //创建窗体
  6917. _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); } }
  6918. break;
  6919. case "number": //数字实验室
  6920. _formdiv = new U.UF.UI.form(
  6921. "数字实验室",
  6922. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6923. "id": "number",
  6924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6925. "onresize": function () { }
  6926. }, {
  6927. closecallback: function () { }
  6928. }, { "style": { "height": "36px" } }).form; //创建窗体
  6929. _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); } }
  6930. break;
  6931. case "studentCourse": //项目管理 学生
  6932. _formdiv = new U.UF.UI.form(
  6933. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6934. $$("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 }), {
  6935. "id": "studentCourse",
  6936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6937. "onresize": function () { }
  6938. }, {
  6939. closecallback: function () { }
  6940. }, { "style": { "height": "36px" } }).form; //创建窗体
  6941. _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); } }
  6942. break;
  6943. case "studentCourseS": //项目管理 老师
  6944. _formdiv = new U.UF.UI.form(
  6945. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6946. $$("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 }), {
  6947. "id": "studentCourseS",
  6948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6949. "onresize": function () { }
  6950. }, {
  6951. closecallback: function () { }
  6952. }, { "style": { "height": "36px" } }).form; //创建窗体
  6953. _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); } }
  6954. break;
  6955. case "studentIndex": //项目中心
  6956. _formdiv = new U.UF.UI.form(
  6957. "项目中心",
  6958. $$("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 }), {
  6959. "id": "studentIndex",
  6960. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6961. "onresize": function () { }
  6962. }, {
  6963. closecallback: function () { }
  6964. }, { "style": { "height": "36px" } }).form; //创建窗体
  6965. _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); } }
  6966. break;
  6967. case "CaseDesignS":
  6968. _formdiv = new U.UF.UI.form(
  6969. "项目进展",
  6970. $$("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 }), {
  6971. "id": "case",
  6972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6973. "onresize": function () { }
  6974. }, {
  6975. closecallback: function () { }
  6976. }, { "style": { "height": "36px" } }).form; //创建窗体
  6977. _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); } }
  6978. break;
  6979. case "tcStudent": //腾讯学生管理
  6980. _formdiv = new U.UF.UI.form(
  6981. "学生管理",
  6982. $$("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 }), {
  6983. "id": "tcStudent",
  6984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6985. "onresize": function () { }
  6986. }, {
  6987. closecallback: function () { }
  6988. }, { "style": { "height": "36px" } }).form; //创建窗体
  6989. _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); } }
  6990. break;
  6991. case "tcSchool": //腾讯学校管理
  6992. _formdiv = new U.UF.UI.form(
  6993. "学校管理",
  6994. $$("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 }), {
  6995. "id": "tcSchool",
  6996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6997. "onresize": function () { }
  6998. }, {
  6999. closecallback: function () { }
  7000. }, { "style": { "height": "36px" } }).form; //创建窗体
  7001. _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); } }
  7002. break;
  7003. case "tcTeacher": //腾讯学校管理
  7004. _formdiv = new U.UF.UI.form(
  7005. "教师管理",
  7006. $$("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 }), {
  7007. "id": "tcTeacher",
  7008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7009. "onresize": function () { }
  7010. }, {
  7011. closecallback: function () { }
  7012. }, { "style": { "height": "36px" } }).form; //创建窗体
  7013. _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); } }
  7014. break;
  7015. case "teacher":
  7016. _formdiv = new U.UF.UI.form(
  7017. "教师管理",
  7018. $$("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 }), {
  7019. "id": "teacher",
  7020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7021. "onresize": function () { }
  7022. }, {
  7023. closecallback: function () { }
  7024. }, { "style": { "height": "36px" } }).form; //创建窗体
  7025. _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); } }
  7026. break;
  7027. case "tcData": //腾讯我的资料
  7028. _formdiv = new U.UF.UI.form(
  7029. "我的资料",
  7030. $$("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 }), {
  7031. "id": "tcData",
  7032. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7033. "onresize": function () { }
  7034. }, {
  7035. closecallback: function () { }
  7036. }, { "style": { "height": "36px" } }).form; //创建窗体
  7037. _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); } }
  7038. break;
  7039. case "tcNotice": //腾讯消息通知
  7040. _formdiv = new U.UF.UI.form(
  7041. "消息通知",
  7042. $$("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 }), {
  7043. "id": "tcNotice",
  7044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7045. "onresize": function () { }
  7046. }, {
  7047. closecallback: function () { }
  7048. }, { "style": { "height": "36px" } }).form; //创建窗体
  7049. _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); } }
  7050. break;
  7051. case "myReport": //好友打开
  7052. _formdiv = new U.UF.UI.form(
  7053. "我的评价",
  7054. $$("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 }), {
  7055. "id": "myReport",
  7056. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7057. "onresize": function () { }
  7058. }, {
  7059. closecallback: function () { }
  7060. }, { "style": { "height": "36px" } }).form; //创建窗体
  7061. _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); } }
  7062. break;
  7063. case "learnAna": //好友打开
  7064. _formdiv = new U.UF.UI.form(
  7065. "学习分析",
  7066. $$("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 }), {
  7067. "id": "learnAna",
  7068. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7069. "onresize": function () { }
  7070. }, {
  7071. closecallback: function () { }
  7072. }, { "style": { "height": "36px" } }).form; //创建窗体
  7073. _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); } }
  7074. break;
  7075. case "AIChat": //AI共创
  7076. _formdiv = new U.UF.UI.form(
  7077. "AI共创",
  7078. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7079. "id": "AIChat",
  7080. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7081. "onresize": function () { }
  7082. }, {
  7083. istop: true,
  7084. closecallback: function () { $("#aichat_icon").remove(); },
  7085. narrowcallback: function () {
  7086. if (!$("#aichat_icon")[0]) {
  7087. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7088. }
  7089. },
  7090. }, { "style": { "height": "36px" } }).form; //创建窗体
  7091. _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); } }
  7092. break;
  7093. case "ainew": //AI共创
  7094. _formdiv = new U.UF.UI.form(
  7095. "AI协同",
  7096. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7097. "id": "ainew",
  7098. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7099. "onresize": function () { }
  7100. }, {
  7101. closecallback: function () { }
  7102. }, { "style": { "height": "36px" } }).form; //创建窗体
  7103. _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); } }
  7104. break;
  7105. case "gpt4": //gpt4
  7106. _formdiv = new U.UF.UI.form(
  7107. "AI助手",
  7108. $$("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 }), {
  7109. "id": "gpt4",
  7110. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7111. "onresize": function () { }
  7112. }, {
  7113. closecallback: function () { }
  7114. }, { "style": { "height": "36px" } }).form; //创建窗体
  7115. _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); } }
  7116. break;
  7117. case "aigpt": //gpt4
  7118. _formdiv = new U.UF.UI.form(
  7119. "AI助手+",
  7120. $$("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 }), {
  7121. "id": "aigpt",
  7122. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7123. "onresize": function () { }
  7124. }, {
  7125. closecallback: function () {
  7126. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7127. }
  7128. }, { "style": { "height": "36px" } }).form; //创建窗体
  7129. _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); } }
  7130. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7131. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7132. })
  7133. break;
  7134. case "aiKnowledge": //aiKnowledge
  7135. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7136. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7137. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7138. }
  7139. _formdiv = new U.UF.UI.form(
  7140. "知识建构",
  7141. $$("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 }), {
  7142. "id": "aiKnowledge",
  7143. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7144. "onresize": function () { }
  7145. }, {
  7146. closecallback: function () { }
  7147. }, { "style": { "height": "36px" } }).form; //创建窗体
  7148. _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); } }
  7149. break;
  7150. case "futureClass": //AI共创
  7151. _formdiv = new U.UF.UI.form(
  7152. "协同建构",
  7153. $$("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
  7154. "id": "synergyCourse",
  7155. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7156. "onresize": function () { }
  7157. }, {
  7158. closecallback: function () {
  7159. $("iframe", _formdiv)[0].contentWindow.loginout();
  7160. }
  7161. }, { "style": { "height": "36px" } }).form; //创建窗体
  7162. _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); } }
  7163. break;
  7164. case "aiagent": //ai agent
  7165. _formdiv = new U.UF.UI.form(
  7166. "AI Agent",
  7167. $$("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" }), {
  7168. "id": "AIAgent",
  7169. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7170. "onresize": function () { }
  7171. }, {
  7172. closecallback: function () { }
  7173. }, { "style": { "height": "36px" } }).form; //创建窗体
  7174. _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); } }
  7175. break;
  7176. case "dataBoard": //数据看板
  7177. _formdiv = new U.UF.UI.form(
  7178. "数据看板",
  7179. $$("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 }), {
  7180. "id": "dataBoard",
  7181. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7182. "onresize": function () { }
  7183. }, {
  7184. closecallback: function () { }
  7185. }, { "style": { "height": "36px" } }).form; //创建窗体
  7186. _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); } }
  7187. break;
  7188. case "dataBoardSies": //数据融合
  7189. _formdiv = new U.UF.UI.form(
  7190. "数据融合",
  7191. $$("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 }), {
  7192. "id": "dataBoardSies",
  7193. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7194. "onresize": function () { }
  7195. }, {
  7196. closecallback: function () { }
  7197. }, { "style": { "height": "36px" } }).form; //创建窗体
  7198. _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); } }
  7199. break;
  7200. case "dataBoardNew": //数据看板
  7201. _formdiv = new U.UF.UI.form(
  7202. "综合看板",
  7203. $$("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 }), {
  7204. "id": "dataBoardNew",
  7205. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7206. "onresize": function () { }
  7207. }, {
  7208. closecallback: function () { }
  7209. }, { "style": { "height": "36px" } }).form; //创建窗体
  7210. _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); } }
  7211. break;
  7212. case "dataBoardTest": //数据看板
  7213. _formdiv = new U.UF.UI.form(
  7214. "评测看板",
  7215. $$("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 }), {
  7216. "id": "dataBoardTest",
  7217. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7218. "onresize": function () { }
  7219. }, {
  7220. closecallback: function () { }
  7221. }, { "style": { "height": "36px" } }).form; //创建窗体
  7222. _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); } }
  7223. break;
  7224. case "AIAnalyse": //AI共创
  7225. _formdiv = new U.UF.UI.form(
  7226. "AI分析",
  7227. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7228. "id": "AIAnalyse",
  7229. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7230. "onresize": function () { }
  7231. }, {
  7232. closecallback: function () { }
  7233. }, { "style": { "height": "36px" } }).form; //创建窗体
  7234. _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); } }
  7235. break;
  7236. case "studioCourse": //AI共创
  7237. _formdiv = new U.UF.UI.form(
  7238. "工作管理",
  7239. $$("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 }), {
  7240. "id": "studioCourse",
  7241. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7242. "onresize": function () { }
  7243. }, {
  7244. closecallback: function () { }
  7245. }, { "style": { "height": "36px" } }).form; //创建窗体
  7246. _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); } }
  7247. break;
  7248. case "studioIndex": //AI共创
  7249. _formdiv = new U.UF.UI.form(
  7250. "工作中心",
  7251. $$("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 }), {
  7252. "id": "studioIndex",
  7253. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7254. "onresize": function () { }
  7255. }, {
  7256. closecallback: function () { }
  7257. }, { "style": { "height": "36px" } }).form; //创建窗体
  7258. _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); } }
  7259. break;
  7260. case "source":
  7261. _formdiv = new U.UF.UI.form(
  7262. "教学资源",
  7263. $$("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 }), {
  7264. "id": "source",
  7265. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7266. "onresize": function () { }
  7267. }, {
  7268. closecallback: function () { }
  7269. }, { "style": { "height": "36px" } }).form; //创建窗体
  7270. _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); } }
  7271. break;
  7272. case "testTeacher":
  7273. _formdiv = new U.UF.UI.form(
  7274. "智能表单",
  7275. $$("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 }), {
  7276. "id": "testTeacher",
  7277. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7278. "onresize": function () { }
  7279. }, {
  7280. closecallback: function () { }
  7281. }, { "style": { "height": "36px" } }).form; //创建窗体
  7282. _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); } }
  7283. break;
  7284. case "testStudent":
  7285. _formdiv = new U.UF.UI.form(
  7286. "教师中心",
  7287. $$("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 }), {
  7288. "id": "testStudent",
  7289. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7290. "onresize": function () { }
  7291. }, {
  7292. closecallback: function () { }
  7293. }, { "style": { "height": "36px" } }).form; //创建窗体
  7294. _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); } }
  7295. break;
  7296. case "testTeacherSies":
  7297. _formdiv = new U.UF.UI.form(
  7298. "教师管理",
  7299. $$("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 }), {
  7300. "id": "testTeacherSies",
  7301. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7302. "onresize": function () { }
  7303. }, {
  7304. closecallback: function () { }
  7305. }, { "style": { "height": "36px" } }).form; //创建窗体
  7306. _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); } }
  7307. break;
  7308. case "testStudentSies":
  7309. _formdiv = new U.UF.UI.form(
  7310. "教师中心",
  7311. $$("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 }), {
  7312. "id": "testStudentSies",
  7313. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7314. "onresize": function () { }
  7315. }, {
  7316. closecallback: function () { }
  7317. }, { "style": { "height": "36px" } }).form; //创建窗体
  7318. _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); } }
  7319. break;
  7320. case "ytpbl": //消息通知
  7321. _formdiv = new U.UF.UI.form(
  7322. "案例征集",
  7323. $$("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 }), {
  7324. "id": "ytpbl",
  7325. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7326. "onresize": function () { }
  7327. }, {
  7328. closecallback: function () { }
  7329. }, { "style": { "height": "36px" } }).form; //创建窗体
  7330. _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); } }
  7331. // 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");
  7332. break;
  7333. case "aiCourseResource": //人工智能窗体
  7334. _formdiv = new U.UF.UI.form(
  7335. false,
  7336. $$("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 }), {
  7337. "id": "aiCourseResource",
  7338. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7339. "onresize": function () { },
  7340. "isdrag": false,
  7341. }, {
  7342. closecallback: function () { }
  7343. }, { "style": { "height": "36px" } }).form; //创建窗体
  7344. _taskbar = ''
  7345. break;
  7346. case "szdjgCocooroboX": //图形化编程
  7347. _formdiv = new U.UF.UI.form(
  7348. "图形化编程",
  7349. $$("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" }), {
  7350. "id": "szdjgCocooroboX",
  7351. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7352. "onresize": function () { }
  7353. }, {
  7354. closecallback: function () { }
  7355. }, { "style": { "height": "36px" } }).form; //创建窗体
  7356. _taskbar = ''
  7357. break;
  7358. case "szdjgPython": //python编程
  7359. _formdiv = new U.UF.UI.form(
  7360. "Python编程",
  7361. $$("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" }), {
  7362. "id": "szdjgPython",
  7363. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7364. "onresize": function () { }
  7365. }, {
  7366. closecallback: function () { }
  7367. }, { "style": { "height": "36px" } }).form; //创建窗体
  7368. _taskbar = ''
  7369. break;
  7370. case "Record":
  7371. _formdiv = new U.UF.UI.form(
  7372. "观察记录",
  7373. $$("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 }), {
  7374. "id": "Record",
  7375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7376. "onresize": function () { }
  7377. }, {
  7378. closecallback: function () { }
  7379. }, { "style": { "height": "36px" } }).form; //创建窗体
  7380. _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); } }
  7381. break;
  7382. case "aigptCourse":
  7383. _formdiv = new U.UF.UI.form(
  7384. "AI智能体",
  7385. $$("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' }), {
  7386. "id": "aigptCourse",
  7387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7388. "onresize": function () { }
  7389. }, {
  7390. closecallback: function () { }
  7391. }, { "style": { "height": "36px" } }).form; //创建窗体
  7392. _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); } }
  7393. break;
  7394. case "classroomObservation":
  7395. _formdiv = new U.UF.UI.form(
  7396. "课堂观察",
  7397. $$("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 }), {
  7398. "id": "classroomObservation",
  7399. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7400. "onresize": function () { }
  7401. }, {
  7402. closecallback: function () { }
  7403. }, { "style": { "height": "36px" } }).form; //创建窗体
  7404. _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); } }
  7405. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7406. break;
  7407. case "pblCourse":
  7408. _formdiv = new U.UF.UI.form(
  7409. "学生PBL",
  7410. $$("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 }), {
  7411. "id": "pblCourse",
  7412. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7413. "onresize": function () { }
  7414. }, {
  7415. closecallback: function () { }
  7416. }, { "style": { "height": "36px" } }).form; //创建窗体
  7417. _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); } }
  7418. break;
  7419. case "appStore":
  7420. U.MD.D.addOp('','cocoflowOpen','')
  7421. _formdiv = new U.UF.UI.form(
  7422. "CocoFlow",
  7423. $$("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 }), {
  7424. "id": "appStore",
  7425. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7426. "onresize": function () { }
  7427. }, {
  7428. closecallback: function () { }
  7429. }, { "style": { "height": "36px" } }).form; //创建窗体
  7430. _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); } }
  7431. break;
  7432. case "sassPlatform":
  7433. _formdiv = new U.UF.UI.form(
  7434. "Sass通用后台管理",
  7435. $$("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 }), {
  7436. "id": "sassPlatform",
  7437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7438. "onresize": function () { }
  7439. }, {
  7440. closecallback: function () { }
  7441. }, { "style": { "height": "36px" } }).form; //创建窗体
  7442. _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); } }
  7443. break;
  7444. case "EDU":
  7445. _formdiv = new U.UF.UI.form(
  7446. "EDU",
  7447. $$("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" }), {
  7448. "id": "EDU",
  7449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7450. "onresize": function () { }
  7451. }, {
  7452. closecallback: function () { }
  7453. }, { "style": { "height": "36px" } }).form; //创建窗体
  7454. _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); } }
  7455. break;
  7456. case "knowledge":
  7457. _formdiv = new U.UF.UI.form(
  7458. "知识库",
  7459. $$("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 }), {
  7460. "id": "knowledge",
  7461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7462. "onresize": function () { }
  7463. }, {
  7464. closecallback: function () { }
  7465. }, { "style": { "height": "36px" } }).form; //创建窗体
  7466. _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); } }
  7467. break;
  7468. case "userExamine":
  7469. _formdiv = new U.UF.UI.form(
  7470. "账号申请",
  7471. $$("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" }), {
  7472. "id": "userExamine",
  7473. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7474. "onresize": function () { }
  7475. }, {
  7476. closecallback: function () { }
  7477. }, { "style": { "height": "36px" } }).form; //创建窗体
  7478. break;
  7479. case "cocoflowDeskTop": //cocoflowDeskTop
  7480. _formdiv = new U.UF.UI.form(
  7481. false,
  7482. $$("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 }), {
  7483. "id": "cocoflowDeskTop",
  7484. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7485. "onresize": function () { },
  7486. }, {
  7487. closecallback: function () { },
  7488. "isdrag": false,
  7489. }, { "style": { "height": "36px" } }).form; //创建窗体
  7490. _taskbar = ''
  7491. break;
  7492. case "liyuanLogin": //liyuanLogin
  7493. _formdiv = new U.UF.UI.form(
  7494. false,
  7495. $$("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/#/login?org=" + _org + "&oid=" + _oid }), {
  7496. "id": "liyuanLogin",
  7497. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7498. "onresize": function () { },
  7499. }, {
  7500. closecallback: function () { },
  7501. isdrag: false,
  7502. isstretching: false,
  7503. isenlarge: false,
  7504. isnarrow: false
  7505. }, { "style": { "height": "36px" } }).form; //创建窗体
  7506. _taskbar = ''
  7507. break;
  7508. case "updatePaDialog":
  7509. _formdiv = new U.UF.UI.form(
  7510. "密码修改",
  7511. $$("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 }), {
  7512. "id": "updatePaDialog",
  7513. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7514. "onresize": function () { },
  7515. }, {
  7516. closecallback: function () { },
  7517. isclose: false,
  7518. isdrag: false,
  7519. isstretching: false,
  7520. isenlarge: false,
  7521. isnarrow: false
  7522. }, { "style": { "height": "36px" } }).form; //创建窗体
  7523. break;
  7524. }
  7525. //U.MD.D.I.openClick(str);
  7526. //如果有任务栏信息
  7527. if (_taskbar) {
  7528. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7529. }
  7530. if(iframeBool){
  7531. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7532. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7533. // console.log("iframe进入");
  7534. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7535. // };
  7536. setTimeout(() => {
  7537. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7538. }, 2000);
  7539. }
  7540. }
  7541. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7542. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7543. _userinfo = US.userInfo, //登录用户信息
  7544. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7545. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7546. let iframeBool = true;
  7547. let queryString = ''
  7548. if(array && array.length){
  7549. const paramsMap = {
  7550. userid: _userid,
  7551. org: _org,
  7552. oid: _oid,
  7553. type: _type,
  7554. role: _role,
  7555. classId: _classId,
  7556. TscreenType: _TscreenType,
  7557. SscreenType: _SscreenType
  7558. };
  7559. const canshu = array
  7560. .filter(param => paramsMap[param] !== undefined)
  7561. .map(param => `${param}=${paramsMap[param]}`);
  7562. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7563. }
  7564. let _url = url + queryString
  7565. if(U.UF.UI.form.allForm[id]){
  7566. iframeBool = false
  7567. }
  7568. _formdiv = new U.UF.UI.form(
  7569. false,
  7570. $$("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 }),
  7571. {
  7572. "id": id,
  7573. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7574. "onresize": function () { },
  7575. },
  7576. {
  7577. closecallback: function () { },
  7578. isdrag: false,
  7579. isstretching: false,
  7580. isenlarge: false,
  7581. isnarrow: false
  7582. },
  7583. { "style": { "height": "36px" } },
  7584. undefined,
  7585. undefined,
  7586. dom
  7587. ).form
  7588. }
  7589. // U.MD.D.I.openClick = function(str){
  7590. // var click = '';
  7591. // switch(str){
  7592. // case 'friend':
  7593. // click = '我的好友';
  7594. // break;
  7595. // case 'domain':
  7596. // click = '域名管理';
  7597. // break;
  7598. // case 'disk':
  7599. // click = '我的云盘';
  7600. // break;
  7601. // case 'word':
  7602. // click = 'Word';
  7603. // break;
  7604. // case 'excel':
  7605. // click = 'Execl';
  7606. // break;
  7607. // case 'txt':
  7608. // click = '文本文件';
  7609. // break;
  7610. // case 'lookupFriend':
  7611. // click = '查找好友';
  7612. // break;
  7613. // case 'ftp':
  7614. // click = 'FTP';
  7615. // break;
  7616. // case 'group':
  7617. // click = '群组';
  7618. // break;
  7619. // case 'set':
  7620. // click = '我的设置';
  7621. // break;
  7622. // case 'systemSet':
  7623. // click = '系统设置';
  7624. // break;
  7625. // case 'boomYun':
  7626. // click = '互联办公';
  7627. // break;
  7628. // case 'xz':
  7629. // click = '云端下载';
  7630. // break;
  7631. // case 'client':
  7632. // click = '有思浏览器';
  7633. // break;
  7634. // case 'backEndProgramming':
  7635. // click = '在线后台编程';
  7636. // break;
  7637. // case 'frontEndProgramming':
  7638. // click = '在线前端编程';
  7639. // break;
  7640. // default: break;
  7641. // }
  7642. // if(U.MD.D.I.Ip && click){
  7643. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7644. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7645. // })
  7646. // }
  7647. // }
  7648. /**
  7649. *函数作用:ajax简易函数,使用post格式
  7650. *@param url {data} 后台地址
  7651. *@param data {data} 参数json
  7652. *@param fn {data} 回调函数
  7653. *
  7654. */
  7655. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7656. // var xhr = new XMLHttpRequest();
  7657. // xhr.open("GET",url,true);
  7658. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7659. // xhr.onreadystatechange = function(){
  7660. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7661. // fn.call(this,xhr.responseText);
  7662. // }
  7663. // };
  7664. // xhr.send();
  7665. // }
  7666. /*判断是否是内网IP*/
  7667. // U.MD.D.I.isInnerIPFn = function(str){
  7668. // var curPageUrl = str;
  7669. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7670. // curPageUrl =curPageUrl.replace(reg1,'');
  7671. // // console.log('curPageUrl-1 '+curPageUrl);
  7672. // var reg2 = /\:+/g;//替换冒号为一点
  7673. // curPageUrl =curPageUrl.replace(reg2,'.');
  7674. // // console.log('curPageUrl-2 '+curPageUrl);
  7675. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7676. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7677. // if(curPageUrl[2] != '16'){
  7678. // return ipAddress;
  7679. // }else{
  7680. // return false;
  7681. // }
  7682. // }
  7683. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7684. // //compatibility for firefox and chrome
  7685. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7686. // var pc = new myPeerConnection({
  7687. // iceServers: []
  7688. // }),
  7689. // noop = function() {},
  7690. // localIPs = {},
  7691. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7692. // key;
  7693. // function iterateIP(ip) {
  7694. // if (!localIPs[ip]) onNewIP(ip);
  7695. // localIPs[ip] = true;
  7696. // }
  7697. // //create a bogus data channel
  7698. // pc.createDataChannel("");
  7699. // // create offer and set local description
  7700. // pc.createOffer().then(function(sdp) {
  7701. // sdp.sdp.split('\n').forEach(function(line) {
  7702. // if (line.indexOf('candidate') < 0) return;
  7703. // line.match(ipRegex).forEach(iterateIP);
  7704. // });
  7705. // pc.setLocalDescription(sdp, noop, noop);
  7706. // }).catch(function(reason) {
  7707. // // An error occurred, so handle the failure to connect
  7708. // });
  7709. // //sten for candidate events
  7710. // pc.onicecandidate = function(ice) {
  7711. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7712. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7713. // };
  7714. // }
  7715. // U.MD.D.I.getUserIpBool = function(callback){
  7716. // U.MD.D.I.getUserIP(function(ip){
  7717. // alert("Got IP! :" + ip);
  7718. // });
  7719. //}
  7720. //#endregion
  7721. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7722. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7723. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7724. _userinfo = US.userInfo, //登录用户信息
  7725. _userid = US.userInfo.userid //登录用户id
  7726. let _iframe;
  7727. let _cid = cid,
  7728. _stage = stage,
  7729. _task = task,
  7730. _tool = tool;
  7731. var _jie = $$("div", {
  7732. "style": {
  7733. "position": "absolute",
  7734. "bottom": "50px",
  7735. "right": "50px",
  7736. "zIndex": "9999",
  7737. "backgroundColor": "#2268bc",
  7738. "color": "#fff",
  7739. "padding": "12px 20px",
  7740. "cursor": "pointer",
  7741. "borderRadius": "4px",
  7742. },
  7743. "innerHTML": "提交作业"
  7744. })
  7745. let aTool = ''
  7746. let _loading = document.createElement('div')
  7747. _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;"
  7748. // _loading.id = "";
  7749. let _lchild = document.createElement('div')
  7750. let _limg = document.createElement('img')
  7751. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7752. _limg.style = "width: 26px;margin-right: 10px;"
  7753. _lchild.appendChild(_limg)
  7754. let _lspan = document.createElement('span')
  7755. _lspan.innerHTML = "上传中..."
  7756. _lchild.appendChild(_lspan)
  7757. _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%);"
  7758. _loading.appendChild(_lchild)
  7759. var _box = $$('div', {
  7760. "style": {
  7761. "position": "relative",
  7762. "width": "100%",
  7763. "height": "100%",
  7764. },
  7765. })
  7766. _box.appendChild(_loading)
  7767. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7768. switch (str) {
  7769. case "whiteboard":
  7770. aTool = 1;
  7771. _iframe = $$("iframe", {
  7772. "frameborder": "no",
  7773. "border": "0",
  7774. "scrolling ": "no",
  7775. "style": {
  7776. "cssText": "border:0;width:100%;height:100%"
  7777. },
  7778. "src": "https://beta.iwb.cocorobo.cn/"
  7779. })
  7780. _box.appendChild(_iframe);
  7781. _box.appendChild(_jie);
  7782. _formdiv = new U.UF.UI.form(
  7783. "电子白板",
  7784. _box, {
  7785. "id": "whiteboard" + cid + stage + task + tool,
  7786. "style": {
  7787. "width": "90%",
  7788. "height": "90%",
  7789. "overflow": 'hidden'
  7790. },
  7791. "onresize": function () { }
  7792. }, {
  7793. closecallback: function () { }
  7794. }, {
  7795. "style": {
  7796. "height": "36px"
  7797. }
  7798. }).form; //创建窗体
  7799. _taskbar = {
  7800. "id": str + _formdiv.id,
  7801. "style": {
  7802. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7803. },
  7804. "name": "电子白板",
  7805. "forms": _formdiv,
  7806. "click": function () {
  7807. U.MD.D.I.openApplication(str, obj, info);
  7808. }
  7809. }
  7810. break;
  7811. case "mind":
  7812. aTool = 3;
  7813. _iframe = $$("iframe", {
  7814. "frameborder": "no",
  7815. "border": "0",
  7816. "scrolling ": "no",
  7817. "style": {
  7818. "cssText": "border:0;width:100%;height:100%"
  7819. },
  7820. "src": "/kityminder-editor/dist/index.html"
  7821. })
  7822. _box.appendChild(_iframe);
  7823. _box.appendChild(_jie);
  7824. _formdiv = new U.UF.UI.form(
  7825. "思维导图",
  7826. _box, { //"/jsmind/example/demo.html"
  7827. "id": "mind" + cid + stage + task + tool,
  7828. "style": {
  7829. "width": "90%",
  7830. "height": "90%",
  7831. "overflow": 'hidden'
  7832. },
  7833. "onresize": function () { }
  7834. }, {
  7835. closecallback: function () { }
  7836. }, {
  7837. "style": {
  7838. "height": "36px"
  7839. }
  7840. }).form; //创建窗体
  7841. _taskbar = {
  7842. "id": str + _formdiv.id,
  7843. "style": {
  7844. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7845. },
  7846. "name": "思维导图",
  7847. "forms": _formdiv,
  7848. "click": function () {
  7849. U.MD.D.I.openApplication(str, obj, info);
  7850. }
  7851. }
  7852. break;
  7853. case "MindMap":
  7854. aTool = 3;
  7855. _iframe = $$("iframe", {
  7856. "frameborder": "no",
  7857. "border": "0",
  7858. "scrolling ": "no",
  7859. "style": {
  7860. "cssText": "border:0;width:100%;height:100%"
  7861. },
  7862. "src": "//cloud.cocorobo.cn/mind/"
  7863. })
  7864. _box.appendChild(_iframe);
  7865. _box.appendChild(_jie);
  7866. _formdiv = new U.UF.UI.form(
  7867. "思维导图",
  7868. _box, { //"/jsmind/example/demo.html"
  7869. "id": "mind" + cid + stage + task + tool,
  7870. "style": {
  7871. "width": "90%",
  7872. "height": "90%",
  7873. "overflow": 'hidden'
  7874. },
  7875. "onresize": function () { }
  7876. }, {
  7877. closecallback: function () { }
  7878. }, {
  7879. "style": {
  7880. "height": "36px"
  7881. }
  7882. }).form; //创建窗体
  7883. _taskbar = {
  7884. "id": str + _formdiv.id,
  7885. "style": {
  7886. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7887. },
  7888. "name": "思维导图",
  7889. "forms": _formdiv,
  7890. "click": function () {
  7891. U.MD.D.I.openApplication(str, obj, info);
  7892. }
  7893. }
  7894. break;
  7895. case "doc":
  7896. aTool = 6;
  7897. _iframe = $$("iframe", {
  7898. "frameborder": "no",
  7899. "border": "0",
  7900. "scrolling ": "no",
  7901. "style": {
  7902. "cssText": "border:0;width:100%;height:100%"
  7903. },
  7904. "src": "/Office/Word/WordEditArea.htm"
  7905. })
  7906. _box.appendChild(_iframe);
  7907. _box.appendChild(_jie);
  7908. _formdiv = new U.UF.UI.form(
  7909. "协同文档",
  7910. _box, {
  7911. "id": "doc" + cid + stage + task + tool,
  7912. "style": {
  7913. "width": "90%",
  7914. "height": "90%",
  7915. "overflow": 'hidden'
  7916. },
  7917. "onresize": function () { }
  7918. }, {
  7919. closecallback: function () { }
  7920. }, {
  7921. "style": {
  7922. "height": "36px"
  7923. }
  7924. }).form; //创建窗体
  7925. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7926. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7927. })
  7928. _taskbar = {
  7929. "id": str + _formdiv.id,
  7930. "style": {
  7931. "backgroundImage": "url(/img/icon/doc.png)"
  7932. },
  7933. "name": "协同文档",
  7934. "forms": _formdiv,
  7935. "click": function () {
  7936. U.MD.D.I.openApplication(str, obj, info);
  7937. }
  7938. }
  7939. break;
  7940. case "mindNetwork": //好友打开
  7941. aTool = 7;
  7942. _iframe = $$("iframe", {
  7943. "webkitallowfullscreen": "",
  7944. "mozallowfullscreen": "",
  7945. "allowfullscreen": "",
  7946. "frameborder": "no",
  7947. "border": "0",
  7948. "scrolling ": "no",
  7949. "style": {
  7950. "cssText": "border:0; width:100%; height:100%;"
  7951. },
  7952. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7953. })
  7954. _box.appendChild(_iframe);
  7955. _box.appendChild(_jie);
  7956. _formdiv = new U.UF.UI.form(
  7957. "思维网格",
  7958. _box, {
  7959. "id": "mindNetwork" + cid + stage + task + tool,
  7960. "style": {
  7961. "width": "90%",
  7962. "height": "90%",
  7963. "overflow": 'hidden'
  7964. },
  7965. "onresize": function () { }
  7966. }, {
  7967. closecallback: function () { }
  7968. }, {
  7969. "style": {
  7970. "height": "36px"
  7971. }
  7972. }).form; //创建窗体
  7973. _taskbar = {
  7974. "id": str + _formdiv.id,
  7975. "style": {
  7976. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7977. },
  7978. "name": "思维网格",
  7979. "forms": _formdiv,
  7980. "click": function () {
  7981. U.MD.D.I.openApplication(str, obj, info);
  7982. }
  7983. }
  7984. break;
  7985. case "courseDesign":
  7986. _iframe = $$("iframe", {
  7987. "webkitallowfullscreen": "",
  7988. "mozallowfullscreen": "",
  7989. "allowfullscreen": "",
  7990. "frameborder": "no",
  7991. "border": "0",
  7992. "scrolling ": "no",
  7993. "style": {
  7994. "cssText": "border:0; width:100%; height:100%;"
  7995. },
  7996. "src": "/course-design-vue"
  7997. })
  7998. _box.appendChild(_iframe);
  7999. _box.appendChild(_jie);
  8000. _formdiv = new U.UF.UI.form(
  8001. "项目设计",
  8002. _box, {
  8003. "id": "courseDesign" + cid + stage + task + tool,
  8004. "style": {
  8005. "width": "90%",
  8006. "height": "90%",
  8007. "overflow": 'hidden'
  8008. },
  8009. "onresize": function () { }
  8010. }, {
  8011. closecallback: function () { }
  8012. }, {
  8013. "style": {
  8014. "height": "36px"
  8015. }
  8016. }).form; //创建窗体
  8017. _taskbar = {
  8018. "id": str + _formdiv.id,
  8019. "style": {
  8020. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8021. },
  8022. "name": "项目设计",
  8023. "forms": _formdiv,
  8024. "click": function () {
  8025. U.MD.D.I.openApplication(str, obj, info);
  8026. }
  8027. }
  8028. break;
  8029. }
  8030. const script1 = document.createElement("script");
  8031. script1.type = "text/javascript";
  8032. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8033. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8034. const script2 = document.createElement("script");
  8035. script2.type = "text/javascript";
  8036. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8037. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8038. const script3 = document.createElement("script");
  8039. script3.type = "text/javascript";
  8040. script3.charset = "UTF-8";
  8041. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8042. const script4 = document.createElement("script");
  8043. script4.type = "text/javascript";
  8044. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8045. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8046. if (_iframe) {
  8047. if (str == 'doc') {
  8048. _iframe = _formdiv.querySelector('iframe')
  8049. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8050. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8051. _iframe.contentWindow.document.body.appendChild(script1);
  8052. _iframe.contentWindow.document.body.appendChild(script2);
  8053. // _iframe.contentWindow.document.body.appendChild(script3);
  8054. _iframe.contentWindow.document.body.appendChild(script4);
  8055. })
  8056. if (onloadListener) {
  8057. _iframe.contentDocument.location.reload()
  8058. } else {
  8059. _iframe.contentDocument.location.reload()
  8060. }
  8061. } else if (str == 'courseDesign') {
  8062. U.UF.DL.iframeLoad(_iframe, function () {
  8063. // _iframe.contentWindow.U.MD.O.W.load();
  8064. // _iframe.contentWindow.document.body.appendChild(script1);
  8065. _iframe.contentWindow.document.body.appendChild(script2);
  8066. _iframe.contentWindow.document.body.appendChild(script4);
  8067. })
  8068. } else if (str == 'mind') {
  8069. _iframe = _formdiv.querySelector('iframe')
  8070. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8071. //
  8072. _iframe.contentWindow.document.body.appendChild(script1);
  8073. _iframe.contentWindow.document.body.appendChild(script2);
  8074. _iframe.contentWindow.document.body.appendChild(script4);
  8075. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8076. })
  8077. if (onloadListener) {
  8078. _iframe.contentDocument.location.reload()
  8079. } else {
  8080. _iframe.contentDocument.location.reload()
  8081. }
  8082. } else if (str == 'whiteboard') {
  8083. _iframe = _formdiv.querySelector('iframe')
  8084. let onloadListener = _iframe.onload = () => {
  8085. _iframe.contentWindow.document.body.appendChild(script1);
  8086. _iframe.contentWindow.document.body.appendChild(script2);
  8087. _iframe.contentWindow.document.body.appendChild(script4);
  8088. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8089. };
  8090. // if (onloadListener) {
  8091. // try {
  8092. // _iframe.src += "?cocorobo="+new Date().getTime()
  8093. // _iframe.contentWindow.document.location.reload()
  8094. // } catch (error) {
  8095. // }
  8096. // } else {
  8097. // _iframe.contentDocument.location.reload()
  8098. // }
  8099. } else {
  8100. _iframe.onload = () => {
  8101. _iframe.contentWindow.document.body.appendChild(script1);
  8102. _iframe.contentWindow.document.body.appendChild(script2);
  8103. // _iframe.contentWindow.document.body.appendChild(script3);
  8104. _iframe.contentWindow.document.body.appendChild(script4);
  8105. };
  8106. }
  8107. _jie.onclick = async () => {
  8108. let text = ''
  8109. if (aTool == 1) {
  8110. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8111. } else if (aTool == 6) {
  8112. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8113. } else if (aTool == 3) {
  8114. text = await U.MD.D.I.getEditorContent(_iframe);
  8115. }
  8116. _loading.style.display = 'flex'
  8117. console.log(_loading);
  8118. var _ajs = _iframe.contentWindow.document.createElement("script");
  8119. _ajs.type = "text/javascript";
  8120. _ajs.innerHTML =
  8121. // 'console.log(' + _loading + ');\n' +
  8122. 'var _js = document.createElement("script");\n' +
  8123. '_js.type="text/javascript";\n' +
  8124. '_js.charset="UTF-8";\n' +
  8125. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8126. "_js.onload = function(){\n" +
  8127. ' var a = document.getElementsByTagName("img")\n' +
  8128. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8129. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8130. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8131. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8132. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8133. "beforeUpload_shishi(file," +
  8134. "'" +
  8135. _userid +
  8136. "'" +
  8137. ", " +
  8138. "'" +
  8139. _cid +
  8140. "'" +
  8141. ", " +
  8142. "'" +
  8143. _stage +
  8144. "'" +
  8145. ", " +
  8146. "'" +
  8147. _task +
  8148. "'" +
  8149. ", " +
  8150. "'" +
  8151. _tool +
  8152. "'" +
  8153. ", " +
  8154. "'" +
  8155. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8156. "'" +
  8157. ", " +
  8158. "'" +
  8159. aTool +
  8160. "'" +
  8161. ", " +
  8162. "`" +
  8163. text +
  8164. "`" +
  8165. ")\n" +
  8166. " });\n" +
  8167. "}\n" +
  8168. "document.head.appendChild(_js);\n";
  8169. _iframe.contentWindow.document.head.appendChild(_ajs);
  8170. }
  8171. }
  8172. //U.MD.D.I.openClick(str);
  8173. //如果有任务栏信息
  8174. // if (_taskbar) {
  8175. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8176. // }
  8177. }
  8178. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8179. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8180. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8181. _userinfo = US.userInfo, //登录用户信息
  8182. _userid = US.userInfo.userid //登录用户id
  8183. let _iframe;
  8184. let _cid = cid,
  8185. _stage = stage,
  8186. _task = task,
  8187. _tool = tool;
  8188. var _jie = $$("div", {
  8189. "style": {
  8190. "position": "absolute",
  8191. "bottom": "50px",
  8192. "right": "50px",
  8193. "zIndex": "9999",
  8194. "backgroundColor": "#2268bc",
  8195. "color": "#fff",
  8196. "padding": "12px 20px",
  8197. "cursor": "pointer",
  8198. "borderRadius": "4px",
  8199. },
  8200. "innerHTML": "提交作业"
  8201. })
  8202. let aTool = ''
  8203. let _loading = document.createElement('div')
  8204. _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;"
  8205. // _loading.id = "";
  8206. let _lchild = document.createElement('div')
  8207. let _limg = document.createElement('img')
  8208. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8209. _limg.style = "width: 26px;margin-right: 10px;"
  8210. _lchild.appendChild(_limg)
  8211. let _lspan = document.createElement('span')
  8212. _lspan.innerHTML = "上传中..."
  8213. _lchild.appendChild(_lspan)
  8214. _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%);"
  8215. _loading.appendChild(_lchild)
  8216. let _box = $$('div', {
  8217. "style": {
  8218. "position": "relative",
  8219. "width": "100%",
  8220. "height": "100%",
  8221. },
  8222. })
  8223. _box.appendChild(_loading)
  8224. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8225. switch (str) {
  8226. case "whiteboard":
  8227. aTool = 1;
  8228. _iframe = $$("iframe", {
  8229. "frameborder": "no",
  8230. "border": "0",
  8231. "scrolling ": "no",
  8232. "style": {
  8233. "cssText": "border:0;width:100%;height:100%"
  8234. },
  8235. "src": "https://beta.iwb.cocorobo.cn/"
  8236. })
  8237. _box.appendChild(_iframe);
  8238. _box.appendChild(_jie);
  8239. _formdiv = new U.UF.UI.form(
  8240. "电子白板",
  8241. _box, {
  8242. "id": "whiteboard" + cid + stage + task + tool,
  8243. "style": {
  8244. "width": "90%",
  8245. "height": "90%",
  8246. "overflow": 'hidden'
  8247. },
  8248. "onresize": function () { }
  8249. }, {
  8250. closecallback: function () { }
  8251. }, {
  8252. "style": {
  8253. "height": "36px"
  8254. }
  8255. }).form; //创建窗体
  8256. _taskbar = {
  8257. "id": str + _formdiv.id,
  8258. "style": {
  8259. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8260. },
  8261. "name": "电子白板",
  8262. "forms": _formdiv,
  8263. "click": function () {
  8264. U.MD.D.I.openApplication(str, obj, info);
  8265. }
  8266. }
  8267. break;
  8268. case "mind":
  8269. aTool = 3;
  8270. _iframe = $$("iframe", {
  8271. "frameborder": "no",
  8272. "border": "0",
  8273. "scrolling ": "no",
  8274. "style": {
  8275. "cssText": "border:0;width:100%;height:100%"
  8276. },
  8277. "src": "/kityminder-editor/dist/index.html"
  8278. })
  8279. _box.appendChild(_iframe);
  8280. _box.appendChild(_jie);
  8281. _formdiv = new U.UF.UI.form(
  8282. "思维导图",
  8283. _box, { //"/jsmind/example/demo.html"
  8284. "id": "mind" + cid + stage + task + tool,
  8285. "style": {
  8286. "width": "90%",
  8287. "height": "90%",
  8288. "overflow": 'hidden'
  8289. },
  8290. "onresize": function () { }
  8291. }, {
  8292. closecallback: function () { }
  8293. }, {
  8294. "style": {
  8295. "height": "36px"
  8296. }
  8297. }).form; //创建窗体
  8298. _taskbar = {
  8299. "id": str + _formdiv.id,
  8300. "style": {
  8301. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8302. },
  8303. "name": "思维导图",
  8304. "forms": _formdiv,
  8305. "click": function () {
  8306. U.MD.D.I.openApplication(str, obj, info);
  8307. }
  8308. }
  8309. break;
  8310. case "MindMap":
  8311. aTool = 3;
  8312. _iframe = $$("iframe", {
  8313. "frameborder": "no",
  8314. "border": "0",
  8315. "scrolling ": "no",
  8316. "style": {
  8317. "cssText": "border:0;width:100%;height:100%"
  8318. },
  8319. "src": "//cloud.cocorobo.cn/mind/"
  8320. })
  8321. _box.appendChild(_iframe);
  8322. _box.appendChild(_jie);
  8323. _formdiv = new U.UF.UI.form(
  8324. "思维导图",
  8325. _box, { //"/jsmind/example/demo.html"
  8326. "id": "mind" + cid + stage + task + tool,
  8327. "style": {
  8328. "width": "90%",
  8329. "height": "90%",
  8330. "overflow": 'hidden'
  8331. },
  8332. "onresize": function () { }
  8333. }, {
  8334. closecallback: function () { }
  8335. }, {
  8336. "style": {
  8337. "height": "36px"
  8338. }
  8339. }).form; //创建窗体
  8340. _taskbar = {
  8341. "id": str + _formdiv.id,
  8342. "style": {
  8343. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8344. },
  8345. "name": "思维导图",
  8346. "forms": _formdiv,
  8347. "click": function () {
  8348. U.MD.D.I.openApplication(str, obj, info);
  8349. }
  8350. }
  8351. break;
  8352. case "doc":
  8353. aTool = 6;
  8354. _iframe = $$("iframe", {
  8355. "frameborder": "no",
  8356. "border": "0",
  8357. "scrolling ": "no",
  8358. "style": {
  8359. "cssText": "border:0;width:100%;height:100%"
  8360. },
  8361. "src": "/Office/Word/WordEditArea.htm"
  8362. })
  8363. _box.appendChild(_iframe);
  8364. _box.appendChild(_jie);
  8365. _formdiv = new U.UF.UI.form(
  8366. "协同文档",
  8367. _box, {
  8368. "id": "doc" + cid + stage + task + tool,
  8369. "style": {
  8370. "width": "90%",
  8371. "height": "90%",
  8372. "overflow": 'hidden'
  8373. },
  8374. "onresize": function () { }
  8375. }, {
  8376. closecallback: function () { }
  8377. }, {
  8378. "style": {
  8379. "height": "36px"
  8380. }
  8381. }).form; //创建窗体
  8382. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8383. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8384. })
  8385. _taskbar = {
  8386. "id": str + _formdiv.id,
  8387. "style": {
  8388. "backgroundImage": "url(/img/icon/doc.png)"
  8389. },
  8390. "name": "协同文档",
  8391. "forms": _formdiv,
  8392. "click": function () {
  8393. U.MD.D.I.openApplication(str, obj, info);
  8394. }
  8395. }
  8396. break;
  8397. case "mindNetwork": //好友打开
  8398. aTool = 7;
  8399. _iframe = $$("iframe", {
  8400. "webkitallowfullscreen": "",
  8401. "mozallowfullscreen": "",
  8402. "allowfullscreen": "",
  8403. "frameborder": "no",
  8404. "border": "0",
  8405. "scrolling ": "no",
  8406. "style": {
  8407. "cssText": "border:0; width:100%; height:100%;"
  8408. },
  8409. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8410. })
  8411. _box.appendChild(_iframe);
  8412. _box.appendChild(_jie);
  8413. _formdiv = new U.UF.UI.form(
  8414. "思维网格",
  8415. _box, {
  8416. "id": "mindNetwork" + cid + stage + task + tool,
  8417. "style": {
  8418. "width": "90%",
  8419. "height": "90%",
  8420. "overflow": 'hidden'
  8421. },
  8422. "onresize": function () { }
  8423. }, {
  8424. closecallback: function () { }
  8425. }, {
  8426. "style": {
  8427. "height": "36px"
  8428. }
  8429. }).form; //创建窗体
  8430. _taskbar = {
  8431. "id": str + _formdiv.id,
  8432. "style": {
  8433. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8434. },
  8435. "name": "思维网格",
  8436. "forms": _formdiv,
  8437. "click": function () {
  8438. U.MD.D.I.openApplication(str, obj, info);
  8439. }
  8440. }
  8441. break;
  8442. case "courseDesign":
  8443. _iframe = $$("iframe", {
  8444. "webkitallowfullscreen": "",
  8445. "mozallowfullscreen": "",
  8446. "allowfullscreen": "",
  8447. "frameborder": "no",
  8448. "border": "0",
  8449. "scrolling ": "no",
  8450. "style": {
  8451. "cssText": "border:0; width:100%; height:100%;"
  8452. },
  8453. "src": "/course-design-vue"
  8454. })
  8455. _box.appendChild(_iframe);
  8456. _box.appendChild(_jie);
  8457. _formdiv = new U.UF.UI.form(
  8458. "项目设计",
  8459. _box, {
  8460. "id": "courseDesign" + cid + stage + task + tool,
  8461. "style": {
  8462. "width": "90%",
  8463. "height": "90%",
  8464. "overflow": 'hidden'
  8465. },
  8466. "onresize": function () { }
  8467. }, {
  8468. closecallback: function () { }
  8469. }, {
  8470. "style": {
  8471. "height": "36px"
  8472. }
  8473. }).form; //创建窗体
  8474. _taskbar = {
  8475. "id": str + _formdiv.id,
  8476. "style": {
  8477. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8478. },
  8479. "name": "项目设计",
  8480. "forms": _formdiv,
  8481. "click": function () {
  8482. U.MD.D.I.openApplication(str, obj, info);
  8483. }
  8484. }
  8485. break;
  8486. }
  8487. const script1 = document.createElement("script");
  8488. script1.type = "text/javascript";
  8489. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8490. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8491. const script2 = document.createElement("script");
  8492. script2.type = "text/javascript";
  8493. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8494. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8495. const script3 = document.createElement("script");
  8496. script3.type = "text/javascript";
  8497. script3.charset = "UTF-8";
  8498. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8499. const script4 = document.createElement("script");
  8500. script4.type = "text/javascript";
  8501. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8502. script4.src = window.origin + "/js/Common/jietu2E.js";
  8503. if (_iframe) {
  8504. if (str == 'doc') {
  8505. _iframe = _formdiv.querySelector('iframe')
  8506. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8507. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8508. _iframe.contentWindow.document.body.appendChild(script1);
  8509. _iframe.contentWindow.document.body.appendChild(script2);
  8510. // _iframe.contentWindow.document.body.appendChild(script3);
  8511. _iframe.contentWindow.document.body.appendChild(script4);
  8512. })
  8513. if (onloadListener) {
  8514. _iframe.contentDocument.location.reload()
  8515. } else {
  8516. _iframe.contentDocument.location.reload()
  8517. }
  8518. } else if (str == 'courseDesign') {
  8519. U.UF.DL.iframeLoad(_iframe, function () {
  8520. // _iframe.contentWindow.U.MD.O.W.load();
  8521. // _iframe.contentWindow.document.body.appendChild(script1);
  8522. _iframe.contentWindow.document.body.appendChild(script2);
  8523. _iframe.contentWindow.document.body.appendChild(script4);
  8524. })
  8525. } else if (str == 'mind') {
  8526. _iframe = _formdiv.querySelector('iframe')
  8527. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8528. //
  8529. _iframe.contentWindow.document.body.appendChild(script1);
  8530. _iframe.contentWindow.document.body.appendChild(script2);
  8531. _iframe.contentWindow.document.body.appendChild(script4);
  8532. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8533. })
  8534. if (onloadListener) {
  8535. _iframe.contentDocument.location.reload()
  8536. } else {
  8537. _iframe.contentDocument.location.reload()
  8538. }
  8539. } else if (str == 'whiteboard') {
  8540. _iframe = _formdiv.querySelector('iframe')
  8541. let onloadListener = _iframe.onload = () => {
  8542. _iframe.contentWindow.document.body.appendChild(script1);
  8543. _iframe.contentWindow.document.body.appendChild(script2);
  8544. _iframe.contentWindow.document.body.appendChild(script4);
  8545. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8546. };
  8547. // if (onloadListener) {
  8548. // try {
  8549. // _iframe.src += "?cocorobo="+new Date().getTime()
  8550. // _iframe.contentWindow.document.location.reload()
  8551. // } catch (error) {
  8552. // }
  8553. // } else {
  8554. // _iframe.contentDocument.location.reload()
  8555. // }
  8556. } else {
  8557. _iframe.onload = () => {
  8558. _iframe.contentWindow.document.body.appendChild(script1);
  8559. _iframe.contentWindow.document.body.appendChild(script2);
  8560. // _iframe.contentWindow.document.body.appendChild(script3);
  8561. _iframe.contentWindow.document.body.appendChild(script4);
  8562. };
  8563. }
  8564. _jie.onclick = async () => {
  8565. let text = ''
  8566. if (aTool == 1) {
  8567. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8568. } else if (aTool == 6) {
  8569. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8570. } else if (aTool == 3) {
  8571. text = await U.MD.D.I.getEditorContent(_iframe);
  8572. }
  8573. _loading.style.display = 'flex'
  8574. console.log(_loading);
  8575. var _ajs = _iframe.contentWindow.document.createElement("script");
  8576. _ajs.type = "text/javascript";
  8577. _ajs.innerHTML =
  8578. // 'console.log(' + _loading + ');\n' +
  8579. 'var _js = document.createElement("script");\n' +
  8580. '_js.type="text/javascript";\n' +
  8581. '_js.charset="UTF-8";\n' +
  8582. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8583. "_js.onload = function(){\n" +
  8584. ' var a = document.getElementsByTagName("img")\n' +
  8585. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8586. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8587. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8588. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8589. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8590. "beforeUpload_shishi(file," +
  8591. "'" +
  8592. _userid +
  8593. "'" +
  8594. ", " +
  8595. "'" +
  8596. _cid +
  8597. "'" +
  8598. ", " +
  8599. "'" +
  8600. _stage +
  8601. "'" +
  8602. ", " +
  8603. "'" +
  8604. _task +
  8605. "'" +
  8606. ", " +
  8607. "'" +
  8608. _tool +
  8609. "'" +
  8610. ", " +
  8611. "'" +
  8612. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8613. "'" +
  8614. ", " +
  8615. "'" +
  8616. aTool +
  8617. "'" +
  8618. ", " +
  8619. "`" +
  8620. text +
  8621. "`" +
  8622. ")\n" +
  8623. " });\n" +
  8624. "}\n" +
  8625. "document.head.appendChild(_js);\n";
  8626. _iframe.contentWindow.document.head.appendChild(_ajs);
  8627. }
  8628. }
  8629. //U.MD.D.I.openClick(str);
  8630. //如果有任务栏信息
  8631. // if (_taskbar) {
  8632. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8633. // }
  8634. }
  8635. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8636. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8637. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8638. _userid = student.userid, //登录用户id
  8639. _username = student.student //用户名字
  8640. let _iframe;
  8641. let _cid = cid,
  8642. _stage = stage,
  8643. _task = task,
  8644. _tool = tool;
  8645. var _jie = $$("div", {
  8646. "style": {
  8647. "position": "absolute",
  8648. "bottom": "50px",
  8649. "right": "50px",
  8650. "zIndex": "9999",
  8651. "backgroundColor": "#2268bc",
  8652. "color": "#fff",
  8653. "padding": "12px 20px",
  8654. "cursor": "pointer",
  8655. "borderRadius": "4px",
  8656. },
  8657. "innerHTML": "提交作业"
  8658. })
  8659. let aTool = ''
  8660. let _loading = document.createElement('div')
  8661. _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;"
  8662. // _loading.id = "";
  8663. let _lchild = document.createElement('div')
  8664. let _limg = document.createElement('img')
  8665. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8666. _limg.style = "width: 26px;margin-right: 10px;"
  8667. _lchild.appendChild(_limg)
  8668. let _lspan = document.createElement('span')
  8669. _lspan.innerHTML = "上传中..."
  8670. _lchild.appendChild(_lspan)
  8671. _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%);"
  8672. _loading.appendChild(_lchild)
  8673. var _box = $$('div', {
  8674. "style": {
  8675. "position": "relative",
  8676. "width": "100%",
  8677. "height": "100%",
  8678. },
  8679. })
  8680. _box.appendChild(_loading)
  8681. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8682. switch (str) {
  8683. case "whiteboard":
  8684. aTool = 1;
  8685. _iframe = $$("iframe", {
  8686. "frameborder": "no",
  8687. "border": "0",
  8688. "scrolling ": "no",
  8689. "style": {
  8690. "cssText": "border:0;width:100%;height:100%"
  8691. },
  8692. "src": "https://beta.iwb.cocorobo.cn/"
  8693. })
  8694. _box.appendChild(_iframe);
  8695. _box.appendChild(_jie);
  8696. _formdiv = new U.UF.UI.form(
  8697. "电子白板-" + _username,
  8698. _box, {
  8699. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8700. "style": {
  8701. "width": "90%",
  8702. "height": "90%",
  8703. "overflow": 'hidden'
  8704. },
  8705. "onresize": function () { }
  8706. }, {
  8707. closecallback: function () { }
  8708. }, {
  8709. "style": {
  8710. "height": "36px"
  8711. }
  8712. }).form; //创建窗体
  8713. _taskbar = {
  8714. "id": str + _formdiv.id,
  8715. "style": {
  8716. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8717. },
  8718. "name": "电子白板",
  8719. "forms": _formdiv,
  8720. "click": function () {
  8721. U.MD.D.I.openApplication(str, obj, info);
  8722. }
  8723. }
  8724. break;
  8725. case "mind":
  8726. aTool = 3;
  8727. _iframe = $$("iframe", {
  8728. "frameborder": "no",
  8729. "border": "0",
  8730. "scrolling ": "no",
  8731. "style": {
  8732. "cssText": "border:0;width:100%;height:100%"
  8733. },
  8734. "src": "/kityminder-editor/dist/index.html"
  8735. })
  8736. _box.appendChild(_iframe);
  8737. _box.appendChild(_jie);
  8738. _formdiv = new U.UF.UI.form(
  8739. "思维导图-" + _username,
  8740. _box, { //"/jsmind/example/demo.html"
  8741. "id": "mind" + cid + stage + task + tool + _userid,
  8742. "style": {
  8743. "width": "90%",
  8744. "height": "90%",
  8745. "overflow": 'hidden'
  8746. },
  8747. "onresize": function () { }
  8748. }, {
  8749. closecallback: function () { }
  8750. }, {
  8751. "style": {
  8752. "height": "36px"
  8753. }
  8754. }).form; //创建窗体
  8755. _taskbar = {
  8756. "id": str + _formdiv.id,
  8757. "style": {
  8758. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8759. },
  8760. "name": "思维导图",
  8761. "forms": _formdiv,
  8762. "click": function () {
  8763. U.MD.D.I.openApplication(str, obj, info);
  8764. }
  8765. }
  8766. break;
  8767. case "MindMap":
  8768. aTool = 3;
  8769. _iframe = $$("iframe", {
  8770. "frameborder": "no",
  8771. "border": "0",
  8772. "scrolling ": "no",
  8773. "style": {
  8774. "cssText": "border:0;width:100%;height:100%"
  8775. },
  8776. "src": "//cloud.cocorobo.cn/mind/"
  8777. })
  8778. _box.appendChild(_iframe);
  8779. _box.appendChild(_jie);
  8780. _formdiv = new U.UF.UI.form(
  8781. "思维导图-" + _username,
  8782. _box, { //"/jsmind/example/demo.html"
  8783. "id": "mind" + cid + stage + task + tool + _userid,
  8784. "style": {
  8785. "width": "90%",
  8786. "height": "90%",
  8787. "overflow": 'hidden'
  8788. },
  8789. "onresize": function () { }
  8790. }, {
  8791. closecallback: function () { }
  8792. }, {
  8793. "style": {
  8794. "height": "36px"
  8795. }
  8796. }).form; //创建窗体
  8797. _taskbar = {
  8798. "id": str + _formdiv.id,
  8799. "style": {
  8800. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8801. },
  8802. "name": "思维导图",
  8803. "forms": _formdiv,
  8804. "click": function () {
  8805. U.MD.D.I.openApplication(str, obj, info);
  8806. }
  8807. }
  8808. break;
  8809. case "doc":
  8810. aTool = 6;
  8811. _iframe = $$("iframe", {
  8812. "frameborder": "no",
  8813. "border": "0",
  8814. "scrolling ": "no",
  8815. "style": {
  8816. "cssText": "border:0;width:100%;height:100%"
  8817. },
  8818. "src": "/Office/Word/WordEditArea.htm"
  8819. })
  8820. _box.appendChild(_iframe);
  8821. _box.appendChild(_jie);
  8822. _formdiv = new U.UF.UI.form(
  8823. "协同文档-" + _username,
  8824. _box, {
  8825. "id": "doc" + cid + stage + task + tool + _userid,
  8826. "style": {
  8827. "width": "90%",
  8828. "height": "90%",
  8829. "overflow": 'hidden'
  8830. },
  8831. "onresize": function () { }
  8832. }, {
  8833. closecallback: function () { }
  8834. }, {
  8835. "style": {
  8836. "height": "36px"
  8837. }
  8838. }).form; //创建窗体
  8839. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8840. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8841. })
  8842. _taskbar = {
  8843. "id": str + _formdiv.id,
  8844. "style": {
  8845. "backgroundImage": "url(/img/icon/doc.png)"
  8846. },
  8847. "name": "协同文档",
  8848. "forms": _formdiv,
  8849. "click": function () {
  8850. U.MD.D.I.openApplication(str, obj, info);
  8851. }
  8852. }
  8853. break;
  8854. case "mindNetwork": //好友打开
  8855. aTool = 7;
  8856. _iframe = $$("iframe", {
  8857. "webkitallowfullscreen": "",
  8858. "mozallowfullscreen": "",
  8859. "allowfullscreen": "",
  8860. "frameborder": "no",
  8861. "border": "0",
  8862. "scrolling ": "no",
  8863. "style": {
  8864. "cssText": "border:0; width:100%; height:100%;"
  8865. },
  8866. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8867. })
  8868. _box.appendChild(_iframe);
  8869. _box.appendChild(_jie);
  8870. _formdiv = new U.UF.UI.form(
  8871. "思维网格-" + _username,
  8872. _box, {
  8873. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8874. "style": {
  8875. "width": "90%",
  8876. "height": "90%",
  8877. "overflow": 'hidden'
  8878. },
  8879. "onresize": function () { }
  8880. }, {
  8881. closecallback: function () { }
  8882. }, {
  8883. "style": {
  8884. "height": "36px"
  8885. }
  8886. }).form; //创建窗体
  8887. _taskbar = {
  8888. "id": str + _formdiv.id,
  8889. "style": {
  8890. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8891. },
  8892. "name": "思维网格",
  8893. "forms": _formdiv,
  8894. "click": function () {
  8895. U.MD.D.I.openApplication(str, obj, info);
  8896. }
  8897. }
  8898. break;
  8899. case "courseDesign":
  8900. _iframe = $$("iframe", {
  8901. "webkitallowfullscreen": "",
  8902. "mozallowfullscreen": "",
  8903. "allowfullscreen": "",
  8904. "frameborder": "no",
  8905. "border": "0",
  8906. "scrolling ": "no",
  8907. "style": {
  8908. "cssText": "border:0; width:100%; height:100%;"
  8909. },
  8910. "src": "/course-design-vue"
  8911. })
  8912. _box.appendChild(_iframe);
  8913. _box.appendChild(_jie);
  8914. _formdiv = new U.UF.UI.form(
  8915. "项目设计-" + _username,
  8916. _box, {
  8917. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8918. "style": {
  8919. "width": "90%",
  8920. "height": "90%",
  8921. "overflow": 'hidden'
  8922. },
  8923. "onresize": function () { }
  8924. }, {
  8925. closecallback: function () { }
  8926. }, {
  8927. "style": {
  8928. "height": "36px"
  8929. }
  8930. }).form; //创建窗体
  8931. _taskbar = {
  8932. "id": str + _formdiv.id,
  8933. "style": {
  8934. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8935. },
  8936. "name": "项目设计",
  8937. "forms": _formdiv,
  8938. "click": function () {
  8939. U.MD.D.I.openApplication(str, obj, info);
  8940. }
  8941. }
  8942. break;
  8943. }
  8944. const script1 = document.createElement("script");
  8945. script1.type = "text/javascript";
  8946. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8947. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8948. const script2 = document.createElement("script");
  8949. script2.type = "text/javascript";
  8950. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8951. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8952. const script3 = document.createElement("script");
  8953. script3.type = "text/javascript";
  8954. script3.charset = "UTF-8";
  8955. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8956. const script4 = document.createElement("script");
  8957. script4.type = "text/javascript";
  8958. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8959. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8960. if (_iframe) {
  8961. if (str == 'doc') {
  8962. _iframe = _formdiv.querySelector('iframe')
  8963. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8964. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8965. _iframe.contentWindow.document.body.appendChild(script1);
  8966. _iframe.contentWindow.document.body.appendChild(script2);
  8967. // _iframe.contentWindow.document.body.appendChild(script3);
  8968. _iframe.contentWindow.document.body.appendChild(script4);
  8969. })
  8970. if (onloadListener) {
  8971. _iframe.contentDocument.location.reload()
  8972. } else {
  8973. _iframe.contentDocument.location.reload()
  8974. }
  8975. } else if (str == 'courseDesign') {
  8976. U.UF.DL.iframeLoad(_iframe, function () {
  8977. // _iframe.contentWindow.U.MD.O.W.load();
  8978. // _iframe.contentWindow.document.body.appendChild(script1);
  8979. _iframe.contentWindow.document.body.appendChild(script2);
  8980. _iframe.contentWindow.document.body.appendChild(script4);
  8981. })
  8982. } else if (str == 'mind') {
  8983. _iframe = _formdiv.querySelector('iframe')
  8984. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8985. //
  8986. _iframe.contentWindow.document.body.appendChild(script1);
  8987. _iframe.contentWindow.document.body.appendChild(script2);
  8988. _iframe.contentWindow.document.body.appendChild(script4);
  8989. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8990. })
  8991. if (onloadListener) {
  8992. _iframe.contentDocument.location.reload()
  8993. } else {
  8994. _iframe.contentDocument.location.reload()
  8995. }
  8996. } else if (str == 'whiteboard') {
  8997. _iframe = _formdiv.querySelector('iframe')
  8998. let onloadListener = _iframe.onload = () => {
  8999. _iframe.contentWindow.document.body.appendChild(script1);
  9000. _iframe.contentWindow.document.body.appendChild(script2);
  9001. _iframe.contentWindow.document.body.appendChild(script4);
  9002. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9003. };
  9004. // if (onloadListener) {
  9005. // try {
  9006. // _iframe.src += "?cocorobo="+new Date().getTime()
  9007. // _iframe.contentWindow.document.location.reload()
  9008. // } catch (error) {
  9009. // }
  9010. // } else {
  9011. // _iframe.contentDocument.location.reload()
  9012. // }
  9013. } else {
  9014. _iframe.onload = () => {
  9015. _iframe.contentWindow.document.body.appendChild(script1);
  9016. _iframe.contentWindow.document.body.appendChild(script2);
  9017. // _iframe.contentWindow.document.body.appendChild(script3);
  9018. _iframe.contentWindow.document.body.appendChild(script4);
  9019. };
  9020. }
  9021. _jie.onclick = async () => {
  9022. let text = ''
  9023. if (aTool == 1) {
  9024. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9025. } else if (aTool == 6) {
  9026. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9027. } else if (aTool == 3) {
  9028. text = await U.MD.D.I.getEditorContent(_iframe);
  9029. }
  9030. _loading.style.display = 'flex'
  9031. console.log(_loading);
  9032. var _ajs = _iframe.contentWindow.document.createElement("script");
  9033. _ajs.type = "text/javascript";
  9034. _ajs.innerHTML =
  9035. // 'console.log(' + _loading + ');\n' +
  9036. 'var _js = document.createElement("script");\n' +
  9037. '_js.type="text/javascript";\n' +
  9038. '_js.charset="UTF-8";\n' +
  9039. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9040. "_js.onload = function(){\n" +
  9041. ' var a = document.getElementsByTagName("img")\n' +
  9042. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9043. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9044. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9045. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9046. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9047. "beforeUpload_shishi(file," +
  9048. "'" +
  9049. _userid +
  9050. "'" +
  9051. ", " +
  9052. "'" +
  9053. _cid +
  9054. "'" +
  9055. ", " +
  9056. "'" +
  9057. _stage +
  9058. "'" +
  9059. ", " +
  9060. "'" +
  9061. _task +
  9062. "'" +
  9063. ", " +
  9064. "'" +
  9065. _tool +
  9066. "'" +
  9067. ", " +
  9068. "'" +
  9069. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9070. "'" +
  9071. ", " +
  9072. "'" +
  9073. aTool +
  9074. "'" +
  9075. ", " +
  9076. "`" +
  9077. text +
  9078. "`" +
  9079. ")\n" +
  9080. " });\n" +
  9081. "}\n" +
  9082. "document.head.appendChild(_js);\n";
  9083. _iframe.contentWindow.document.head.appendChild(_ajs);
  9084. }
  9085. }
  9086. }
  9087. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9088. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9089. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9090. _userid = student.userid, //登录用户id
  9091. _username = student.student //用户名字
  9092. let _iframe;
  9093. let _cid = cid,
  9094. _stage = stage,
  9095. _task = task,
  9096. _tool = tool;
  9097. var _jie = $$("div", {
  9098. "style": {
  9099. "position": "absolute",
  9100. "bottom": "50px",
  9101. "right": "50px",
  9102. "zIndex": "9999",
  9103. "backgroundColor": "#2268bc",
  9104. "color": "#fff",
  9105. "padding": "12px 20px",
  9106. "cursor": "pointer",
  9107. "borderRadius": "4px",
  9108. },
  9109. "innerHTML": "提交作业"
  9110. })
  9111. let aTool = ''
  9112. let _loading = document.createElement('div')
  9113. _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;"
  9114. // _loading.id = "";
  9115. let _lchild = document.createElement('div')
  9116. let _limg = document.createElement('img')
  9117. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9118. _limg.style = "width: 26px;margin-right: 10px;"
  9119. _lchild.appendChild(_limg)
  9120. let _lspan = document.createElement('span')
  9121. _lspan.innerHTML = "上传中..."
  9122. _lchild.appendChild(_lspan)
  9123. _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%);"
  9124. _loading.appendChild(_lchild)
  9125. var _box = $$('div', {
  9126. "style": {
  9127. "position": "relative",
  9128. "width": "100%",
  9129. "height": "100%",
  9130. },
  9131. })
  9132. _box.appendChild(_loading)
  9133. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9134. switch (str) {
  9135. case "whiteboard":
  9136. aTool = 1;
  9137. _iframe = $$("iframe", {
  9138. "frameborder": "no",
  9139. "border": "0",
  9140. "scrolling ": "no",
  9141. "style": {
  9142. "cssText": "border:0;width:100%;height:100%"
  9143. },
  9144. "src": "https://beta.iwb.cocorobo.cn/"
  9145. })
  9146. _box.appendChild(_iframe);
  9147. _box.appendChild(_jie);
  9148. _formdiv = new U.UF.UI.form(
  9149. "电子白板-" + _username,
  9150. _box, {
  9151. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9152. "style": {
  9153. "width": "90%",
  9154. "height": "90%",
  9155. "overflow": 'hidden'
  9156. },
  9157. "onresize": function () { }
  9158. }, {
  9159. closecallback: function () { }
  9160. }, {
  9161. "style": {
  9162. "height": "36px"
  9163. }
  9164. }).form; //创建窗体
  9165. _taskbar = {
  9166. "id": str + _formdiv.id,
  9167. "style": {
  9168. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9169. },
  9170. "name": "电子白板",
  9171. "forms": _formdiv,
  9172. "click": function () {
  9173. U.MD.D.I.openApplication(str, obj, info);
  9174. }
  9175. }
  9176. break;
  9177. case "mind":
  9178. aTool = 3;
  9179. _iframe = $$("iframe", {
  9180. "frameborder": "no",
  9181. "border": "0",
  9182. "scrolling ": "no",
  9183. "style": {
  9184. "cssText": "border:0;width:100%;height:100%"
  9185. },
  9186. "src": "/kityminder-editor/dist/index.html"
  9187. })
  9188. _box.appendChild(_iframe);
  9189. _box.appendChild(_jie);
  9190. _formdiv = new U.UF.UI.form(
  9191. "思维导图-" + _username,
  9192. _box, { //"/jsmind/example/demo.html"
  9193. "id": "mind" + cid + stage + task + tool + _userid,
  9194. "style": {
  9195. "width": "90%",
  9196. "height": "90%",
  9197. "overflow": 'hidden'
  9198. },
  9199. "onresize": function () { }
  9200. }, {
  9201. closecallback: function () { }
  9202. }, {
  9203. "style": {
  9204. "height": "36px"
  9205. }
  9206. }).form; //创建窗体
  9207. _taskbar = {
  9208. "id": str + _formdiv.id,
  9209. "style": {
  9210. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9211. },
  9212. "name": "思维导图",
  9213. "forms": _formdiv,
  9214. "click": function () {
  9215. U.MD.D.I.openApplication(str, obj, info);
  9216. }
  9217. }
  9218. break;
  9219. case "MindMap":
  9220. aTool = 3;
  9221. _iframe = $$("iframe", {
  9222. "frameborder": "no",
  9223. "border": "0",
  9224. "scrolling ": "no",
  9225. "style": {
  9226. "cssText": "border:0;width:100%;height:100%"
  9227. },
  9228. "src": "//cloud.cocorobo.cn/mind/"
  9229. })
  9230. _box.appendChild(_iframe);
  9231. _box.appendChild(_jie);
  9232. _formdiv = new U.UF.UI.form(
  9233. "思维导图-" + _username,
  9234. _box, { //"/jsmind/example/demo.html"
  9235. "id": "mind" + cid + stage + task + tool + _userid,
  9236. "style": {
  9237. "width": "90%",
  9238. "height": "90%",
  9239. "overflow": 'hidden'
  9240. },
  9241. "onresize": function () { }
  9242. }, {
  9243. closecallback: function () { }
  9244. }, {
  9245. "style": {
  9246. "height": "36px"
  9247. }
  9248. }).form; //创建窗体
  9249. _taskbar = {
  9250. "id": str + _formdiv.id,
  9251. "style": {
  9252. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9253. },
  9254. "name": "思维导图",
  9255. "forms": _formdiv,
  9256. "click": function () {
  9257. U.MD.D.I.openApplication(str, obj, info);
  9258. }
  9259. }
  9260. break;
  9261. case "doc":
  9262. aTool = 6;
  9263. _iframe = $$("iframe", {
  9264. "frameborder": "no",
  9265. "border": "0",
  9266. "scrolling ": "no",
  9267. "style": {
  9268. "cssText": "border:0;width:100%;height:100%"
  9269. },
  9270. "src": "/Office/Word/WordEditArea.htm"
  9271. })
  9272. _box.appendChild(_iframe);
  9273. _box.appendChild(_jie);
  9274. _formdiv = new U.UF.UI.form(
  9275. "协同文档-" + _username,
  9276. _box, {
  9277. "id": "doc" + cid + stage + task + tool + _userid,
  9278. "style": {
  9279. "width": "90%",
  9280. "height": "90%",
  9281. "overflow": 'hidden'
  9282. },
  9283. "onresize": function () { }
  9284. }, {
  9285. closecallback: function () { }
  9286. }, {
  9287. "style": {
  9288. "height": "36px"
  9289. }
  9290. }).form; //创建窗体
  9291. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9292. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9293. })
  9294. _taskbar = {
  9295. "id": str + _formdiv.id,
  9296. "style": {
  9297. "backgroundImage": "url(/img/icon/doc.png)"
  9298. },
  9299. "name": "协同文档",
  9300. "forms": _formdiv,
  9301. "click": function () {
  9302. U.MD.D.I.openApplication(str, obj, info);
  9303. }
  9304. }
  9305. break;
  9306. case "mindNetwork": //好友打开
  9307. aTool = 7;
  9308. _iframe = $$("iframe", {
  9309. "webkitallowfullscreen": "",
  9310. "mozallowfullscreen": "",
  9311. "allowfullscreen": "",
  9312. "frameborder": "no",
  9313. "border": "0",
  9314. "scrolling ": "no",
  9315. "style": {
  9316. "cssText": "border:0; width:100%; height:100%;"
  9317. },
  9318. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9319. })
  9320. _box.appendChild(_iframe);
  9321. _box.appendChild(_jie);
  9322. _formdiv = new U.UF.UI.form(
  9323. "思维网格-" + _username,
  9324. _box, {
  9325. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9326. "style": {
  9327. "width": "90%",
  9328. "height": "90%",
  9329. "overflow": 'hidden'
  9330. },
  9331. "onresize": function () { }
  9332. }, {
  9333. closecallback: function () { }
  9334. }, {
  9335. "style": {
  9336. "height": "36px"
  9337. }
  9338. }).form; //创建窗体
  9339. _taskbar = {
  9340. "id": str + _formdiv.id,
  9341. "style": {
  9342. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9343. },
  9344. "name": "思维网格",
  9345. "forms": _formdiv,
  9346. "click": function () {
  9347. U.MD.D.I.openApplication(str, obj, info);
  9348. }
  9349. }
  9350. break;
  9351. case "courseDesign":
  9352. _iframe = $$("iframe", {
  9353. "webkitallowfullscreen": "",
  9354. "mozallowfullscreen": "",
  9355. "allowfullscreen": "",
  9356. "frameborder": "no",
  9357. "border": "0",
  9358. "scrolling ": "no",
  9359. "style": {
  9360. "cssText": "border:0; width:100%; height:100%;"
  9361. },
  9362. "src": "/course-design-vue"
  9363. })
  9364. _box.appendChild(_iframe);
  9365. _box.appendChild(_jie);
  9366. _formdiv = new U.UF.UI.form(
  9367. "项目设计-" + _username,
  9368. _box, {
  9369. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9370. "style": {
  9371. "width": "90%",
  9372. "height": "90%",
  9373. "overflow": 'hidden'
  9374. },
  9375. "onresize": function () { }
  9376. }, {
  9377. closecallback: function () { }
  9378. }, {
  9379. "style": {
  9380. "height": "36px"
  9381. }
  9382. }).form; //创建窗体
  9383. _taskbar = {
  9384. "id": str + _formdiv.id,
  9385. "style": {
  9386. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9387. },
  9388. "name": "项目设计",
  9389. "forms": _formdiv,
  9390. "click": function () {
  9391. U.MD.D.I.openApplication(str, obj, info);
  9392. }
  9393. }
  9394. break;
  9395. }
  9396. const script1 = document.createElement("script");
  9397. script1.type = "text/javascript";
  9398. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9399. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9400. const script2 = document.createElement("script");
  9401. script2.type = "text/javascript";
  9402. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9403. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9404. const script3 = document.createElement("script");
  9405. script3.type = "text/javascript";
  9406. script3.charset = "UTF-8";
  9407. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9408. const script4 = document.createElement("script");
  9409. script4.type = "text/javascript";
  9410. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9411. script4.src = window.origin + "/js/Common/jietu2E.js";
  9412. if (_iframe) {
  9413. if (str == 'doc') {
  9414. _iframe = _formdiv.querySelector('iframe')
  9415. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9416. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9417. _iframe.contentWindow.document.body.appendChild(script1);
  9418. _iframe.contentWindow.document.body.appendChild(script2);
  9419. // _iframe.contentWindow.document.body.appendChild(script3);
  9420. _iframe.contentWindow.document.body.appendChild(script4);
  9421. })
  9422. if (onloadListener) {
  9423. _iframe.contentDocument.location.reload()
  9424. } else {
  9425. _iframe.contentDocument.location.reload()
  9426. }
  9427. } else if (str == 'courseDesign') {
  9428. U.UF.DL.iframeLoad(_iframe, function () {
  9429. // _iframe.contentWindow.U.MD.O.W.load();
  9430. // _iframe.contentWindow.document.body.appendChild(script1);
  9431. _iframe.contentWindow.document.body.appendChild(script2);
  9432. _iframe.contentWindow.document.body.appendChild(script4);
  9433. })
  9434. } else if (str == 'mind') {
  9435. _iframe = _formdiv.querySelector('iframe')
  9436. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9437. //
  9438. _iframe.contentWindow.document.body.appendChild(script1);
  9439. _iframe.contentWindow.document.body.appendChild(script2);
  9440. _iframe.contentWindow.document.body.appendChild(script4);
  9441. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9442. })
  9443. if (onloadListener) {
  9444. _iframe.contentDocument.location.reload()
  9445. } else {
  9446. _iframe.contentDocument.location.reload()
  9447. }
  9448. } else if (str == 'whiteboard') {
  9449. _iframe = _formdiv.querySelector('iframe')
  9450. let onloadListener = _iframe.onload = () => {
  9451. _iframe.contentWindow.document.body.appendChild(script1);
  9452. _iframe.contentWindow.document.body.appendChild(script2);
  9453. _iframe.contentWindow.document.body.appendChild(script4);
  9454. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9455. };
  9456. // if (onloadListener) {
  9457. // try {
  9458. // _iframe.src += "?cocorobo="+new Date().getTime()
  9459. // _iframe.contentWindow.document.location.reload()
  9460. // } catch (error) {
  9461. // }
  9462. // } else {
  9463. // _iframe.contentDocument.location.reload()
  9464. // }
  9465. } else {
  9466. _iframe.onload = () => {
  9467. _iframe.contentWindow.document.body.appendChild(script1);
  9468. _iframe.contentWindow.document.body.appendChild(script2);
  9469. // _iframe.contentWindow.document.body.appendChild(script3);
  9470. _iframe.contentWindow.document.body.appendChild(script4);
  9471. };
  9472. }
  9473. _jie.onclick = async () => {
  9474. let text = ''
  9475. if (aTool == 1) {
  9476. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9477. } else if (aTool == 6) {
  9478. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9479. } else if (aTool == 3) {
  9480. text = await U.MD.D.I.getEditorContent(_iframe);
  9481. }
  9482. _loading.style.display = 'flex'
  9483. console.log(_loading);
  9484. var _ajs = _iframe.contentWindow.document.createElement("script");
  9485. _ajs.type = "text/javascript";
  9486. _ajs.innerHTML =
  9487. // 'console.log(' + _loading + ');\n' +
  9488. 'var _js = document.createElement("script");\n' +
  9489. '_js.type="text/javascript";\n' +
  9490. '_js.charset="UTF-8";\n' +
  9491. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9492. "_js.onload = function(){\n" +
  9493. ' var a = document.getElementsByTagName("img")\n' +
  9494. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9495. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9496. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9497. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9498. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9499. "beforeUpload_shishi(file," +
  9500. "'" +
  9501. _userid +
  9502. "'" +
  9503. ", " +
  9504. "'" +
  9505. _cid +
  9506. "'" +
  9507. ", " +
  9508. "'" +
  9509. _stage +
  9510. "'" +
  9511. ", " +
  9512. "'" +
  9513. _task +
  9514. "'" +
  9515. ", " +
  9516. "'" +
  9517. _tool +
  9518. "'" +
  9519. ", " +
  9520. "'" +
  9521. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9522. "'" +
  9523. ", " +
  9524. "'" +
  9525. aTool +
  9526. "'" +
  9527. ", " +
  9528. "`" +
  9529. text +
  9530. "`" +
  9531. ")\n" +
  9532. " });\n" +
  9533. "}\n" +
  9534. "document.head.appendChild(_js);\n";
  9535. _iframe.contentWindow.document.head.appendChild(_ajs);
  9536. }
  9537. }
  9538. }
  9539. U.MD.D.I.getEditorContent = function (iframe) {
  9540. return new Promise((resolve, reject) => {
  9541. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9542. console.log(content);
  9543. resolve(content)
  9544. });
  9545. });
  9546. }
  9547. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9548. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9549. // if (res.value[0].length > 0) {
  9550. // // resolve(res.value[0][0].text);
  9551. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9552. // $(fileInput).val('');
  9553. // });
  9554. // }
  9555. // }, [], { "type": "GET", "withCredentials": true });
  9556. var xmlhttp;
  9557. var Mac, Sn, DeviceId
  9558. if (window.XMLHttpRequest) {
  9559. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9560. xmlhttp = new XMLHttpRequest();
  9561. } else {
  9562. // IE6, IE5 浏览器执行代码
  9563. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9564. }
  9565. xmlhttp.onreadystatechange = function () {
  9566. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9567. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9568. // resolve(res.value[0][0].text);
  9569. if (type == '2') {
  9570. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9571. } else if (type == '3') {
  9572. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9573. }
  9574. } else {
  9575. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9576. }
  9577. }
  9578. }
  9579. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9580. xmlhttp.send();
  9581. }
  9582. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9583. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9584. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9585. _userinfo = US.userInfo, //登录用户信息
  9586. _userid = US.userInfo.userid //登录用户id
  9587. let _iframe;
  9588. let _cid = cid,
  9589. _stage = stage,
  9590. _task = task,
  9591. _tool = tool;
  9592. var _jie = $$("div", {
  9593. "style": {
  9594. "position": "absolute",
  9595. "bottom": "50px",
  9596. "right": "50px",
  9597. "zIndex": "9999",
  9598. "backgroundColor": "#2268bc",
  9599. "color": "#fff",
  9600. "padding": "12px 20px",
  9601. "cursor": "pointer",
  9602. "borderRadius": "4px",
  9603. },
  9604. "innerHTML": "确认并提交"
  9605. })
  9606. let aTool = ''
  9607. let _loading = document.createElement('div')
  9608. _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;"
  9609. // _loading.id = "";
  9610. let _lchild = document.createElement('div')
  9611. let _limg = document.createElement('img')
  9612. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9613. _limg.style = "width: 26px;margin-right: 10px;"
  9614. _lchild.appendChild(_limg)
  9615. let _lspan = document.createElement('span')
  9616. _lspan.innerHTML = "上传中..."
  9617. _lchild.appendChild(_lspan)
  9618. _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%);"
  9619. _loading.appendChild(_lchild)
  9620. var _box = $$('div', {
  9621. "style": {
  9622. "position": "relative",
  9623. "width": "100%",
  9624. "height": "100%",
  9625. },
  9626. })
  9627. _box.appendChild(_loading)
  9628. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9629. switch (str) {
  9630. case "whiteboard":
  9631. aTool = 1;
  9632. _iframe = $$("iframe", {
  9633. "frameborder": "no",
  9634. "border": "0",
  9635. "scrolling ": "no",
  9636. "style": {
  9637. "cssText": "border:0;width:100%;height:100%"
  9638. },
  9639. "src": "https://beta.iwb.cocorobo.cn/"
  9640. })
  9641. _box.appendChild(_iframe);
  9642. _box.appendChild(_jie);
  9643. _formdiv = new U.UF.UI.form(
  9644. "电子白板",
  9645. _box, {
  9646. "id": "whiteboards" + cid + stage + task + tool,
  9647. "style": {
  9648. "width": "90%",
  9649. "height": "90%",
  9650. "overflow": 'hidden'
  9651. },
  9652. "onresize": function () { }
  9653. }, {
  9654. closecallback: function () { }
  9655. }, {
  9656. "style": {
  9657. "height": "36px"
  9658. }
  9659. }).form; //创建窗体
  9660. _taskbar = {
  9661. "id": str + _formdiv.id,
  9662. "style": {
  9663. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9664. },
  9665. "name": "电子白板",
  9666. "forms": _formdiv,
  9667. "click": function () {
  9668. U.MD.D.I.openApplication(str, obj, info);
  9669. }
  9670. }
  9671. break;
  9672. case "mind":
  9673. aTool = 3;
  9674. _iframe = $$("iframe", {
  9675. "frameborder": "no",
  9676. "border": "0",
  9677. "scrolling ": "no",
  9678. "style": {
  9679. "cssText": "border:0;width:100%;height:100%"
  9680. },
  9681. "src": "/kityminder-editor/dist/index.html"
  9682. });
  9683. _box.appendChild(_iframe);
  9684. _box.appendChild(_jie);
  9685. _formdiv = new U.UF.UI.form(
  9686. "思维导图",
  9687. _box, { //"/jsmind/example/demo.html"
  9688. "id": "minds" + cid + stage + task + tool,
  9689. "style": {
  9690. "width": "90%",
  9691. "height": "90%",
  9692. "overflow": 'hidden'
  9693. },
  9694. "onresize": function () { }
  9695. }, {
  9696. closecallback: function () { }
  9697. }, {
  9698. "style": {
  9699. "height": "36px"
  9700. }
  9701. }).form; //创建窗体
  9702. _taskbar = {
  9703. "id": str + _formdiv.id,
  9704. "style": {
  9705. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9706. },
  9707. "name": "思维导图",
  9708. "forms": _formdiv,
  9709. "click": function () {
  9710. U.MD.D.I.openApplication(str, obj, info);
  9711. }
  9712. }
  9713. break;
  9714. case "doc":
  9715. aTool = 6;
  9716. _iframe = $$("iframe", {
  9717. "frameborder": "no",
  9718. "border": "0",
  9719. "scrolling ": "no",
  9720. "style": {
  9721. "cssText": "border:0;width:100%;height:100%"
  9722. },
  9723. "src": "/Office/Word/WordEditArea.htm"
  9724. })
  9725. _box.appendChild(_iframe);
  9726. _box.appendChild(_jie);
  9727. _formdiv = new U.UF.UI.form(
  9728. "协同文档",
  9729. _box, {
  9730. "id": "docs" + cid + stage + task + tool,
  9731. "style": {
  9732. "width": "90%",
  9733. "height": "90%",
  9734. "overflow": 'hidden'
  9735. },
  9736. "onresize": function () { }
  9737. }, {
  9738. closecallback: function () { }
  9739. }, {
  9740. "style": {
  9741. "height": "36px"
  9742. }
  9743. }).form; //创建窗体
  9744. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9745. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9746. })
  9747. _taskbar = {
  9748. "id": str + _formdiv.id,
  9749. "style": {
  9750. "backgroundImage": "url(/img/icon/doc.png)"
  9751. },
  9752. "name": "协同文档",
  9753. "forms": _formdiv,
  9754. "click": function () {
  9755. U.MD.D.I.openApplication(str, obj, info);
  9756. }
  9757. }
  9758. break;
  9759. }
  9760. const script1 = document.createElement("script");
  9761. script1.type = "text/javascript";
  9762. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9763. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9764. const script2 = document.createElement("script");
  9765. script2.type = "text/javascript";
  9766. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9767. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9768. const script3 = document.createElement("script");
  9769. script3.type = "text/javascript";
  9770. script3.charset = "UTF-8";
  9771. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9772. const script4 = document.createElement("script");
  9773. script4.type = "text/javascript";
  9774. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9775. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9776. if (_iframe) {
  9777. if (str == 'doc') {
  9778. _iframe = _formdiv.querySelector('iframe')
  9779. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9780. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9781. _iframe.contentWindow.document.body.appendChild(script1);
  9782. _iframe.contentWindow.document.body.appendChild(script2);
  9783. // _iframe.contentWindow.document.body.appendChild(script3);
  9784. _iframe.contentWindow.document.body.appendChild(script4);
  9785. })
  9786. if (onloadListener) {
  9787. _iframe.contentDocument.location.reload()
  9788. } else {
  9789. _iframe.contentDocument.location.reload()
  9790. }
  9791. } else if (str == 'mind') {
  9792. _iframe = _formdiv.querySelector('iframe')
  9793. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9794. _iframe.contentWindow.document.body.appendChild(script1);
  9795. _iframe.contentWindow.document.body.appendChild(script2);
  9796. _iframe.contentWindow.document.body.appendChild(script4);
  9797. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9798. })
  9799. if (onloadListener) {
  9800. _iframe.contentDocument.location.reload()
  9801. } else {
  9802. _iframe.contentDocument.location.reload()
  9803. }
  9804. } else {
  9805. _iframe.onload = () => {
  9806. _iframe.contentWindow.document.body.appendChild(script1);
  9807. _iframe.contentWindow.document.body.appendChild(script2);
  9808. // _iframe.contentWindow.document.body.appendChild(script3);
  9809. _iframe.contentWindow.document.body.appendChild(script4);
  9810. };
  9811. }
  9812. _jie.onclick = async () => {
  9813. let text = ''
  9814. if (aTool == 6) {
  9815. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9816. } else if (aTool == 3) {
  9817. text = await U.MD.D.I.getEditorContent(_iframe);
  9818. }
  9819. _loading.style.display = 'flex'
  9820. console.log(_loading);
  9821. var _ajs = _iframe.contentWindow.document.createElement("script");
  9822. _ajs.type = "text/javascript";
  9823. _ajs.innerHTML =
  9824. // 'console.log(' + _loading + ');\n' +
  9825. 'var _js = document.createElement("script");\n' +
  9826. '_js.type="text/javascript";\n' +
  9827. '_js.charset="UTF-8";\n' +
  9828. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9829. "_js.onload = function(){\n" +
  9830. ' var a = document.getElementsByTagName("img")\n' +
  9831. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9832. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9833. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9834. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9835. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9836. "beforeUpload_shishi(file," +
  9837. "'" +
  9838. _userid +
  9839. "'" +
  9840. ", " +
  9841. "'" +
  9842. _cid +
  9843. "'" +
  9844. ", " +
  9845. "'" +
  9846. _stage +
  9847. "'" +
  9848. ", " +
  9849. "'" +
  9850. _task +
  9851. "'" +
  9852. ", " +
  9853. "'" +
  9854. _tool +
  9855. "'" +
  9856. ", " +
  9857. "'" +
  9858. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9859. "'" +
  9860. ", " +
  9861. "'" +
  9862. aTool +
  9863. "'" +
  9864. ", " +
  9865. "`" +
  9866. text +
  9867. "`" +
  9868. ")\n" +
  9869. " });\n" +
  9870. "}\n" +
  9871. "document.head.appendChild(_js);\n";
  9872. _iframe.contentWindow.document.head.appendChild(_ajs);
  9873. }
  9874. }
  9875. //U.MD.D.I.openClick(str);
  9876. //如果有任务栏信息
  9877. // if (_taskbar) {
  9878. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9879. // }
  9880. }
  9881. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9882. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9883. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9884. _userinfo = US.userInfo, //登录用户信息
  9885. _userid = US.userInfo.userid //登录用户id
  9886. let _iframe;
  9887. let _cid = cid,
  9888. _stage = stage,
  9889. _task = task,
  9890. _tool = tool;
  9891. var _jie = $$("div", {
  9892. "style": {
  9893. "position": "absolute",
  9894. "bottom": "50px",
  9895. "right": "50px",
  9896. "zIndex": "9999",
  9897. "backgroundColor": "#2268bc",
  9898. "color": "#fff",
  9899. "padding": "12px 20px",
  9900. "cursor": "pointer",
  9901. "borderRadius": "4px",
  9902. },
  9903. "innerHTML": "确认并提交"
  9904. })
  9905. let aTool = ''
  9906. let _loading = document.createElement('div')
  9907. _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;"
  9908. // _loading.id = "";
  9909. let _lchild = document.createElement('div')
  9910. let _limg = document.createElement('img')
  9911. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9912. _limg.style = "width: 26px;margin-right: 10px;"
  9913. _lchild.appendChild(_limg)
  9914. let _lspan = document.createElement('span')
  9915. _lspan.innerHTML = "上传中..."
  9916. _lchild.appendChild(_lspan)
  9917. _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%);"
  9918. _loading.appendChild(_lchild)
  9919. var _box = $$('div', {
  9920. "style": {
  9921. "position": "relative",
  9922. "width": "100%",
  9923. "height": "100%",
  9924. },
  9925. })
  9926. _box.appendChild(_loading)
  9927. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9928. switch (str) {
  9929. case "whiteboard":
  9930. aTool = 1;
  9931. _iframe = $$("iframe", {
  9932. "frameborder": "no",
  9933. "border": "0",
  9934. "scrolling ": "no",
  9935. "style": {
  9936. "cssText": "border:0;width:100%;height:100%"
  9937. },
  9938. "src": "https://beta.iwb.cocorobo.cn/"
  9939. })
  9940. _box.appendChild(_iframe);
  9941. _box.appendChild(_jie);
  9942. _formdiv = new U.UF.UI.form(
  9943. "电子白板",
  9944. _box, {
  9945. "id": "whiteboards" + cid + stage + task + tool,
  9946. "style": {
  9947. "width": "90%",
  9948. "height": "90%",
  9949. "overflow": 'hidden'
  9950. },
  9951. "onresize": function () { }
  9952. }, {
  9953. closecallback: function () { }
  9954. }, {
  9955. "style": {
  9956. "height": "36px"
  9957. }
  9958. }).form; //创建窗体
  9959. _taskbar = {
  9960. "id": str + _formdiv.id,
  9961. "style": {
  9962. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9963. },
  9964. "name": "电子白板",
  9965. "forms": _formdiv,
  9966. "click": function () {
  9967. U.MD.D.I.openApplication(str, obj, info);
  9968. }
  9969. }
  9970. break;
  9971. case "mind":
  9972. aTool = 3;
  9973. _iframe = $$("iframe", {
  9974. "frameborder": "no",
  9975. "border": "0",
  9976. "scrolling ": "no",
  9977. "style": {
  9978. "cssText": "border:0;width:100%;height:100%"
  9979. },
  9980. "src": "/kityminder-editor/dist/index.html"
  9981. });
  9982. _box.appendChild(_iframe);
  9983. _box.appendChild(_jie);
  9984. _formdiv = new U.UF.UI.form(
  9985. "思维导图",
  9986. _box, { //"/jsmind/example/demo.html"
  9987. "id": "minds" + cid + stage + task + tool,
  9988. "style": {
  9989. "width": "90%",
  9990. "height": "90%",
  9991. "overflow": 'hidden'
  9992. },
  9993. "onresize": function () { }
  9994. }, {
  9995. closecallback: function () { }
  9996. }, {
  9997. "style": {
  9998. "height": "36px"
  9999. }
  10000. }).form; //创建窗体
  10001. _taskbar = {
  10002. "id": str + _formdiv.id,
  10003. "style": {
  10004. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10005. },
  10006. "name": "思维导图",
  10007. "forms": _formdiv,
  10008. "click": function () {
  10009. U.MD.D.I.openApplication(str, obj, info);
  10010. }
  10011. }
  10012. break;
  10013. case "doc":
  10014. aTool = 6;
  10015. _iframe = $$("iframe", {
  10016. "frameborder": "no",
  10017. "border": "0",
  10018. "scrolling ": "no",
  10019. "style": {
  10020. "cssText": "border:0;width:100%;height:100%"
  10021. },
  10022. "src": "/Office/Word/WordEditArea.htm"
  10023. })
  10024. _box.appendChild(_iframe);
  10025. _box.appendChild(_jie);
  10026. _formdiv = new U.UF.UI.form(
  10027. "协同文档",
  10028. _box, {
  10029. "id": "docs" + cid + stage + task + tool,
  10030. "style": {
  10031. "width": "90%",
  10032. "height": "90%",
  10033. "overflow": 'hidden'
  10034. },
  10035. "onresize": function () { }
  10036. }, {
  10037. closecallback: function () { }
  10038. }, {
  10039. "style": {
  10040. "height": "36px"
  10041. }
  10042. }).form; //创建窗体
  10043. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10044. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10045. })
  10046. _taskbar = {
  10047. "id": str + _formdiv.id,
  10048. "style": {
  10049. "backgroundImage": "url(/img/icon/doc.png)"
  10050. },
  10051. "name": "协同文档",
  10052. "forms": _formdiv,
  10053. "click": function () {
  10054. U.MD.D.I.openApplication(str, obj, info);
  10055. }
  10056. }
  10057. break;
  10058. }
  10059. const script1 = document.createElement("script");
  10060. script1.type = "text/javascript";
  10061. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10062. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10063. const script2 = document.createElement("script");
  10064. script2.type = "text/javascript";
  10065. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10066. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10067. const script3 = document.createElement("script");
  10068. script3.type = "text/javascript";
  10069. script3.charset = "UTF-8";
  10070. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10071. const script4 = document.createElement("script");
  10072. script4.type = "text/javascript";
  10073. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10074. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10075. if (_iframe) {
  10076. if (str == 'doc') {
  10077. _iframe = _formdiv.querySelector('iframe')
  10078. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10079. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10080. _iframe.contentWindow.document.body.appendChild(script1);
  10081. _iframe.contentWindow.document.body.appendChild(script2);
  10082. // _iframe.contentWindow.document.body.appendChild(script3);
  10083. _iframe.contentWindow.document.body.appendChild(script4);
  10084. })
  10085. if (onloadListener) {
  10086. _iframe.contentDocument.location.reload()
  10087. } else {
  10088. _iframe.contentDocument.location.reload()
  10089. }
  10090. } else if (str == 'mind') {
  10091. _iframe = _formdiv.querySelector('iframe')
  10092. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10093. _iframe.contentWindow.document.body.appendChild(script1);
  10094. _iframe.contentWindow.document.body.appendChild(script2);
  10095. _iframe.contentWindow.document.body.appendChild(script4);
  10096. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10097. })
  10098. if (onloadListener) {
  10099. _iframe.contentDocument.location.reload()
  10100. } else {
  10101. _iframe.contentDocument.location.reload()
  10102. }
  10103. } else {
  10104. _iframe.onload = () => {
  10105. _iframe.contentWindow.document.body.appendChild(script1);
  10106. _iframe.contentWindow.document.body.appendChild(script2);
  10107. // _iframe.contentWindow.document.body.appendChild(script3);
  10108. _iframe.contentWindow.document.body.appendChild(script4);
  10109. };
  10110. }
  10111. _jie.onclick = async () => {
  10112. let text = ''
  10113. if (aTool == 6) {
  10114. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10115. } else if (aTool == 3) {
  10116. text = await U.MD.D.I.getEditorContent(_iframe);
  10117. }
  10118. _loading.style.display = 'flex'
  10119. console.log(_loading);
  10120. var _ajs = _iframe.contentWindow.document.createElement("script");
  10121. _ajs.type = "text/javascript";
  10122. _ajs.innerHTML =
  10123. // 'console.log(' + _loading + ');\n' +
  10124. 'var _js = document.createElement("script");\n' +
  10125. '_js.type="text/javascript";\n' +
  10126. '_js.charset="UTF-8";\n' +
  10127. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10128. "_js.onload = function(){\n" +
  10129. ' var a = document.getElementsByTagName("img")\n' +
  10130. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10131. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10132. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10133. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10134. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10135. "beforeUpload_shishi(file," +
  10136. "'" +
  10137. _userid +
  10138. "'" +
  10139. ", " +
  10140. "'" +
  10141. _cid +
  10142. "'" +
  10143. ", " +
  10144. "'" +
  10145. _stage +
  10146. "'" +
  10147. ", " +
  10148. "'" +
  10149. _task +
  10150. "'" +
  10151. ", " +
  10152. "'" +
  10153. _tool +
  10154. "'" +
  10155. ", " +
  10156. "'" +
  10157. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10158. "'" +
  10159. ", " +
  10160. "'" +
  10161. aTool +
  10162. "'" +
  10163. ", " +
  10164. "`" +
  10165. text +
  10166. "`" +
  10167. ")\n" +
  10168. " });\n" +
  10169. "}\n" +
  10170. "document.head.appendChild(_js);\n";
  10171. _iframe.contentWindow.document.head.appendChild(_ajs);
  10172. }
  10173. }
  10174. //U.MD.D.I.openClick(str);
  10175. //如果有任务栏信息
  10176. // if (_taskbar) {
  10177. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10178. // }
  10179. }
  10180. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10181. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10182. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10183. _userinfo = US.userInfo, //登录用户信息
  10184. _userid = US.userInfo.userid //登录用户id
  10185. let _iframe;
  10186. let _cid = cid,
  10187. _stage = stage,
  10188. _task = task,
  10189. _tool = tool;
  10190. var _jie = $$("div", {
  10191. "style": {
  10192. "position": "absolute",
  10193. "bottom": "50px",
  10194. "right": "50px",
  10195. "zIndex": "9999",
  10196. "backgroundColor": "#2268bc",
  10197. "color": "#fff",
  10198. "padding": "12px 20px",
  10199. "cursor": "pointer",
  10200. "borderRadius": "4px",
  10201. },
  10202. "innerHTML": "上传模板"
  10203. })
  10204. let aTool = ''
  10205. let _loading = document.createElement('div')
  10206. _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;"
  10207. // _loading.id = "";
  10208. let _lchild = document.createElement('div')
  10209. let _limg = document.createElement('img')
  10210. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10211. _limg.style = "width: 26px;margin-right: 10px;"
  10212. _lchild.appendChild(_limg)
  10213. let _lspan = document.createElement('span')
  10214. _lspan.innerHTML = "上传中..."
  10215. _lchild.appendChild(_lspan)
  10216. _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%);"
  10217. _loading.appendChild(_lchild)
  10218. var _box = $$('div', {
  10219. "style": {
  10220. "position": "relative",
  10221. "width": "100%",
  10222. "height": "100%",
  10223. },
  10224. })
  10225. _box.appendChild(_loading)
  10226. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10227. switch (str) {
  10228. case "whiteboard":
  10229. aTool = 1;
  10230. _iframe = $$("iframe", {
  10231. "frameborder": "no",
  10232. "border": "0",
  10233. "scrolling ": "no",
  10234. "style": {
  10235. "cssText": "border:0;width:100%;height:100%"
  10236. },
  10237. "src": "https://beta.iwb.cocorobo.cn/"
  10238. })
  10239. _box.appendChild(_iframe);
  10240. _box.appendChild(_jie);
  10241. _formdiv = new U.UF.UI.form(
  10242. "电子白板",
  10243. _box, {
  10244. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10245. "style": {
  10246. "width": "90%",
  10247. "height": "90%",
  10248. "overflow": 'hidden'
  10249. },
  10250. "onresize": function () { }
  10251. }, {
  10252. closecallback: function () { }
  10253. }, {
  10254. "style": {
  10255. "height": "36px"
  10256. }
  10257. }).form; //创建窗体
  10258. _taskbar = {
  10259. "id": str + _formdiv.id,
  10260. "style": {
  10261. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10262. },
  10263. "name": "电子白板",
  10264. "forms": _formdiv,
  10265. "click": function () {
  10266. U.MD.D.I.openApplication(str, obj, info);
  10267. }
  10268. }
  10269. break;
  10270. case "mind":
  10271. aTool = 3;
  10272. _iframe = $$("iframe", {
  10273. "frameborder": "no",
  10274. "border": "0",
  10275. "scrolling ": "no",
  10276. "style": {
  10277. "cssText": "border:0;width:100%;height:100%"
  10278. },
  10279. "src": "/kityminder-editor/dist/index.html"
  10280. });
  10281. _box.appendChild(_iframe);
  10282. _box.appendChild(_jie);
  10283. _formdiv = new U.UF.UI.form(
  10284. "思维导图",
  10285. _box, { //"/jsmind/example/demo.html"
  10286. "id": "minds_Yu" + cid + stage + task + tool,
  10287. "style": {
  10288. "width": "90%",
  10289. "height": "90%",
  10290. "overflow": 'hidden'
  10291. },
  10292. "onresize": function () { }
  10293. }, {
  10294. closecallback: function () { }
  10295. }, {
  10296. "style": {
  10297. "height": "36px"
  10298. }
  10299. }).form; //创建窗体
  10300. _taskbar = {
  10301. "id": str + _formdiv.id,
  10302. "style": {
  10303. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10304. },
  10305. "name": "思维导图",
  10306. "forms": _formdiv,
  10307. "click": function () {
  10308. U.MD.D.I.openApplication(str, obj, info);
  10309. }
  10310. }
  10311. break;
  10312. case "doc":
  10313. aTool = 6;
  10314. _iframe = $$("iframe", {
  10315. "frameborder": "no",
  10316. "border": "0",
  10317. "scrolling ": "no",
  10318. "style": {
  10319. "cssText": "border:0;width:100%;height:100%"
  10320. },
  10321. "src": "/Office/Word/WordEditArea.htm"
  10322. })
  10323. _box.appendChild(_iframe);
  10324. _box.appendChild(_jie);
  10325. _formdiv = new U.UF.UI.form(
  10326. "协同文档",
  10327. _box, {
  10328. "id": "docs_Yu" + cid + stage + task + tool,
  10329. "style": {
  10330. "width": "90%",
  10331. "height": "90%",
  10332. "overflow": 'hidden'
  10333. },
  10334. "onresize": function () { }
  10335. }, {
  10336. closecallback: function () { }
  10337. }, {
  10338. "style": {
  10339. "height": "36px"
  10340. }
  10341. }).form; //创建窗体
  10342. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10343. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10344. })
  10345. _taskbar = {
  10346. "id": str + _formdiv.id,
  10347. "style": {
  10348. "backgroundImage": "url(/img/icon/doc.png)"
  10349. },
  10350. "name": "协同文档",
  10351. "forms": _formdiv,
  10352. "click": function () {
  10353. U.MD.D.I.openApplication(str, obj, info);
  10354. }
  10355. }
  10356. break;
  10357. case "CocoPi":
  10358. aTool = 57;
  10359. _iframe = $$("iframe", {
  10360. "allowpaymentrequest": "allowpaymentrequest",
  10361. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10362. "webkitallowfullscreen": "",
  10363. "mozallowfullscreen": "",
  10364. "frameborder": "no",
  10365. "border": "0",
  10366. "scrolling ": "no",
  10367. "style": {
  10368. "cssText": "border:0;width:100%;height:100%"
  10369. },
  10370. "src": "https://pi.cocorobo.cn/"
  10371. })
  10372. _box.appendChild(_iframe);
  10373. _box.appendChild(_jie);
  10374. _formdiv = new U.UF.UI.form(
  10375. "CocoPi",
  10376. _box, {
  10377. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10378. "style": {
  10379. "width": "90%",
  10380. "height": "90%",
  10381. "overflow": 'hidden'
  10382. },
  10383. "onresize": function () { }
  10384. }, {
  10385. closecallback: function () { }
  10386. }, {
  10387. "style": {
  10388. "height": "36px"
  10389. }
  10390. }).form; //创建窗体
  10391. _taskbar = {
  10392. "id": str + _formdiv.id,
  10393. "style": {
  10394. "backgroundImage": "url(/img/icon/cocopi.png)"
  10395. },
  10396. "name": "CocoPi",
  10397. "forms": _formdiv,
  10398. "click": function () {
  10399. U.MD.D.I.openApplication(str, obj, info);
  10400. }
  10401. }
  10402. break;
  10403. }
  10404. if (_iframe) {
  10405. if (str == 'doc') {
  10406. _iframe = _formdiv.querySelector('iframe')
  10407. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10408. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10409. })
  10410. if (onloadListener) {
  10411. _iframe.contentDocument.location.reload()
  10412. } else {
  10413. _iframe.contentDocument.location.reload()
  10414. }
  10415. } else if (str == 'mind') {
  10416. _iframe = _formdiv.querySelector('iframe')
  10417. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10418. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10419. })
  10420. if (onloadListener) {
  10421. _iframe.contentDocument.location.reload()
  10422. } else {
  10423. _iframe.contentDocument.location.reload()
  10424. }
  10425. } else if (str == 'whiteboard') {
  10426. _iframe = _formdiv.querySelector('iframe')
  10427. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10428. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10429. })
  10430. // if (onloadListener) {
  10431. // try {
  10432. // _iframe.src += "?cocorobo="+new Date().getTime()
  10433. // _iframe.contentWindow.document.location.reload()
  10434. // } catch (error) {
  10435. // }
  10436. // } else {
  10437. // _iframe.contentDocument.location.reload()
  10438. // }
  10439. } else if (str == 'CocoPi') {
  10440. _iframe = _formdiv.querySelector('iframe')
  10441. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10442. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10443. })
  10444. if (onloadListener) {
  10445. _iframe.contentDocument.location.reload()
  10446. } else {
  10447. _iframe.contentDocument.location.reload()
  10448. }
  10449. } else {
  10450. _iframe.onload = () => { };
  10451. }
  10452. _jie.onclick = async () => {
  10453. let text = ''
  10454. let type = '2'
  10455. if (aTool == 1) {
  10456. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10457. type = '3'
  10458. } else if (aTool == 6) {
  10459. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10460. type = '1'
  10461. } else if (aTool == 3) {
  10462. text = await U.MD.D.I.getEditorContent(_iframe);
  10463. type = '2'
  10464. } else if (aTool == 57) {
  10465. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10466. type = '4'
  10467. }
  10468. _loading.style.display = 'flex'
  10469. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10470. }
  10471. }
  10472. //U.MD.D.I.openClick(str);
  10473. //如果有任务栏信息
  10474. // if (_taskbar) {
  10475. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10476. // }
  10477. }
  10478. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10479. var xmlhttp;
  10480. var Mac, Sn, DeviceId
  10481. if (window.XMLHttpRequest) {
  10482. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10483. xmlhttp = new XMLHttpRequest();
  10484. } else {
  10485. // IE6, IE5 浏览器执行代码
  10486. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10487. }
  10488. xmlhttp.onreadystatechange = function () {
  10489. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10490. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10491. // resolve(res.value[0][0].text);
  10492. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10493. }
  10494. }
  10495. }
  10496. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10497. xmlhttp.send();
  10498. }
  10499. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10500. var xmlhttp;
  10501. var Mac, Sn, DeviceId
  10502. if (window.XMLHttpRequest) {
  10503. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10504. xmlhttp = new XMLHttpRequest();
  10505. } else {
  10506. // IE6, IE5 浏览器执行代码
  10507. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10508. }
  10509. xmlhttp.onreadystatechange = function () {
  10510. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10511. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10512. // resolve(res.value[0][0].text);
  10513. if (type == '2') {
  10514. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10515. } else if (type == '3') {
  10516. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10517. } else if (type == '4') {
  10518. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10519. }
  10520. } else {
  10521. if (type == '2') {
  10522. iframe.contentWindow.editor.minder.importData('json', '')
  10523. } else if (type == '3') {
  10524. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10525. } else if (type == '4') {
  10526. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10527. }
  10528. }
  10529. }
  10530. }
  10531. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10532. xmlhttp.send();
  10533. }
  10534. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10535. var xmlhttp;
  10536. var Mac, Sn, DeviceId
  10537. if (window.XMLHttpRequest) {
  10538. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10539. xmlhttp = new XMLHttpRequest();
  10540. } else {
  10541. // IE6, IE5 浏览器执行代码
  10542. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10543. }
  10544. xmlhttp.onreadystatechange = function () {
  10545. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10546. if (xmlhttp.response) {
  10547. // resolve(res.value[0][0].text);
  10548. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10549. // $(fileInput).val('');
  10550. // });
  10551. span.innerHTML = '上传成功'
  10552. setTimeout(() => {
  10553. loading.style.display = 'none'
  10554. }, 1000);
  10555. }
  10556. }
  10557. }
  10558. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10559. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10560. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10561. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10562. // 设置请求头,表示请求体的编码格式
  10563. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10564. // 设置请求体,使用url-encoded格式的数据
  10565. }
  10566. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10567. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10568. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10569. _userinfo = US.userInfo, //登录用户信息
  10570. _userid = US.userInfo.userid //登录用户id
  10571. let _iframe;
  10572. let _cid = cid,
  10573. _stage = stage,
  10574. _task = task,
  10575. _tool = tool;
  10576. var _jie = $$("div", {
  10577. "style": {
  10578. "position": "absolute",
  10579. "bottom": "50px",
  10580. "right": "50px",
  10581. "zIndex": "9999",
  10582. "backgroundColor": "#2268bc",
  10583. "color": "#fff",
  10584. "padding": "12px 20px",
  10585. "cursor": "pointer",
  10586. "borderRadius": "4px",
  10587. },
  10588. "innerHTML": "提交作业"
  10589. })
  10590. let aTool = ''
  10591. let _loading = document.createElement('div')
  10592. _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;"
  10593. // _loading.id = "";
  10594. let _lchild = document.createElement('div')
  10595. let _limg = document.createElement('img')
  10596. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10597. _limg.style = "width: 26px;margin-right: 10px;"
  10598. _lchild.appendChild(_limg)
  10599. let _lspan = document.createElement('span')
  10600. _lspan.innerHTML = "上传中..."
  10601. _lchild.appendChild(_lspan)
  10602. _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%);"
  10603. _loading.appendChild(_lchild)
  10604. var _box = $$('div', {
  10605. "style": {
  10606. "position": "relative",
  10607. "width": "100%",
  10608. "height": "100%",
  10609. },
  10610. })
  10611. _box.appendChild(_loading)
  10612. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10613. switch (str) {
  10614. case "CocoPi":
  10615. aTool = 57;
  10616. _iframe = $$("iframe", {
  10617. "allowpaymentrequest": "allowpaymentrequest",
  10618. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10619. "webkitallowfullscreen": "",
  10620. "mozallowfullscreen": "",
  10621. "frameborder": "no",
  10622. "border": "0",
  10623. "scrolling ": "no",
  10624. "style": {
  10625. "cssText": "border:0;width:100%;height:100%"
  10626. },
  10627. "src": "https://pi.cocorobo.cn/"
  10628. })
  10629. _box.appendChild(_iframe);
  10630. _box.appendChild(_jie);
  10631. _formdiv = new U.UF.UI.form(
  10632. "CocoPi",
  10633. _box, {
  10634. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10635. "style": {
  10636. "width": "90%",
  10637. "height": "90%",
  10638. "overflow": 'hidden'
  10639. },
  10640. "onresize": function () { }
  10641. }, {
  10642. closecallback: function () { }
  10643. }, {
  10644. "style": {
  10645. "height": "36px"
  10646. }
  10647. }).form; //创建窗体
  10648. _taskbar = {
  10649. "id": str + _formdiv.id,
  10650. "style": {
  10651. "backgroundImage": "url(/img/icon/cocopi.png)"
  10652. },
  10653. "name": "CocoPi",
  10654. "forms": _formdiv,
  10655. "click": function () {
  10656. U.MD.D.I.openApplication(str, obj, info);
  10657. }
  10658. }
  10659. break;
  10660. }
  10661. if (_iframe) {
  10662. if (str == 'CocoPi') {
  10663. _iframe = _formdiv.querySelector('iframe')
  10664. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10665. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10666. })
  10667. if (onloadListener) {
  10668. _iframe.contentDocument.location.reload()
  10669. } else {
  10670. _iframe.contentDocument.location.reload()
  10671. }
  10672. }
  10673. _jie.onclick = async () => {
  10674. let text = ''
  10675. if (aTool == 57) {
  10676. text = _iframe.contentWindow.getLoadXmlStr()
  10677. }
  10678. _loading.style.display = 'flex'
  10679. console.log(_loading);
  10680. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10681. _loading.style.display = 'none'
  10682. let _div = document.createElement('div')
  10683. _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;"
  10684. let _inner = document.createElement('div')
  10685. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10686. _inner.innerHTML = "上传成功"
  10687. _div.appendChild(_inner)
  10688. _iframe.contentWindow.window.document.body.appendChild(_div)
  10689. _div.onclick = () => {
  10690. _iframe.contentWindow.window.document.body.removeChild(_div)
  10691. }
  10692. setTimeout(() => {
  10693. _iframe.contentWindow.window.document.body.removeChild(_div)
  10694. }, 1000);
  10695. }, [], { "type": "POST", "withCredentials": true });
  10696. }
  10697. }
  10698. }
  10699. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10700. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10701. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10702. _userid = student.userid, //登录用户id
  10703. _username = student.student //用户名字
  10704. let _iframe;
  10705. let _cid = cid,
  10706. _stage = stage,
  10707. _task = task,
  10708. _tool = tool;
  10709. var _jie = $$("div", {
  10710. "style": {
  10711. "position": "absolute",
  10712. "bottom": "50px",
  10713. "right": "50px",
  10714. "zIndex": "9999",
  10715. "backgroundColor": "#2268bc",
  10716. "color": "#fff",
  10717. "padding": "12px 20px",
  10718. "cursor": "pointer",
  10719. "borderRadius": "4px",
  10720. },
  10721. "innerHTML": "提交作业"
  10722. })
  10723. let aTool = ''
  10724. let _loading = document.createElement('div')
  10725. _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;"
  10726. // _loading.id = "";
  10727. let _lchild = document.createElement('div')
  10728. let _limg = document.createElement('img')
  10729. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10730. _limg.style = "width: 26px;margin-right: 10px;"
  10731. _lchild.appendChild(_limg)
  10732. let _lspan = document.createElement('span')
  10733. _lspan.innerHTML = "上传中..."
  10734. _lchild.appendChild(_lspan)
  10735. _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%);"
  10736. _loading.appendChild(_lchild)
  10737. var _box = $$('div', {
  10738. "style": {
  10739. "position": "relative",
  10740. "width": "100%",
  10741. "height": "100%",
  10742. },
  10743. })
  10744. _box.appendChild(_loading)
  10745. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10746. switch (str) {
  10747. case "CocoPi":
  10748. aTool = 57;
  10749. _iframe = $$("iframe", {
  10750. "allowpaymentrequest": "allowpaymentrequest",
  10751. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10752. "webkitallowfullscreen": "",
  10753. "mozallowfullscreen": "",
  10754. "frameborder": "no",
  10755. "border": "0",
  10756. "scrolling ": "no",
  10757. "style": {
  10758. "cssText": "border:0;width:100%;height:100%"
  10759. },
  10760. "src": "https://pi.cocorobo.cn/"
  10761. })
  10762. _box.appendChild(_iframe);
  10763. _box.appendChild(_jie);
  10764. _formdiv = new U.UF.UI.form(
  10765. "CocoPi-" + _username,
  10766. _box, {
  10767. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10768. "style": {
  10769. "width": "90%",
  10770. "height": "90%",
  10771. "overflow": 'hidden'
  10772. },
  10773. "onresize": function () { }
  10774. }, {
  10775. closecallback: function () { }
  10776. }, {
  10777. "style": {
  10778. "height": "36px"
  10779. }
  10780. }).form; //创建窗体
  10781. _taskbar = {
  10782. "id": str + _formdiv.id,
  10783. "style": {
  10784. "backgroundImage": "url(/img/icon/cocopi.png)"
  10785. },
  10786. "name": "CocoPi",
  10787. "forms": _formdiv,
  10788. "click": function () {
  10789. U.MD.D.I.openApplication(str, obj, info);
  10790. }
  10791. }
  10792. break;
  10793. }
  10794. if (_iframe) {
  10795. if (str == 'CocoPi') {
  10796. _iframe = _formdiv.querySelector('iframe')
  10797. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10798. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10799. })
  10800. if (onloadListener) {
  10801. _iframe.contentDocument.location.reload()
  10802. } else {
  10803. _iframe.contentDocument.location.reload()
  10804. }
  10805. }
  10806. _jie.onclick = async () => {
  10807. let text = ''
  10808. if (aTool == 57) {
  10809. text = _iframe.contentWindow.getLoadXmlStr()
  10810. }
  10811. _loading.style.display = 'flex'
  10812. console.log(_loading);
  10813. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10814. _loading.style.display = 'none'
  10815. let _div = document.createElement('div')
  10816. _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;"
  10817. let _inner = document.createElement('div')
  10818. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10819. _inner.innerHTML = "上传成功"
  10820. _div.appendChild(_inner)
  10821. _iframe.contentWindow.window.document.body.appendChild(_div)
  10822. _div.onclick = () => {
  10823. _iframe.contentWindow.window.document.body.removeChild(_div)
  10824. }
  10825. setTimeout(() => {
  10826. _iframe.contentWindow.window.document.body.removeChild(_div)
  10827. }, 1000);
  10828. }, [], { "type": "POST", "withCredentials": true });
  10829. }
  10830. }
  10831. }
  10832. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10833. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10834. if (res.value[0].length > 0) {
  10835. if (atool == 57) {
  10836. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10837. }
  10838. } else {
  10839. if (atool == 57) {
  10840. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10841. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10842. }
  10843. }
  10844. }, [], { "type": "POST", "withCredentials": true });
  10845. }
  10846. U.MD.D.addOp = function(text,type,time){
  10847. var userInfo = US.userInfo;
  10848. if(Object.keys(userInfo).length !== 0){
  10849. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10850. }, [], { "type": "POST", "withCredentials": true });
  10851. }
  10852. }