DeskTop.js 673 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  989. ];
  990. //成华教育局
  991. U.MD.D.I.chjyjTeacherDeskIcon = [
  992. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  993. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  994. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  995. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  996. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  997. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  998. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  999. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1000. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1001. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1002. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1004. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1005. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1006. ];
  1007. //成华教育局chjyj
  1008. U.MD.D.I.chjyjAdminDeskIcon = [
  1009. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1010. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1011. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1012. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1013. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1014. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1015. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1016. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1017. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1018. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1019. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.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.chjyjStudentDeskIcon = [
  1027. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. ];
  1032. //tpc
  1033. U.MD.D.I.tpcStudentDeskIcon = [
  1034. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1035. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1036. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. ];
  1039. //tpc
  1040. U.MD.D.I.tpcTeacherDeskIcon = [
  1041. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1042. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1043. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1044. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1045. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1046. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1047. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1048. ];
  1049. //tpc
  1050. U.MD.D.I.tpcAdminDeskIcon = [
  1051. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1052. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourseS", "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. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1057. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1058. ];
  1059. //THU-IOE
  1060. U.MD.D.I.thuioeTeacherDeskIcon = [
  1061. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1062. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1063. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1064. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1065. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1066. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1067. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1068. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1069. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1070. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1071. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1072. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1073. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1074. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1075. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1076. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1077. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1078. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1079. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1080. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1081. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1082. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1083. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1084. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1085. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1086. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1087. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1088. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1089. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1090. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1091. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1092. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1093. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1094. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1095. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1099. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1100. ];
  1101. //THU-IOE
  1102. U.MD.D.I.thuioeStudentDeskIcon = [
  1103. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1104. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1105. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1106. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1107. ];
  1108. //jccssyl
  1109. U.MD.D.I.jccssylTeacherDeskIcon = [
  1110. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1111. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1112. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1113. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1114. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1115. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1116. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1117. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1118. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1119. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1120. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1121. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1122. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1123. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1125. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1126. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1127. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1128. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1129. ];
  1130. //jccssyl
  1131. U.MD.D.I.jccssylStudentDeskIcon = [
  1132. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1136. ];
  1137. //cale
  1138. U.MD.D.I.caleTeacherDeskIcon = [
  1139. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1140. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1141. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1142. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1143. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1144. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1145. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1146. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1147. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1148. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1149. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1150. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1151. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1152. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1154. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1155. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1156. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1157. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1158. ];
  1159. //cale
  1160. U.MD.D.I.caleStudentDeskIcon = [
  1161. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1162. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1163. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. ];
  1166. //lqwmsgzs
  1167. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1168. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1169. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1170. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1171. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1175. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1176. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1177. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1178. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1179. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1180. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1181. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1182. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1183. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1184. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1185. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1186. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1187. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1188. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1189. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1190. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1191. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1192. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1193. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1194. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1195. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1196. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1197. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1198. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1199. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1200. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1201. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1204. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1205. ];
  1206. //lqwmsgzs
  1207. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1208. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1209. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1210. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1211. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1212. ];
  1213. //盐田区幼儿园
  1214. U.MD.D.I.ytyTeacherDeskIcon = [
  1215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1217. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1218. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1219. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1220. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1221. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1222. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1223. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1224. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1225. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1226. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1227. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1228. ];
  1229. //盐田区幼儿园
  1230. U.MD.D.I.ytyStudentDeskIcon = [
  1231. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1232. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1233. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1234. ];
  1235. //scnuai
  1236. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1237. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1238. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1239. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1240. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1241. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1242. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1243. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1244. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1245. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1246. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1247. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1248. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1249. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1251. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1252. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1253. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1254. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1255. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1256. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1257. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1258. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1259. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1260. ];
  1261. //scnuai
  1262. U.MD.D.I.scnuaiAdminDeskIcon = [
  1263. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1264. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1265. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1266. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1267. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1268. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1269. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1270. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1271. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1272. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1273. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1274. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1275. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1277. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1278. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1279. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1280. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1281. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1282. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1283. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1284. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1285. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1286. ];
  1287. //scnuai
  1288. U.MD.D.I.scnuaiStudentDeskIcon = [
  1289. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1290. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1291. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1292. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1293. ];
  1294. //cocobiz
  1295. U.MD.D.I.cocobizteacherDeskIcon = [
  1296. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1297. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1298. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1299. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1303. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1304. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1305. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1306. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1307. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1308. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1309. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1311. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1312. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1313. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1314. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1315. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1316. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1317. ];
  1318. //cocobiz
  1319. U.MD.D.I.cocobizStudentDeskIcon = [
  1320. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1321. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1322. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1323. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1325. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1326. ];
  1327. //xxzjky
  1328. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1329. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1331. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1332. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1338. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1339. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1340. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1341. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1342. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1345. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1346. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1347. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1348. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1349. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1350. ];
  1351. //xxzjky
  1352. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1353. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1354. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1355. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1356. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1359. ];
  1360. //nsfx
  1361. U.MD.D.I.nsfxTeacherDeskIcon = [
  1362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1364. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1365. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1368. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1369. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1370. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1371. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1375. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1376. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1377. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1378. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1379. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1380. ];
  1381. //nsfx
  1382. U.MD.D.I.nsfxStudentDeskIcon = [
  1383. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1384. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1385. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1386. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1387. ];
  1388. //stia
  1389. U.MD.D.I.stiaTeacherDeskIcon = [
  1390. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1391. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1392. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1393. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1394. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1395. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1396. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1397. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1398. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1399. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1400. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1401. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1402. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1403. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1404. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1405. ];
  1406. //stia
  1407. U.MD.D.I.stiaStudentDeskIcon = [
  1408. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //szdjg
  1414. U.MD.D.I.szdjgTeacherDeskIcon = [
  1415. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. ];
  1418. //szdjg
  1419. U.MD.D.I.szdjgStudentDeskIcon = [
  1420. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1421. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1422. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1423. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1424. ];
  1425. //010607
  1426. U.MD.D.I.x010607TeacherDeskIcon = [
  1427. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1428. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1429. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1430. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1431. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1432. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1433. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1434. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1435. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1438. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1439. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1440. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1441. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1442. ];
  1443. //010607
  1444. U.MD.D.I.x010607StudentDeskIcon = [
  1445. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1446. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1447. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. ];
  1450. //010608
  1451. U.MD.D.I.x010608TeacherDeskIcon = [
  1452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1459. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1462. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1463. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1464. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1465. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1466. ];
  1467. //010608
  1468. U.MD.D.I.x010608StudentDeskIcon = [
  1469. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1470. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1471. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1473. ];
  1474. //xhly
  1475. U.MD.D.I.xhlyTeacherDeskIcon = [
  1476. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1477. ];
  1478. //010608
  1479. U.MD.D.I.xhlyStudentDeskIcon = [
  1480. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1481. ];
  1482. //北师大
  1483. U.MD.D.I.BSDNSteacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1487. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1488. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1491. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1492. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1494. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1495. ];
  1496. //北师大
  1497. U.MD.D.I.BSDNSstudentDeskIcon = [
  1498. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1499. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1500. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. ];
  1503. //CUHK_EDU
  1504. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1505. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1506. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1507. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1508. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1509. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1510. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1511. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1512. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1515. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1516. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1517. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1518. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1519. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1520. ];
  1521. //CUHK_EDU
  1522. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1523. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1524. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1525. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1526. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1527. ];
  1528. //010503
  1529. U.MD.D.I.x010503TeacherDeskIcon = [
  1530. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1531. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1532. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1533. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1534. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1535. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1536. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1537. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1538. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1539. ];
  1540. //010503
  1541. U.MD.D.I.x010503StudentDeskIcon = [
  1542. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1543. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1544. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1545. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1546. ];
  1547. //SPROUT Lab
  1548. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1549. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1550. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1551. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1552. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1553. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1554. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1555. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1556. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1557. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1558. ];
  1559. //SPROUT Lab
  1560. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1561. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1562. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1563. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //010204
  1567. U.MD.D.I.x010204TeacherDeskIcon = [
  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. ];
  1571. //010204
  1572. U.MD.D.I.x010204StudentDeskIcon = [
  1573. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1574. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1575. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1576. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1577. ];
  1578. //trail
  1579. U.MD.D.I.trailTeacherDeskIcon = [
  1580. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1581. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1583. ];
  1584. //trail
  1585. U.MD.D.I.trailStudentDeskIcon = [
  1586. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1587. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1588. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1589. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1590. ];
  1591. //010504
  1592. U.MD.D.I.x010504TeacherDeskIcon = [
  1593. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1594. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1595. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1596. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1597. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1599. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1601. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1602. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1603. ];
  1604. //010504
  1605. U.MD.D.I.x010504StudentDeskIcon = [
  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. //SCNUET
  1612. U.MD.D.I.SCNUETTeacherDeskIcon = [
  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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1616. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1617. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1618. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1619. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1620. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1621. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1622. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1623. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1624. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1625. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1626. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1627. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1628. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1630. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1631. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1632. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1633. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1634. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1635. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1636. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1637. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1638. ];
  1639. //SCNUET
  1640. U.MD.D.I.SCNUETAdminDeskIcon = [
  1641. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1642. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1643. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1644. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1645. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1646. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1647. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1648. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1649. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1650. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1651. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1652. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1653. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1654. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1655. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1656. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1657. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1658. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.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": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1662. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1663. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1664. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1665. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1666. ];
  1667. //SCNUET
  1668. U.MD.D.I.SCNUETStudentDeskIcon = [
  1669. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1670. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1671. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1672. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1673. ];
  1674. //x020201
  1675. U.MD.D.I.x020201TeacherDeskIcon = [
  1676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1678. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1679. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1680. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1681. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1682. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1683. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1684. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1685. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1686. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1687. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1689. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1690. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1692. ];
  1693. //x020201
  1694. U.MD.D.I.x020201AdminDeskIcon = [
  1695. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1696. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1697. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1698. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1699. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1700. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1701. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1702. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1703. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1706. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1707. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1708. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1709. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1710. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1711. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1712. ];
  1713. //020201
  1714. U.MD.D.I.x020201StudentDeskIcon = [
  1715. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1716. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1717. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1718. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. ];
  1720. //010611
  1721. U.MD.D.I.x010611TeacherDeskIcon = [
  1722. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1723. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1724. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1725. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1726. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1727. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1731. ];
  1732. //010611
  1733. U.MD.D.I.x010611StudentDeskIcon = [
  1734. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1735. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1736. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1737. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1738. ];
  1739. //tianyuan
  1740. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1741. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1742. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1743. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1744. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1745. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1746. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1747. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1748. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1749. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1750. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1751. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1752. ];
  1753. //010611
  1754. U.MD.D.I.tianyuanStudentDeskIcon = [
  1755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1757. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1758. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1759. ];
  1760. //320101
  1761. U.MD.D.I.x320101TeacherDeskIcon = [
  1762. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1763. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1764. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1765. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1766. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1767. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1768. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1769. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1770. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1771. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1772. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1773. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1774. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1775. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1776. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1777. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1778. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1779. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1780. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1781. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1782. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1783. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1784. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1785. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1786. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1787. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1788. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1789. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1790. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1791. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1792. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1793. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1794. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1795. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1796. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1797. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1798. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1799. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1800. ];
  1801. //320101
  1802. U.MD.D.I.x320101StudentDeskIcon = [
  1803. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1804. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1805. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1807. ];
  1808. //#region 桌面初始化a
  1809. /**
  1810. * 初始化桌面的起始函数
  1811. *
  1812. */
  1813. U.MD.D.I.init = function () {
  1814. if ($("#U_MD_D_K")[0]) {
  1815. //初始化桌面图标
  1816. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1817. // var clickUrl = ':12588/requestIp.php';
  1818. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1819. // U.MD.D.I.Ip = data;
  1820. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1821. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1822. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1823. // })
  1824. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1825. // })
  1826. }
  1827. }
  1828. /**
  1829. * 模式切换
  1830. *
  1831. */
  1832. U.MD.D.I.ModeCheck = function (type) {
  1833. if (US.Config.type == type) {
  1834. return
  1835. }
  1836. US.Config.type = type
  1837. $('.U_PBL_Check .active')[0].className = ''
  1838. if (type == 1) {
  1839. $('.U_PBL_Check div')[0].className = 'active'
  1840. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1841. } else {
  1842. $('.U_PBL_Check div')[1].className = 'active'
  1843. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1844. }
  1845. //初始化桌面图标
  1846. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1847. if (type == 2) {
  1848. U.MD.D.I.openApplication("project")
  1849. }
  1850. }
  1851. /**
  1852. * 隐藏任务栏
  1853. *
  1854. * @param {element} 桌面元素
  1855. */
  1856. U.MD.D.I.hiddenTaskbar = function (el) {
  1857. //任务栏位置变小
  1858. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1859. //桌面的位置变大
  1860. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1861. }
  1862. /**
  1863. * 隐藏任务栏
  1864. *
  1865. * @param {element} 桌面元素
  1866. */
  1867. U.MD.D.I.hiddenTaskbarout = function (el) {
  1868. //任务栏位置变小
  1869. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1870. //任务栏位置变化
  1871. U.selectEl(el).css({ "bottom": "-60px" });
  1872. //桌面的位置变大
  1873. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1874. }
  1875. }
  1876. /**
  1877. * 初始化打印桌面图标
  1878. *
  1879. * @param {element} 桌面元素
  1880. */
  1881. U.MD.D.I.initDesktopIcons = function (el, type) {
  1882. var i, //用于循环
  1883. _content, //桌面图标元素
  1884. _iconcontent, //桌面图标元素
  1885. _frag = $$("frag"), //定义一个碎片元素
  1886. _type = US.userInfo.type,
  1887. _org = US.userInfo.org,
  1888. _oid = US.userInfo.organizeid,
  1889. _role = US.userInfo.role,
  1890. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1891. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1892. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1893. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1894. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1895. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1896. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1897. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1898. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1899. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1900. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1901. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1902. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1903. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1904. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1905. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1906. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1907. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1908. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1909. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1910. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1911. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1912. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1913. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1914. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1915. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1916. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1917. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1918. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1919. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1920. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1921. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1922. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1923. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1924. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1925. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1926. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1927. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1928. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1929. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1930. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1931. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1932. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1933. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1934. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1935. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1936. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1937. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1938. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1939. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1940. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1941. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1942. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1943. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1944. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1945. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1946. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1947. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1948. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1949. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1950. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1951. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1952. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1953. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1954. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1955. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1956. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1957. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1958. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1959. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1960. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1961. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1962. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1963. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1964. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1965. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1966. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1967. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1968. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1969. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1970. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1971. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1972. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1973. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1974. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1975. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1976. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1977. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1978. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1979. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1980. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1981. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1982. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1983. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1984. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1985. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1986. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1987. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  1988. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  1989. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1990. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1991. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1992. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1993. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1994. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1995. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1996. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1997. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1998. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1999. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2000. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2001. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2002. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2003. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926'];
  2004. 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'];
  2005. //清楚桌面图标
  2006. el.innerHTML = "";
  2007. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2008. _teacherDesktopIconInfo.push(
  2009. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2010. { "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)" } },
  2011. )
  2012. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2013. }
  2014. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2015. _teacherDesktopIconInfo.push(
  2016. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2017. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2020. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2021. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2022. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2023. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2024. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2025. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2026. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2027. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2028. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2029. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2030. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2031. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2032. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2033. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2034. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2035. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2036. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2037. )
  2038. }
  2039. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2040. _teacherDesktopIconInfo.push(
  2041. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2042. )
  2043. }
  2044. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2045. // _teacherDesktopIconInfo.push(
  2046. // )
  2047. // }
  2048. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2049. _teacherDesktopIconInfo.push(
  2050. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2051. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2052. )
  2053. }
  2054. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2055. _teacherDesktopIconInfo.push(
  2056. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2057. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2059. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2060. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2061. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2062. )
  2063. _studentDesktopIconInfo.push(
  2064. )
  2065. }
  2066. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2067. _teacherDesktopIconInfo.push(
  2068. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2069. )
  2070. _studentDesktopIconInfo.push(
  2071. )
  2072. }
  2073. //010606 组织
  2074. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2075. _teacherDesktopIconInfo.push(
  2076. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2077. )
  2078. _studentDesktopIconInfo.push(
  2079. )
  2080. }
  2081. //麒麟二中 和 民新小学
  2082. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2083. _teacherDesktopIconInfo.push(
  2084. )
  2085. }
  2086. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2087. _teacherDesktopIconInfo.push(
  2088. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2089. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2090. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2091. )
  2092. }
  2093. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2094. _hkTeacherDeskIconInfo.push(
  2095. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2096. )
  2097. }
  2098. //北师大附中(010601)
  2099. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2100. // _teacherDesktopIconInfo.push(
  2101. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2102. // )
  2103. // _studentDesktopIconInfo.push(
  2104. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2105. // )
  2106. // }
  2107. //樂善堂余近卿中學
  2108. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2109. _teacherDesktopIconInfo.push(
  2110. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2111. )
  2112. }
  2113. // Education Artificial Intelligence
  2114. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2115. _teacherDesktopIconInfo.push(
  2116. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2117. )
  2118. }
  2119. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2120. _teacherDesktopIconInfo.push(
  2121. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2122. )
  2123. }
  2124. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2125. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2126. _teacherDesktopIconInfo.push(
  2127. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2128. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2129. )
  2130. }
  2131. //麒麟二中
  2132. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2133. _studentDesktopIconInfo.push(
  2134. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2135. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2136. )
  2137. }
  2138. //万科双语
  2139. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2140. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2141. if (el.Name == '项目管理') {
  2142. el.Name = 'PBL项目'
  2143. }
  2144. return el
  2145. })
  2146. _studentDesktopIconInfo3.push(
  2147. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2148. )
  2149. }
  2150. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2151. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2152. return el.Name != '魔盒识字' && el.Name != '24点'
  2153. })
  2154. }
  2155. 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) {
  2156. _studentDesktopIconInfo.push(
  2157. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2158. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2159. )
  2160. }
  2161. //循环创建桌面图标
  2162. if (type == 1) {
  2163. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2164. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2165. _content = $$("div", {
  2166. className: "U_MD_D_KO",
  2167. "onmousedown": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_studentDesktopIconInfo[i]]),
  2171. "onclick": U.UF.C.closure(function (obj) {
  2172. //防止拖动图标即打开了桌面应用
  2173. U.MD.D.click(this, obj);
  2174. }, [_studentDesktopIconInfo[i]])
  2175. }, _frag); //
  2176. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2179. }
  2180. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2181. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2182. _content = $$("div", {
  2183. className: "U_MD_D_KO",
  2184. "onmousedown": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2188. "onclick": U.UF.C.closure(function (obj) {
  2189. //防止拖动图标即打开了桌面应用
  2190. U.MD.D.click(this, obj);
  2191. }, [_hkZJLSStudentDeskIconInfo[i]])
  2192. }, _frag); //
  2193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2196. } //
  2197. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2198. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2199. _content = $$("div", {
  2200. className: "U_MD_D_KO",
  2201. "onmousedown": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_ytyStudentDeskIconInfo[i]]),
  2205. "onclick": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_ytyStudentDeskIconInfo[i]])
  2209. }, _frag); //
  2210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2213. } //
  2214. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2215. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2216. _content = $$("div", {
  2217. className: "U_MD_D_KO",
  2218. "onmousedown": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_jccssylStudentDeskIconInfo[i]]),
  2222. "onclick": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_jccssylStudentDeskIconInfo[i]])
  2226. }, _frag); //
  2227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2230. }
  2231. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2232. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2233. _content = $$("div", {
  2234. className: "U_MD_D_KO",
  2235. "onmousedown": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_scnuaiStudentDeskIconInfo[i]]),
  2239. "onclick": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_scnuaiStudentDeskIconInfo[i]])
  2243. }, _frag); //
  2244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2247. }
  2248. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2249. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2250. _content = $$("div", {
  2251. className: "U_MD_D_KO",
  2252. "onmousedown": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_caleStudentDeskIconInfo[i]]),
  2256. "onclick": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_caleStudentDeskIconInfo[i]])
  2260. }, _frag); //
  2261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2264. }
  2265. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2266. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2267. _content = $$("div", {
  2268. className: "U_MD_D_KO",
  2269. "onmousedown": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_thuioeStudentDeskIconInfo[i]]),
  2273. "onclick": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_thuioeStudentDeskIconInfo[i]])
  2277. }, _frag); //
  2278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2281. }
  2282. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2283. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2284. _content = $$("div", {
  2285. className: "U_MD_D_KO",
  2286. "onmousedown": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_tpcStudentDeskIconInfo[i]]),
  2290. "onclick": U.UF.C.closure(function (obj) {
  2291. //防止拖动图标即打开了桌面应用
  2292. U.MD.D.click(this, obj);
  2293. }, [_tpcStudentDeskIconInfo[i]])
  2294. }, _frag); //
  2295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2298. } //
  2299. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2300. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2301. _content = $$("div", {
  2302. className: "U_MD_D_KO",
  2303. "onmousedown": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_chjyjStudentDeskIconInfo[i]]),
  2307. "onclick": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_chjyjStudentDeskIconInfo[i]])
  2311. }, _frag); //
  2312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2315. }
  2316. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2317. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2318. _content = $$("div", {
  2319. className: "U_MD_D_KO",
  2320. "onmousedown": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_szjkyStudentDeskIconInfo[i]]),
  2324. "onclick": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_szjkyStudentDeskIconInfo[i]])
  2328. }, _frag); //
  2329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2332. }
  2333. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2334. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2335. _content = $$("div", {
  2336. className: "U_MD_D_KO",
  2337. "onmousedown": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_x020201StudentDeskIconInfo[i]]),
  2341. "onclick": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_x020201StudentDeskIconInfo[i]])
  2345. }, _frag); //
  2346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2349. }
  2350. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2351. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2352. _content = $$("div", {
  2353. className: "U_MD_D_KO",
  2354. "onmousedown": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_SCNUETStudentDeskIconInfo[i]]),
  2358. "onclick": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_SCNUETStudentDeskIconInfo[i]])
  2362. }, _frag); //
  2363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2366. }
  2367. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2368. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2369. _content = $$("div", {
  2370. className: "U_MD_D_KO",
  2371. "onmousedown": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_dseiStudentDeskIconInfo[i]]),
  2375. "onclick": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_dseiStudentDeskIconInfo[i]])
  2379. }, _frag); //
  2380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2383. }
  2384. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2385. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2386. _content = $$("div", {
  2387. className: "U_MD_D_KO",
  2388. "onmousedown": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2392. "onclick": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2396. }, _frag); //
  2397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2400. }
  2401. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2402. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2403. _content = $$("div", {
  2404. className: "U_MD_D_KO",
  2405. "onmousedown": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_nsfxStudentDeskIconInfo[i]]),
  2409. "onclick": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_nsfxStudentDeskIconInfo[i]])
  2413. }, _frag); //
  2414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2417. }
  2418. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2419. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2420. _content = $$("div", {
  2421. className: "U_MD_D_KO",
  2422. "onmousedown": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_stiaStudentDeskIconInfo[i]]),
  2426. "onclick": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_stiaStudentDeskIconInfo[i]])
  2430. }, _frag); //
  2431. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2432. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2433. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2434. }
  2435. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2436. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2437. _content = $$("div", {
  2438. className: "U_MD_D_KO",
  2439. "onmousedown": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_szdjgStudentDeskIconInfo[i]]),
  2443. "onclick": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_szdjgStudentDeskIconInfo[i]])
  2447. }, _frag); //
  2448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2451. }
  2452. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2453. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2454. _content = $$("div", {
  2455. className: "U_MD_D_KO",
  2456. "onmousedown": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_x010607StudentDeskIconInfo[i]]),
  2460. "onclick": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_x010607StudentDeskIconInfo[i]])
  2464. }, _frag); //
  2465. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2466. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2467. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2468. }
  2469. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2470. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2471. _content = $$("div", {
  2472. className: "U_MD_D_KO",
  2473. "onmousedown": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_xhlyStudentDeskIconInfo[i]]),
  2477. "onclick": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_xhlyStudentDeskIconInfo[i]])
  2481. }, _frag); //
  2482. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2483. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2484. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2485. }
  2486. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2487. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2488. _content = $$("div", {
  2489. className: "U_MD_D_KO",
  2490. "onmousedown": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2494. "onclick": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2498. }, _frag); //
  2499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2502. }
  2503. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2504. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2505. _content = $$("div", {
  2506. className: "U_MD_D_KO",
  2507. "onmousedown": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_x010503StudentDeskIconInfo[i]]),
  2511. "onclick": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_x010503StudentDeskIconInfo[i]])
  2515. }, _frag); //
  2516. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2517. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2518. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2519. }
  2520. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2521. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2522. _content = $$("div", {
  2523. className: "U_MD_D_KO",
  2524. "onmousedown": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_x010504StudentDeskIconInfo[i]]),
  2528. "onclick": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_x010504StudentDeskIconInfo[i]])
  2532. }, _frag); //
  2533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2536. }
  2537. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2538. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2539. _content = $$("div", {
  2540. className: "U_MD_D_KO",
  2541. "onmousedown": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_x010204StudentDeskIconInfo[i]]),
  2545. "onclick": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_x010204StudentDeskIconInfo[i]])
  2549. }, _frag); //
  2550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2553. }
  2554. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2555. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2556. _content = $$("div", {
  2557. className: "U_MD_D_KO",
  2558. "onmousedown": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_x320101StudentDeskIconInfo[i]]),
  2562. "onclick": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_x320101StudentDeskIconInfo[i]])
  2566. }, _frag); //
  2567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2570. }
  2571. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2572. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2573. _content = $$("div", {
  2574. className: "U_MD_D_KO",
  2575. "onmousedown": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_trailStudentDeskIconInfo[i]]),
  2579. "onclick": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_trailStudentDeskIconInfo[i]])
  2583. }, _frag); //
  2584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2587. }
  2588. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2589. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2590. _content = $$("div", {
  2591. className: "U_MD_D_KO",
  2592. "onmousedown": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2596. "onclick": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2600. }, _frag); //
  2601. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2602. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2603. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2604. }
  2605. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2606. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2607. _content = $$("div", {
  2608. className: "U_MD_D_KO",
  2609. "onmousedown": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_x010608StudentDeskIconInfo[i]]),
  2613. "onclick": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_x010608StudentDeskIconInfo[i]])
  2617. }, _frag); //
  2618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2621. }
  2622. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2623. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. "onmousedown": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_x010611StudentDeskIconInfo[i]]),
  2630. "onclick": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_x010611StudentDeskIconInfo[i]])
  2634. }, _frag); //
  2635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2638. }
  2639. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2640. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2641. _content = $$("div", {
  2642. className: "U_MD_D_KO",
  2643. "onmousedown": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_tianyuantudentDeskIconInfo[i]]),
  2647. "onclick": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_tianyuantudentDeskIconInfo[i]])
  2651. }, _frag); //
  2652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2655. }
  2656. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2657. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2658. _content = $$("div", {
  2659. className: "U_MD_D_KO",
  2660. "onmousedown": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_siesStudentDeskIconInfo[i]]),
  2664. "onclick": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_siesStudentDeskIconInfo[i]])
  2668. }, _frag); //
  2669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2672. }
  2673. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2674. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2675. _content = $$("div", {
  2676. className: "U_MD_D_KO",
  2677. "onmousedown": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_guzmsStudentDeskIconInfo[i]]),
  2681. "onclick": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_guzmsStudentDeskIconInfo[i]])
  2685. }, _frag); //
  2686. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2687. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2688. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2689. }
  2690. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2691. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2692. _content = $$("div", {
  2693. className: "U_MD_D_KO",
  2694. "onmousedown": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_hkStudentDeskIconInfo[i]]),
  2698. "onclick": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_hkStudentDeskIconInfo[i]])
  2702. }, _frag); //
  2703. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2706. }
  2707. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2708. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2709. _content = $$("div", {
  2710. className: "U_MD_D_KO",
  2711. "onmousedown": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_hkaceStudentDeskIconInfo[i]]),
  2715. "onclick": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_hkaceStudentDeskIconInfo[i]])
  2719. }, _frag); //
  2720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2723. }
  2724. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2725. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2726. _content = $$("div", {
  2727. className: "U_MD_D_KO",
  2728. "onmousedown": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2732. "onclick": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_BSDNSstudentDesktopIconInfo[i]])
  2736. }, _frag); //
  2737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2740. }
  2741. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2742. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2743. _content = $$("div", {
  2744. className: "U_MD_D_KO",
  2745. "onmousedown": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_cocobizStudentDeskIconInfo[i]]),
  2749. "onclick": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_cocobizStudentDeskIconInfo[i]])
  2753. }, _frag); //
  2754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2757. }
  2758. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2759. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2760. _content = $$("div", {
  2761. className: "U_MD_D_KO",
  2762. "onmousedown": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2766. "onclick": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_xxzjkyStudentDeskIconInfo[i]])
  2770. }, _frag); //
  2771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2774. }
  2775. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2776. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2777. _content = $$("div", {
  2778. className: "U_MD_D_KO",
  2779. "onmousedown": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_studentDesktopIconInfo[i]]),
  2783. "onclick": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_studentDesktopIconInfo[i]])
  2787. }, _frag); //
  2788. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2789. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2790. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2791. }
  2792. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2793. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2794. _content = $$("div", {
  2795. className: "U_MD_D_KO",
  2796. "onmousedown": U.UF.C.closure(function (obj) {
  2797. //防止拖动图标即打开了桌面应用
  2798. U.MD.D.click(this, obj);
  2799. }, [_tcStudentDeskIconInfo[i]]),
  2800. "onclick": U.UF.C.closure(function (obj) {
  2801. //防止拖动图标即打开了桌面应用
  2802. U.MD.D.click(this, obj);
  2803. }, [_tcStudentDeskIconInfo[i]])
  2804. }, _frag); //
  2805. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2806. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2807. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2808. }
  2809. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2810. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2811. _content = $$("div", {
  2812. className: "U_MD_D_KO",
  2813. "onmousedown": U.UF.C.closure(function (obj) {
  2814. //防止拖动图标即打开了桌面应用
  2815. U.MD.D.click(this, obj);
  2816. }, [_szscStudentDeskIconInfo[i]]),
  2817. "onclick": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_szscStudentDeskIconInfo[i]])
  2821. }, _frag); //
  2822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2825. }
  2826. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2827. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2828. _content = $$("div", {
  2829. className: "U_MD_D_KO",
  2830. "onmousedown": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_studentDesktopIconInfo3[i]]),
  2834. "onclick": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_studentDesktopIconInfo3[i]])
  2838. }, _frag); //
  2839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2842. }
  2843. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2844. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2845. _content = $$("div", {
  2846. className: "U_MD_D_KO",
  2847. "onmousedown": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_studentDesktopIconInfo2[i]]),
  2851. "onclick": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_studentDesktopIconInfo2[i]])
  2855. }, _frag); //
  2856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2859. }
  2860. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2861. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2862. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2863. continue
  2864. }
  2865. _content = $$("div", {
  2866. className: "U_MD_D_KO",
  2867. "onmousedown": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_wanketeacherDesktopIconInfo[i]]),
  2871. "onclick": U.UF.C.closure(function (obj) {
  2872. //防止拖动图标即打开了桌面应用
  2873. U.MD.D.click(this, obj);
  2874. }, [_wanketeacherDesktopIconInfo[i]])
  2875. }, _frag); //
  2876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2879. }
  2880. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2881. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2882. _content = $$("div", {
  2883. className: "U_MD_D_KO",
  2884. "onmousedown": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_wankeAdminDesktopIconInfo[i]]),
  2888. "onclick": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_wankeAdminDesktopIconInfo[i]])
  2892. }, _frag); //
  2893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2896. }
  2897. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2898. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2899. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2900. continue
  2901. }
  2902. _content = $$("div", {
  2903. className: "U_MD_D_KO",
  2904. "onmousedown": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2908. "onclick": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_scnuaiTeacherDeskIconInfo[i]])
  2912. }, _frag); //
  2913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2916. }
  2917. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2918. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2919. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2920. continue
  2921. }
  2922. _content = $$("div", {
  2923. className: "U_MD_D_KO",
  2924. "onmousedown": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2928. "onclick": U.UF.C.closure(function (obj) {
  2929. //防止拖动图标即打开了桌面应用
  2930. U.MD.D.click(this, obj);
  2931. }, [_BSDNSteacherDesktopIconInfo[i]])
  2932. }, _frag); //
  2933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2936. }
  2937. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2938. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2939. _content = $$("div", {
  2940. className: "U_MD_D_KO",
  2941. "onmousedown": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_scnuaiAdminDeskIconInfo[i]]),
  2945. "onclick": U.UF.C.closure(function (obj) {
  2946. //防止拖动图标即打开了桌面应用
  2947. U.MD.D.click(this, obj);
  2948. }, [_scnuaiAdminDeskIconInfo[i]])
  2949. }, _frag); //
  2950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2953. }
  2954. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2955. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2956. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2957. continue
  2958. }
  2959. _content = $$("div", {
  2960. className: "U_MD_D_KO",
  2961. "onmousedown": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_jccssylTeacherDeskIconInfo[i]]),
  2965. "onclick": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_jccssylTeacherDeskIconInfo[i]])
  2969. }, _frag); //
  2970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2973. }
  2974. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2975. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2976. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2977. continue
  2978. }
  2979. _content = $$("div", {
  2980. className: "U_MD_D_KO",
  2981. "onmousedown": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_caleTeacherDeskIconInfo[i]]),
  2985. "onclick": U.UF.C.closure(function (obj) {
  2986. //防止拖动图标即打开了桌面应用
  2987. U.MD.D.click(this, obj);
  2988. }, [_caleTeacherDeskIconInfo[i]])
  2989. }, _frag); //
  2990. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2991. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2992. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2993. }
  2994. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2995. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2996. _content = $$("div", {
  2997. className: "U_MD_D_KO",
  2998. "onmousedown": U.UF.C.closure(function (obj) {
  2999. //防止拖动图标即打开了桌面应用
  3000. U.MD.D.click(this, obj);
  3001. }, [_tpcOrganizerDeskIconInfo[i]]),
  3002. "onclick": U.UF.C.closure(function (obj) {
  3003. //防止拖动图标即打开了桌面应用
  3004. U.MD.D.click(this, obj);
  3005. }, [_tpcOrganizerDeskIconInfo[i]])
  3006. }, _frag); //
  3007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3010. }
  3011. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3012. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3013. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3014. continue
  3015. }
  3016. _content = $$("div", {
  3017. className: "U_MD_D_KO",
  3018. "onmousedown": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_tpcTeacherDeskIconInfo[i]]),
  3022. "onclick": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_tpcTeacherDeskIconInfo[i]])
  3026. }, _frag); //
  3027. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3028. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3029. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3030. }
  3031. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3032. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3033. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3034. continue
  3035. }
  3036. _content = $$("div", {
  3037. className: "U_MD_D_KO",
  3038. "onmousedown": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_teacherDesktopIconInfo2[i]]),
  3042. "onclick": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_teacherDesktopIconInfo2[i]])
  3046. }, _frag); //
  3047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3050. }
  3051. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3052. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3053. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3054. continue
  3055. }
  3056. _content = $$("div", {
  3057. className: "U_MD_D_KO",
  3058. "onmousedown": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_thuioeTeacherDeskIconInfo[i]]),
  3062. "onclick": U.UF.C.closure(function (obj) {
  3063. //防止拖动图标即打开了桌面应用
  3064. U.MD.D.click(this, obj);
  3065. }, [_thuioeTeacherDeskIconInfo[i]])
  3066. }, _frag); //
  3067. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3068. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3069. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3070. }
  3071. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3072. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3073. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3074. continue
  3075. }
  3076. _content = $$("div", {
  3077. className: "U_MD_D_KO",
  3078. "onmousedown": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_lotechTeacherDeskIconInfo[i]]),
  3082. "onclick": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_lotechTeacherDeskIconInfo[i]])
  3086. }, _frag); //
  3087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3090. }//
  3091. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3092. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3093. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3094. continue
  3095. }
  3096. _content = $$("div", {
  3097. className: "U_MD_D_KO",
  3098. "onmousedown": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3102. "onclick": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3106. }, _frag); //
  3107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3110. }
  3111. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3112. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3113. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3114. continue
  3115. }
  3116. _content = $$("div", {
  3117. className: "U_MD_D_KO",
  3118. "onmousedown": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_siesTeacherDeskIconInfo[i]]),
  3122. "onclick": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_siesTeacherDeskIconInfo[i]])
  3126. }, _frag); //
  3127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3130. }
  3131. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3132. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3133. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3134. continue
  3135. }
  3136. _content = $$("div", {
  3137. className: "U_MD_D_KO",
  3138. "onmousedown": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_guzmsTeacherDeskIconInfo[i]]),
  3142. "onclick": U.UF.C.closure(function (obj) {
  3143. //防止拖动图标即打开了桌面应用
  3144. U.MD.D.click(this, obj);
  3145. }, [_guzmsTeacherDeskIconInfo[i]])
  3146. }, _frag); //
  3147. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3148. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3149. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3150. }
  3151. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3152. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3153. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3154. continue
  3155. }
  3156. _content = $$("div", {
  3157. className: "U_MD_D_KO",
  3158. "onmousedown": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_longhuaTeacherDeskIconInfo[i]]),
  3162. "onclick": U.UF.C.closure(function (obj) {
  3163. //防止拖动图标即打开了桌面应用
  3164. U.MD.D.click(this, obj);
  3165. }, [_longhuaTeacherDeskIconInfo[i]])
  3166. }, _frag); //
  3167. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3168. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3169. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3170. }
  3171. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3172. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3173. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3174. continue
  3175. }
  3176. _content = $$("div", {
  3177. className: "U_MD_D_KO",
  3178. "onmousedown": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_ytyTeacherDeskIconInfo[i]]),
  3182. "onclick": U.UF.C.closure(function (obj) {
  3183. //防止拖动图标即打开了桌面应用
  3184. U.MD.D.click(this, obj);
  3185. }, [_ytyTeacherDeskIconInfo[i]])
  3186. }, _frag); //
  3187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3190. }
  3191. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3192. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3193. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3194. continue
  3195. }
  3196. _content = $$("div", {
  3197. className: "U_MD_D_KO",
  3198. "onmousedown": U.UF.C.closure(function (obj) {
  3199. //防止拖动图标即打开了桌面应用
  3200. U.MD.D.click(this, obj);
  3201. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3202. "onclick": U.UF.C.closure(function (obj) {
  3203. //防止拖动图标即打开了桌面应用
  3204. U.MD.D.click(this, obj);
  3205. }, [_yunhaiTeacherDeskIconInfo[i]])
  3206. }, _frag); //
  3207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3210. } //_hkStudentDeskIconInfo
  3211. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3212. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3213. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3214. continue
  3215. }
  3216. _content = $$("div", {
  3217. className: "U_MD_D_KO",
  3218. "onmousedown": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3232. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3233. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3234. continue
  3235. }
  3236. _content = $$("div", {
  3237. className: "U_MD_D_KO",
  3238. "onmousedown": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_hkTeacherDeskIconInfo[i]]),
  3242. "onclick": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_hkTeacherDeskIconInfo[i]])
  3246. }, _frag); //
  3247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3250. }
  3251. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3252. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3253. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3254. continue
  3255. }
  3256. _content = $$("div", {
  3257. className: "U_MD_D_KO",
  3258. "onmousedown": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_hkaceTeacherDeskIconInfo[i]]),
  3262. "onclick": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_hkaceTeacherDeskIconInfo[i]])
  3266. }, _frag); //
  3267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3270. }
  3271. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3272. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3273. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3274. continue
  3275. }
  3276. _content = $$("div", {
  3277. className: "U_MD_D_KO",
  3278. "onmousedown": U.UF.C.closure(function (obj) {
  3279. //防止拖动图标即打开了桌面应用
  3280. U.MD.D.click(this, obj);
  3281. }, [_cocobizTeacherDeskIconInfo[i]]),
  3282. "onclick": U.UF.C.closure(function (obj) {
  3283. //防止拖动图标即打开了桌面应用
  3284. U.MD.D.click(this, obj);
  3285. }, [_cocobizTeacherDeskIconInfo[i]])
  3286. }, _frag); //
  3287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3290. }
  3291. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3292. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3293. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3294. continue
  3295. }
  3296. _content = $$("div", {
  3297. className: "U_MD_D_KO",
  3298. "onmousedown": U.UF.C.closure(function (obj) {
  3299. //防止拖动图标即打开了桌面应用
  3300. U.MD.D.click(this, obj);
  3301. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3302. "onclick": U.UF.C.closure(function (obj) {
  3303. //防止拖动图标即打开了桌面应用
  3304. U.MD.D.click(this, obj);
  3305. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3306. }, _frag); //
  3307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3310. }
  3311. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3312. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3313. _content = $$("div", {
  3314. className: "U_MD_D_KO",
  3315. "onmousedown": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_gdjgAdminDeskIconInfo[i]]),
  3319. "onclick": U.UF.C.closure(function (obj) {
  3320. //防止拖动图标即打开了桌面应用
  3321. U.MD.D.click(this, obj);
  3322. }, [_gdjgAdminDeskIconInfo[i]])
  3323. }, _frag); //
  3324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3327. }
  3328. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3329. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3330. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3331. continue
  3332. }
  3333. _content = $$("div", {
  3334. className: "U_MD_D_KO",
  3335. "onmousedown": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_gdjgTeacherDeskIconInfo[i]]),
  3339. "onclick": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_gdjgTeacherDeskIconInfo[i]])
  3343. }, _frag); //
  3344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3347. }
  3348. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3349. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3350. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3351. continue
  3352. }
  3353. _content = $$("div", {
  3354. className: "U_MD_D_KO",
  3355. "onmousedown": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_szherTeacherDeskIconInfo[i]]),
  3359. "onclick": U.UF.C.closure(function (obj) {
  3360. //防止拖动图标即打开了桌面应用
  3361. U.MD.D.click(this, obj);
  3362. }, [_szherTeacherDeskIconInfo[i]])
  3363. }, _frag); //
  3364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3367. }
  3368. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3369. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3370. _content = $$("div", {
  3371. className: "U_MD_D_KO",
  3372. "onmousedown": U.UF.C.closure(function (obj) {
  3373. //防止拖动图标即打开了桌面应用
  3374. U.MD.D.click(this, obj);
  3375. }, [_heyuannAdminDeskIconInfo[i]]),
  3376. "onclick": U.UF.C.closure(function (obj) {
  3377. //防止拖动图标即打开了桌面应用
  3378. U.MD.D.click(this, obj);
  3379. }, [_heyuannAdminDeskIconInfo[i]])
  3380. }, _frag); //
  3381. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3382. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3383. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3384. }
  3385. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3386. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3387. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3388. continue
  3389. }
  3390. _content = $$("div", {
  3391. className: "U_MD_D_KO",
  3392. "onmousedown": U.UF.C.closure(function (obj) {
  3393. //防止拖动图标即打开了桌面应用
  3394. U.MD.D.click(this, obj);
  3395. }, [_heyuanTeacherDeskIconInfo[i]]),
  3396. "onclick": U.UF.C.closure(function (obj) {
  3397. //防止拖动图标即打开了桌面应用
  3398. U.MD.D.click(this, obj);
  3399. }, [_heyuanTeacherDeskIconInfo[i]])
  3400. }, _frag); //
  3401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3404. } //
  3405. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3406. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3407. _content = $$("div", {
  3408. className: "U_MD_D_KO",
  3409. "onmousedown": U.UF.C.closure(function (obj) {
  3410. //防止拖动图标即打开了桌面应用
  3411. U.MD.D.click(this, obj);
  3412. }, [_dseiAdminDeskIconInfo[i]]),
  3413. "onclick": U.UF.C.closure(function (obj) {
  3414. //防止拖动图标即打开了桌面应用
  3415. U.MD.D.click(this, obj);
  3416. }, [_dseiAdminDeskIconInfo[i]])
  3417. }, _frag); //
  3418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3421. }
  3422. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3423. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3424. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3425. continue
  3426. }
  3427. _content = $$("div", {
  3428. className: "U_MD_D_KO",
  3429. "onmousedown": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_dseiTeacherDeskIconInfo[i]]),
  3433. "onclick": U.UF.C.closure(function (obj) {
  3434. //防止拖动图标即打开了桌面应用
  3435. U.MD.D.click(this, obj);
  3436. }, [_dseiTeacherDeskIconInfo[i]])
  3437. }, _frag); //
  3438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3441. } //
  3442. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3443. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3444. _content = $$("div", {
  3445. className: "U_MD_D_KO",
  3446. "onmousedown": U.UF.C.closure(function (obj) {
  3447. //防止拖动图标即打开了桌面应用
  3448. U.MD.D.click(this, obj);
  3449. }, [_chjyjAdminDeskIconInfo[i]]),
  3450. "onclick": U.UF.C.closure(function (obj) {
  3451. //防止拖动图标即打开了桌面应用
  3452. U.MD.D.click(this, obj);
  3453. }, [_chjyjAdminDeskIconInfo[i]])
  3454. }, _frag); //
  3455. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3456. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3457. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3458. }//
  3459. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3460. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3461. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3462. continue
  3463. }
  3464. _content = $$("div", {
  3465. className: "U_MD_D_KO",
  3466. "onmousedown": U.UF.C.closure(function (obj) {
  3467. //防止拖动图标即打开了桌面应用
  3468. U.MD.D.click(this, obj);
  3469. }, [_chjyjTeacherDeskIconInfo[i]]),
  3470. "onclick": U.UF.C.closure(function (obj) {
  3471. //防止拖动图标即打开了桌面应用
  3472. U.MD.D.click(this, obj);
  3473. }, [_chjyjTeacherDeskIconInfo[i]])
  3474. }, _frag); //
  3475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3478. }
  3479. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3480. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3481. _content = $$("div", {
  3482. className: "U_MD_D_KO",
  3483. "onmousedown": U.UF.C.closure(function (obj) {
  3484. //防止拖动图标即打开了桌面应用
  3485. U.MD.D.click(this, obj);
  3486. }, [_szjkyAdminDeskIconInfo[i]]),
  3487. "onclick": U.UF.C.closure(function (obj) {
  3488. //防止拖动图标即打开了桌面应用
  3489. U.MD.D.click(this, obj);
  3490. }, [_szjkyAdminDeskIconInfo[i]])
  3491. }, _frag); //
  3492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3495. }//
  3496. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3497. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3498. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3499. continue
  3500. }
  3501. _content = $$("div", {
  3502. className: "U_MD_D_KO",
  3503. "onmousedown": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_szjkyTeacherDeskIconInfo[i]]),
  3507. "onclick": U.UF.C.closure(function (obj) {
  3508. //防止拖动图标即打开了桌面应用
  3509. U.MD.D.click(this, obj);
  3510. }, [_szjkyTeacherDeskIconInfo[i]])
  3511. }, _frag); //
  3512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3515. }
  3516. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3517. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3518. _content = $$("div", {
  3519. className: "U_MD_D_KO",
  3520. "onmousedown": U.UF.C.closure(function (obj) {
  3521. //防止拖动图标即打开了桌面应用
  3522. U.MD.D.click(this, obj);
  3523. }, [_x020201AdminDeskIconInfo[i]]),
  3524. "onclick": U.UF.C.closure(function (obj) {
  3525. //防止拖动图标即打开了桌面应用
  3526. U.MD.D.click(this, obj);
  3527. }, [_x020201AdminDeskIconInfo[i]])
  3528. }, _frag); //
  3529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3532. }//
  3533. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3534. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3535. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3536. continue
  3537. }
  3538. _content = $$("div", {
  3539. className: "U_MD_D_KO",
  3540. "onmousedown": U.UF.C.closure(function (obj) {
  3541. //防止拖动图标即打开了桌面应用
  3542. U.MD.D.click(this, obj);
  3543. }, [_x020201TeacherDeskIconInfo[i]]),
  3544. "onclick": U.UF.C.closure(function (obj) {
  3545. //防止拖动图标即打开了桌面应用
  3546. U.MD.D.click(this, obj);
  3547. }, [_x020201TeacherDeskIconInfo[i]])
  3548. }, _frag); //
  3549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3552. }
  3553. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3554. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3555. _content = $$("div", {
  3556. className: "U_MD_D_KO",
  3557. "onmousedown": U.UF.C.closure(function (obj) {
  3558. //防止拖动图标即打开了桌面应用
  3559. U.MD.D.click(this, obj);
  3560. }, [_SCNUETAdminDeskIconInfo[i]]),
  3561. "onclick": U.UF.C.closure(function (obj) {
  3562. //防止拖动图标即打开了桌面应用
  3563. U.MD.D.click(this, obj);
  3564. }, [_SCNUETAdminDeskIconInfo[i]])
  3565. }, _frag); //
  3566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3569. }//
  3570. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3571. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3572. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3573. continue
  3574. }
  3575. _content = $$("div", {
  3576. className: "U_MD_D_KO",
  3577. "onmousedown": U.UF.C.closure(function (obj) {
  3578. //防止拖动图标即打开了桌面应用
  3579. U.MD.D.click(this, obj);
  3580. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3581. "onclick": U.UF.C.closure(function (obj) {
  3582. //防止拖动图标即打开了桌面应用
  3583. U.MD.D.click(this, obj);
  3584. }, [_SCNUETTeacherDeskIconInfo[i]])
  3585. }, _frag); //
  3586. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3587. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3588. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3589. }
  3590. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3591. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3592. _content = $$("div", {
  3593. className: "U_MD_D_KO",
  3594. "onmousedown": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_futianAdminDeskIconInfo[i]]),
  3598. "onclick": U.UF.C.closure(function (obj) {
  3599. //防止拖动图标即打开了桌面应用
  3600. U.MD.D.click(this, obj);
  3601. }, [_futianAdminDeskIconInfo[i]])
  3602. }, _frag); //
  3603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3606. }
  3607. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3608. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3609. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3610. continue
  3611. }
  3612. _content = $$("div", {
  3613. className: "U_MD_D_KO",
  3614. "onmousedown": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_futianTeacherDeskIconInfo[i]]),
  3618. "onclick": U.UF.C.closure(function (obj) {
  3619. //防止拖动图标即打开了桌面应用
  3620. U.MD.D.click(this, obj);
  3621. }, [_futianTeacherDeskIconInfo[i]])
  3622. }, _frag); //
  3623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3626. }
  3627. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3628. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3629. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3630. continue
  3631. }
  3632. _content = $$("div", {
  3633. className: "U_MD_D_KO",
  3634. "onmousedown": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_MingdeTeacherDeskIcon[i]]),
  3638. "onclick": U.UF.C.closure(function (obj) {
  3639. //防止拖动图标即打开了桌面应用
  3640. U.MD.D.click(this, obj);
  3641. }, [_MingdeTeacherDeskIcon[i]])
  3642. }, _frag); //
  3643. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3644. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3645. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3646. }
  3647. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3648. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3649. _content = $$("div", {
  3650. className: "U_MD_D_KO",
  3651. "onmousedown": U.UF.C.closure(function (obj) {
  3652. //防止拖动图标即打开了桌面应用
  3653. U.MD.D.click(this, obj);
  3654. }, [_lhsAdminDesktopIconInfo[i]]),
  3655. "onclick": U.UF.C.closure(function (obj) {
  3656. //防止拖动图标即打开了桌面应用
  3657. U.MD.D.click(this, obj);
  3658. }, [_lhsAdminDesktopIconInfo[i]])
  3659. }, _frag); //
  3660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3663. }
  3664. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3665. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3666. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3667. continue
  3668. }
  3669. _content = $$("div", {
  3670. className: "U_MD_D_KO",
  3671. "onmousedown": U.UF.C.closure(function (obj) {
  3672. //防止拖动图标即打开了桌面应用
  3673. U.MD.D.click(this, obj);
  3674. }, [_lhsteacherDesktopIconInfo[i]]),
  3675. "onclick": U.UF.C.closure(function (obj) {
  3676. //防止拖动图标即打开了桌面应用
  3677. U.MD.D.click(this, obj);
  3678. }, [_lhsteacherDesktopIconInfo[i]])
  3679. }, _frag); //
  3680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3683. }
  3684. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3685. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3686. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3687. continue
  3688. }
  3689. _content = $$("div", {
  3690. className: "U_MD_D_KO",
  3691. "onmousedown": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3695. "onclick": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_zhoujiateacherDesktopIconInfo[i]])
  3699. }, _frag); //
  3700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3703. }
  3704. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3705. for (i = 0; i < _hanDeskIcon.length; i++) {
  3706. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3707. continue
  3708. }
  3709. _content = $$("div", {
  3710. className: "U_MD_D_KO",
  3711. "onmousedown": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_hanDeskIcon[i]]),
  3715. "onclick": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_hanDeskIcon[i]])
  3719. }, _frag); //
  3720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3723. }
  3724. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3725. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3726. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3727. continue
  3728. }
  3729. _content = $$("div", {
  3730. className: "U_MD_D_KO",
  3731. "onmousedown": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_orgStemDeskIcon[i]]),
  3735. "onclick": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_orgStemDeskIcon[i]])
  3739. }, _frag); //
  3740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3743. }
  3744. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3745. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3746. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3747. continue
  3748. }
  3749. _content = $$("div", {
  3750. className: "U_MD_D_KO",
  3751. "onmousedown": U.UF.C.closure(function (obj) {
  3752. //防止拖动图标即打开了桌面应用
  3753. U.MD.D.click(this, obj);
  3754. }, [_szulsDeskIcon[i]]),
  3755. "onclick": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_szulsDeskIcon[i]])
  3759. }, _frag); //
  3760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3763. }
  3764. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3765. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3766. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3767. continue
  3768. }
  3769. _content = $$("div", {
  3770. className: "U_MD_D_KO",
  3771. "onmousedown": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_orgDesktopIconInfo[i]]),
  3775. "onclick": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_orgDesktopIconInfo[i]])
  3779. }, _frag); //
  3780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3783. }
  3784. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3785. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3786. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3787. continue
  3788. }
  3789. _content = $$("div", {
  3790. className: "U_MD_D_KO",
  3791. "onmousedown": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_schoolDesktopIconInfo[i]]),
  3795. "onclick": U.UF.C.closure(function (obj) {
  3796. //防止拖动图标即打开了桌面应用
  3797. U.MD.D.click(this, obj);
  3798. }, [_schoolDesktopIconInfo[i]])
  3799. }, _frag); //
  3800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3803. }
  3804. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3805. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3806. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3807. continue
  3808. }
  3809. _content = $$("div", {
  3810. className: "U_MD_D_KO",
  3811. "onmousedown": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_GMteacherDesktopIconInfo[i]]),
  3815. "onclick": U.UF.C.closure(function (obj) {
  3816. //防止拖动图标即打开了桌面应用
  3817. U.MD.D.click(this, obj);
  3818. }, [_GMteacherDesktopIconInfo[i]])
  3819. }, _frag); //
  3820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3823. }
  3824. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3825. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3826. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3827. continue
  3828. }
  3829. _content = $$("div", {
  3830. className: "U_MD_D_KO",
  3831. "onmousedown": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_SONGteacherDesktopIconInfo[i]]),
  3835. "onclick": U.UF.C.closure(function (obj) {
  3836. //防止拖动图标即打开了桌面应用
  3837. U.MD.D.click(this, obj);
  3838. }, [_SONGteacherDesktopIconInfo[i]])
  3839. }, _frag); //
  3840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3843. }
  3844. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3845. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3846. _content = $$("div", {
  3847. className: "U_MD_D_KO",
  3848. "onmousedown": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_GMstudentDesktopIconInfo[i]]),
  3852. "onclick": U.UF.C.closure(function (obj) {
  3853. //防止拖动图标即打开了桌面应用
  3854. U.MD.D.click(this, obj);
  3855. }, [_GMstudentDesktopIconInfo[i]])
  3856. }, _frag); //
  3857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3860. }
  3861. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3862. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3863. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3864. continue
  3865. }
  3866. _content = $$("div", {
  3867. className: "U_MD_D_KO",
  3868. "onmousedown": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_tcTeacherDeskIconInfo[i]]),
  3872. "onclick": U.UF.C.closure(function (obj) {
  3873. //防止拖动图标即打开了桌面应用
  3874. U.MD.D.click(this, obj);
  3875. }, [_tcTeacherDeskIconInfo[i]])
  3876. }, _frag); //
  3877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3880. }
  3881. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3882. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3883. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3884. continue
  3885. }
  3886. _content = $$("div", {
  3887. className: "U_MD_D_KO",
  3888. "onmousedown": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_tcOrganizerDeskIconInfo[i]]),
  3892. "onclick": U.UF.C.closure(function (obj) {
  3893. //防止拖动图标即打开了桌面应用
  3894. U.MD.D.click(this, obj);
  3895. }, [_tcOrganizerDeskIconInfo[i]])
  3896. }, _frag); //
  3897. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3898. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3899. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3900. }
  3901. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3902. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3903. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3904. continue
  3905. }
  3906. _content = $$("div", {
  3907. className: "U_MD_D_KO",
  3908. "onmousedown": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_szscTeacherDeskIconInfo[i]]),
  3912. "onclick": U.UF.C.closure(function (obj) {
  3913. //防止拖动图标即打开了桌面应用
  3914. U.MD.D.click(this, obj);
  3915. }, [_szscTeacherDeskIconInfo[i]])
  3916. }, _frag); //
  3917. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3918. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3919. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3920. }
  3921. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3922. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3923. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3924. continue
  3925. }
  3926. _content = $$("div", {
  3927. className: "U_MD_D_KO",
  3928. "onmousedown": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_szscOrganizerDeskIconInfo[i]]),
  3932. "onclick": U.UF.C.closure(function (obj) {
  3933. //防止拖动图标即打开了桌面应用
  3934. U.MD.D.click(this, obj);
  3935. }, [_szscOrganizerDeskIconInfo[i]])
  3936. }, _frag); //
  3937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3940. }
  3941. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3942. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3943. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3944. continue
  3945. }
  3946. _content = $$("div", {
  3947. className: "U_MD_D_KO",
  3948. "onmousedown": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_nsfxTeacherDeskIconInfo[i]]),
  3952. "onclick": U.UF.C.closure(function (obj) {
  3953. //防止拖动图标即打开了桌面应用
  3954. U.MD.D.click(this, obj);
  3955. }, [_nsfxTeacherDeskIconInfo[i]])
  3956. }, _frag); //
  3957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3960. }
  3961. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3962. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3963. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3964. continue
  3965. }
  3966. _content = $$("div", {
  3967. className: "U_MD_D_KO",
  3968. "onmousedown": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_stiaTeacherDeskIconInfo[i]]),
  3972. "onclick": U.UF.C.closure(function (obj) {
  3973. //防止拖动图标即打开了桌面应用
  3974. U.MD.D.click(this, obj);
  3975. }, [_stiaTeacherDeskIconInfo[i]])
  3976. }, _frag); //
  3977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3980. }
  3981. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3982. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3983. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3984. continue
  3985. }
  3986. _content = $$("div", {
  3987. className: "U_MD_D_KO",
  3988. "onmousedown": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_szdjgTeacherDeskIconInfo[i]]),
  3992. "onclick": U.UF.C.closure(function (obj) {
  3993. //防止拖动图标即打开了桌面应用
  3994. U.MD.D.click(this, obj);
  3995. }, [_szdjgTeacherDeskIconInfo[i]])
  3996. }, _frag); //
  3997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4000. }
  4001. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4002. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4003. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4004. continue
  4005. }
  4006. _content = $$("div", {
  4007. className: "U_MD_D_KO",
  4008. "onmousedown": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_x010607TeacherDeskIconInfo[i]]),
  4012. "onclick": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_x010607TeacherDeskIconInfo[i]])
  4016. }, _frag); //
  4017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4020. }
  4021. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4022. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4023. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4024. continue
  4025. }
  4026. _content = $$("div", {
  4027. className: "U_MD_D_KO",
  4028. "onmousedown": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_xhlyTeacherDeskIconInfo[i]]),
  4032. "onclick": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_xhlyTeacherDeskIconInfo[i]])
  4036. }, _frag); //
  4037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4040. }
  4041. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4042. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4043. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4044. continue
  4045. }
  4046. _content = $$("div", {
  4047. className: "U_MD_D_KO",
  4048. "onmousedown": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4052. "onclick": U.UF.C.closure(function (obj) {
  4053. //防止拖动图标即打开了桌面应用
  4054. U.MD.D.click(this, obj);
  4055. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4056. }, _frag); //
  4057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4060. }
  4061. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4062. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4063. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4064. continue
  4065. }
  4066. _content = $$("div", {
  4067. className: "U_MD_D_KO",
  4068. "onmousedown": U.UF.C.closure(function (obj) {
  4069. //防止拖动图标即打开了桌面应用
  4070. U.MD.D.click(this, obj);
  4071. }, [_x010503TeacherDeskIconInfo[i]]),
  4072. "onclick": U.UF.C.closure(function (obj) {
  4073. //防止拖动图标即打开了桌面应用
  4074. U.MD.D.click(this, obj);
  4075. }, [_x010503TeacherDeskIconInfo[i]])
  4076. }, _frag); //
  4077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4080. }
  4081. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4082. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4083. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4084. continue
  4085. }
  4086. _content = $$("div", {
  4087. className: "U_MD_D_KO",
  4088. "onmousedown": U.UF.C.closure(function (obj) {
  4089. //防止拖动图标即打开了桌面应用
  4090. U.MD.D.click(this, obj);
  4091. }, [_x010504TeacherDeskIconInfo[i]]),
  4092. "onclick": U.UF.C.closure(function (obj) {
  4093. //防止拖动图标即打开了桌面应用
  4094. U.MD.D.click(this, obj);
  4095. }, [_x010504TeacherDeskIconInfo[i]])
  4096. }, _frag); //
  4097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4100. }
  4101. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4102. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4103. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4104. continue
  4105. }
  4106. _content = $$("div", {
  4107. className: "U_MD_D_KO",
  4108. "onmousedown": U.UF.C.closure(function (obj) {
  4109. //防止拖动图标即打开了桌面应用
  4110. U.MD.D.click(this, obj);
  4111. }, [_x010204TeacherDeskIconInfo[i]]),
  4112. "onclick": U.UF.C.closure(function (obj) {
  4113. //防止拖动图标即打开了桌面应用
  4114. U.MD.D.click(this, obj);
  4115. }, [_x010204TeacherDeskIconInfo[i]])
  4116. }, _frag); //
  4117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4120. }
  4121. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4122. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4123. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4124. continue
  4125. }
  4126. _content = $$("div", {
  4127. className: "U_MD_D_KO",
  4128. "onmousedown": U.UF.C.closure(function (obj) {
  4129. //防止拖动图标即打开了桌面应用
  4130. U.MD.D.click(this, obj);
  4131. }, [_x320101TeacherDeskIconInfo[i]]),
  4132. "onclick": U.UF.C.closure(function (obj) {
  4133. //防止拖动图标即打开了桌面应用
  4134. U.MD.D.click(this, obj);
  4135. }, [_x320101TeacherDeskIconInfo[i]])
  4136. }, _frag); //
  4137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4140. }
  4141. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4142. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4143. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4144. continue
  4145. }
  4146. _content = $$("div", {
  4147. className: "U_MD_D_KO",
  4148. "onmousedown": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_trailTeacherDeskIconInfo[i]]),
  4152. "onclick": U.UF.C.closure(function (obj) {
  4153. //防止拖动图标即打开了桌面应用
  4154. U.MD.D.click(this, obj);
  4155. }, [_trailTeacherDeskIconInfo[i]])
  4156. }, _frag); //
  4157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4160. }
  4161. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4162. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4163. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4164. continue
  4165. }
  4166. _content = $$("div", {
  4167. className: "U_MD_D_KO",
  4168. "onmousedown": U.UF.C.closure(function (obj) {
  4169. //防止拖动图标即打开了桌面应用
  4170. U.MD.D.click(this, obj);
  4171. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4172. "onclick": U.UF.C.closure(function (obj) {
  4173. //防止拖动图标即打开了桌面应用
  4174. U.MD.D.click(this, obj);
  4175. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4176. }, _frag); //
  4177. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4178. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4179. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4180. }
  4181. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4182. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4183. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4184. continue
  4185. }
  4186. _content = $$("div", {
  4187. className: "U_MD_D_KO",
  4188. "onmousedown": U.UF.C.closure(function (obj) {
  4189. //防止拖动图标即打开了桌面应用
  4190. U.MD.D.click(this, obj);
  4191. }, [_x010608TeacherDeskIconInfo[i]]),
  4192. "onclick": U.UF.C.closure(function (obj) {
  4193. //防止拖动图标即打开了桌面应用
  4194. U.MD.D.click(this, obj);
  4195. }, [_x010608TeacherDeskIconInfo[i]])
  4196. }, _frag); //
  4197. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4198. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4199. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4200. }
  4201. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4202. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4203. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4204. continue
  4205. }
  4206. _content = $$("div", {
  4207. className: "U_MD_D_KO",
  4208. "onmousedown": U.UF.C.closure(function (obj) {
  4209. //防止拖动图标即打开了桌面应用
  4210. U.MD.D.click(this, obj);
  4211. }, [_x010611TeacherDeskIconInfo[i]]),
  4212. "onclick": U.UF.C.closure(function (obj) {
  4213. //防止拖动图标即打开了桌面应用
  4214. U.MD.D.click(this, obj);
  4215. }, [_x010611TeacherDeskIconInfo[i]])
  4216. }, _frag); //
  4217. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4218. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4219. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4220. }
  4221. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4222. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4223. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4224. continue
  4225. }
  4226. _content = $$("div", {
  4227. className: "U_MD_D_KO",
  4228. "onmousedown": U.UF.C.closure(function (obj) {
  4229. //防止拖动图标即打开了桌面应用
  4230. U.MD.D.click(this, obj);
  4231. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4232. "onclick": U.UF.C.closure(function (obj) {
  4233. //防止拖动图标即打开了桌面应用
  4234. U.MD.D.click(this, obj);
  4235. }, [_tianyuanTeacherDeskIconInfo[i]])
  4236. }, _frag); //
  4237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4240. }
  4241. } else {
  4242. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4243. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4244. continue
  4245. }
  4246. _content = $$("div", {
  4247. className: "U_MD_D_KO",
  4248. "onmousedown": U.UF.C.closure(function (obj) {
  4249. //防止拖动图标即打开了桌面应用
  4250. U.MD.D.click(this, obj);
  4251. }, [_teacherDesktopIconInfo[i]]),
  4252. "onclick": U.UF.C.closure(function (obj) {
  4253. //防止拖动图标即打开了桌面应用
  4254. U.MD.D.click(this, obj);
  4255. }, [_teacherDesktopIconInfo[i]])
  4256. }, _frag); //
  4257. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4258. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4259. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4260. }
  4261. }
  4262. } else {
  4263. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4264. _content = $$("div", {
  4265. className: "U_MD_D_KO",
  4266. style: { 'width': '124px', 'height': '145px' },
  4267. "onmousedown": U.UF.C.closure(function (obj) {
  4268. //防止拖动图标即打开了桌面应用
  4269. U.MD.D.click(this, obj);
  4270. }, [_easyDesktopIconInfo[i]]),
  4271. "onclick": U.UF.C.closure(function (obj) {
  4272. //防止拖动图标即打开了桌面应用
  4273. U.MD.D.click(this, obj);
  4274. }, [_easyDesktopIconInfo[i]])
  4275. }, _frag); //
  4276. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4277. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4278. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4279. }
  4280. }
  4281. if (type == 1) {
  4282. //加载好后给图标定位
  4283. U.MD.D.iconPostion($(_frag).Child());
  4284. } else {
  4285. //加载好后给图标定位
  4286. U.MD.D.iconPostion2($(_frag).Child());
  4287. }
  4288. //把图标加载到页面
  4289. el.appendChild(_frag);
  4290. }
  4291. /**
  4292. * 显示任务栏
  4293. *
  4294. * @param {element} 桌面元素
  4295. */
  4296. U.MD.D.I.displayTaskbar = function (el) {
  4297. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4298. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4299. //任务栏位置变化
  4300. U.selectEl(el).css({ "bottom": "0px" });
  4301. //桌面位置变话
  4302. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4303. }
  4304. }
  4305. //#region 桌面图标拖动逻辑
  4306. /**
  4307. * 桌面排列图标
  4308. *
  4309. * @param {element} 桌面元素
  4310. * @param {object} 上下相距的距离
  4311. * @param {object} 左右相距的距离
  4312. * @return {object} 命名空间
  4313. */
  4314. U.MD.D.iconPostion = function (childs, top, left) {
  4315. var i; //用于循环处理
  4316. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4317. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4318. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4319. for (i = 0; i < childs.length; i++) {
  4320. //如果竖排top超过了范围处理
  4321. if (top + 95 > US.height - 10) {
  4322. //left超过了页面范围处理,则向上重叠打印处理
  4323. if ((left + 180) > US.width) {
  4324. top -= 110;
  4325. left -= 90;
  4326. }
  4327. //没有超过范围,那么left+90添加到下一个竖排打印
  4328. else {
  4329. left += 90;
  4330. top = 15;
  4331. };
  4332. }
  4333. //给图标的位置赋值
  4334. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4335. if (i < childs.length - 1) {
  4336. //页面图标每次向下加95
  4337. top += 95;
  4338. }
  4339. }
  4340. //返回最后调用的图标的位置
  4341. return [top, left];
  4342. }
  4343. /**
  4344. * 桌面排列图标
  4345. *
  4346. * @param {element} 桌面元素
  4347. * @param {object} 上下相距的距离
  4348. * @param {object} 左右相距的距离
  4349. * @return {object} 命名空间
  4350. */
  4351. U.MD.D.iconPostion2 = function (childs, top, left) {
  4352. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4353. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4354. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4355. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4356. for (i = 0; i < childs.length; i++) {
  4357. //如果竖排top超过了范围处理
  4358. if (left + 150 > US.width - 10) {
  4359. //left超过了页面范围处理,则向上重叠打印处理
  4360. if ((top + 180) > US.Height) {
  4361. top -= 150;
  4362. left -= 150;
  4363. }
  4364. //没有超过范围,那么left+90添加到下一个竖排打印
  4365. else {
  4366. top += 150;
  4367. left = ol;
  4368. };
  4369. }
  4370. //给图标的位置赋值
  4371. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4372. if (i < childs.length - 1) {
  4373. //页面图标每次向下加95
  4374. left += 150;
  4375. }
  4376. }
  4377. //返回最后调用的图标的位置
  4378. return [top, left];
  4379. }
  4380. /**
  4381. * 桌面点击事件逻辑
  4382. *
  4383. * @param {element} 桌面元素
  4384. * @param {object} 上下相距的距离
  4385. * @param {object} 左右相距的距离
  4386. * @return {object} 命名空间
  4387. */
  4388. U.MD.D.click = function (el, obj) {
  4389. var _buttonnumber = event.button; //点击的按钮的事件值
  4390. var _userinfo = US.userInfo;
  4391. U.UF.EV.stopBubble(); //阻止向上冒泡
  4392. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4393. if (_buttonnumber < 2) {
  4394. //如果是click事件的处理
  4395. if (event.type == "click") {
  4396. //如果元素在mousemove事件中没有移动则出发click事件
  4397. if (!U.MD.D.I.IsDrag) {
  4398. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4399. U.alert("请先登录您的账号!");
  4400. setTimeout(() => {
  4401. U.MD.U.L.login();
  4402. }, 2000);
  4403. } else {
  4404. //打开应用处理
  4405. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4406. }
  4407. }
  4408. }
  4409. //如果是mouse事件的处理
  4410. else {
  4411. if (US.Config.type == '1') {
  4412. //拖动处理,添加拖动和拖动结束事件
  4413. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4414. }
  4415. }
  4416. U.MD.D.I.IsDrag = false;
  4417. }
  4418. }
  4419. /**
  4420. * 拖动的处理
  4421. *
  4422. */
  4423. U.MD.D.iconMove = function () {
  4424. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4425. U.MD.D.I.IsDrag = true;
  4426. }
  4427. /**
  4428. * 拖动结束后,这里是定位处理,以网状的形式定位
  4429. *
  4430. * @param {element} 拖动的元素
  4431. * @return {object} 命名空间
  4432. */
  4433. U.MD.D.iconUp = function (el) {
  4434. var _top = 15,
  4435. _left = 20,
  4436. _margin,
  4437. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4438. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4439. if (_positioninfo["OT"] > 15) {
  4440. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4441. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4442. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4443. }
  4444. if (_positioninfo["OL"] > 20) {
  4445. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4446. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4447. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4448. }
  4449. //while循环判断么一个重叠的元素
  4450. do {
  4451. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4452. _top = _positioninfo[0] + 95; //得到定位后的top
  4453. _left = _positioninfo[1]; //得到定位后的left
  4454. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4455. }
  4456. /**
  4457. * 判断拖动后图标是否重叠
  4458. *
  4459. * @param {element} 拖动的元素
  4460. * @param {element} 桌面所有的元素
  4461. * @param {array} 拖动元素的位置
  4462. ----------[0] 上 top
  4463. ----------[1] 左 left
  4464. * @return {object} 命名空间
  4465. */
  4466. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4467. //循环所有的图标
  4468. for (var i = 0; i < childs.length; i++) {
  4469. //判断有没有和该图标诶子重叠的元素
  4470. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4471. return childs[i]; //如果有返回
  4472. }
  4473. }
  4474. }
  4475. //#endregion
  4476. //#endregion
  4477. //#region 桌面应用
  4478. /**
  4479. * 打开应用
  4480. *
  4481. * @param {string} 类型
  4482. -----------------Disk 网盘系统
  4483. -----------------PDisk 学习系统网盘
  4484. -----------------Poto 图片
  4485. -----------------Video 视频
  4486. -----------------Music 音乐
  4487. -----------------Word word
  4488. -----------------Excel excel
  4489. -----------------Txt 记事本
  4490. -----------------PB 学习系统
  4491. -----------------Blog 朋友圈系统
  4492. -----------------FTP ftp系统
  4493. -----------------Group 好友群
  4494. -----------------SY 首页系统
  4495. -----------------Set 个人设置
  4496. -----------------XSet 系统设置
  4497. -----------------App 我们所有的app
  4498. -----------------BC c.1473.cn 平台
  4499. -----------------CWeb d.1473.cn 变成平台
  4500. -----------------其他的外联系统 我们统一用iframe打开
  4501. * @param {array} 类型
  4502. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4503. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4504. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4505. 如果第一个参数为其他,则无第二个参数
  4506. * @returns {array}
  4507. */
  4508. window.addEventListener('message', function (e) { // 监听 message 事件
  4509. // alert(e.data.type);
  4510. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4511. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4512. //3是展示全部阶段 2学生 1老师 4专家
  4513. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4514. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4515. //3是展示全部阶段 2学生 1老师 4专家
  4516. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4517. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4518. //3是展示全部阶段 2学生 1老师 4专家
  4519. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4520. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4521. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4522. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4523. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4524. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4525. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4526. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4527. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4528. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4529. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4530. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4531. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4532. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4533. //3是展示全部阶段 2学生 1老师 4专家
  4534. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4535. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4536. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4537. U.MD.D.I.selectUser();
  4538. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4539. var _formel = document.getElementById("study");
  4540. U.UF.F.windowZooming(_formel);
  4541. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4542. var _formel = document.getElementById("studyDetail");
  4543. U.UF.F.windowZooming(_formel);
  4544. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4545. var _formel = document.getElementById("studyDetail");
  4546. U.UF.F.windowZooming(_formel);
  4547. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4548. var _formel = document.getElementById("studentStudy");
  4549. U.UF.F.windowZooming(_formel);
  4550. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4551. // var _formel = document.getElementById("study");
  4552. //如果最大化了,那么就把他缩小
  4553. // if (_formel.ismaximize) {
  4554. // return;
  4555. // }
  4556. // U.UF.F.windowZooming(_formel);
  4557. // U.UF.F.topWindow(_formel);
  4558. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4559. // var _formel = document.getElementById("studyDetail");
  4560. //如果最大化了,那么就把他缩小
  4561. // if (_formel.ismaximize) {
  4562. // return;
  4563. // }
  4564. // U.UF.F.windowZooming(_formel);
  4565. // U.UF.F.topWindow(_formel);
  4566. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4567. // var _formel = document.getElementById("studentStudy");
  4568. // if (_formel.ismaximize) {
  4569. // return;
  4570. // }
  4571. // U.UF.F.windowZooming(_formel);
  4572. // U.UF.F.topWindow(_formel);
  4573. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4574. var _formel = document.getElementById("study");
  4575. // if (_formel.ismaximize) {
  4576. // return;
  4577. // }
  4578. // U.UF.F.windowZooming(_formel);
  4579. U.UF.F.topWindow(_formel);
  4580. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4581. var _formel = document.getElementById("studentIndex");
  4582. U.UF.F.windowZooming(_formel);
  4583. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4584. var _formel = document.getElementById("studyDetailS");
  4585. U.UF.F.windowZooming(_formel);
  4586. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4587. var _formel = document.getElementById("studioIndex");
  4588. U.UF.F.windowZooming(_formel);
  4589. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4590. var _formel = document.getElementById("studyDetailStudio");
  4591. U.UF.F.windowZooming(_formel);
  4592. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4593. var _formel = document.getElementById("studyDetailStudio");
  4594. U.UF.F.windowZooming(_formel);
  4595. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4596. var _formel = document.getElementById("studyDetailNT");
  4597. U.UF.F.windowZooming(_formel);
  4598. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4599. var _formel = document.getElementById("studyDetailS");
  4600. U.UF.F.windowZooming(_formel);
  4601. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4602. var _formel = document.getElementById("studyDetailS");
  4603. U.UF.F.topWindow(_formel);
  4604. } else if (e.data.tools && e.data.tools == "1") {
  4605. // U.MD.D.I.openApplication("whiteboard")
  4606. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4607. } else if (e.data.tools && e.data.tools == "2") {
  4608. U.MD.D.I.openApplication("note")
  4609. } else if (e.data.tools && e.data.tools == "3") {
  4610. // U.MD.D.I.openApplication("mind")
  4611. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4612. } else if (e.data.tools && e.data.tools == "4") {
  4613. U.MD.D.I.openApplication("investigation")
  4614. } else if (e.data.tools && e.data.tools == "6") {
  4615. // U.MD.D.I.openApplication("doc")
  4616. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4617. } else if (e.data.tools && e.data.tools == "7") {
  4618. // U.MD.D.I.openApplication("mindNetwork")
  4619. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4620. } else if (e.data.tools && e.data.tools == "8") {
  4621. U.MD.D.I.openApplication("library")
  4622. } else if (e.data.tools && e.data.tools == "17") {
  4623. U.MD.D.I.openApplication("stuLibrary")
  4624. } else if (e.data.tools && e.data.tools == "18") {
  4625. U.MD.D.I.openApplication("train")
  4626. } else if (e.data.tools && e.data.tools == "21") {
  4627. U.MD.D.I.openApplication("program")
  4628. } else if (e.data.tools && e.data.tools == "22") {
  4629. U.MD.D.I.openApplication("AIprogram2")
  4630. } else if (e.data.tools && e.data.tools == "23") {
  4631. U.MD.D.I.openApplication("Pythonprogram")
  4632. } else if (e.data.tools && e.data.tools == "24") {
  4633. U.MD.D.I.openApplication("AIprogram")
  4634. } else if (e.data.tools && e.data.tools == "25") {
  4635. U.MD.D.I.openApplication("sys")
  4636. } else if (e.data.tools && e.data.tools == "26") {
  4637. // U.MD.D.I.openApplication("courseDesign")
  4638. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4639. } else if (e.data.tools && e.data.tools == "31") {
  4640. U.MD.D.I.openApplication("netWorkPanel")
  4641. } else if (e.data.tools && e.data.tools == "32") {
  4642. U.MD.D.I.openApplication("codeEdit")
  4643. } else if (e.data.tools && e.data.tools == "57") {
  4644. U.MD.D.I.openApplication("CocoPi")
  4645. } else if (e.data.tools && e.data.tools == "63") {
  4646. U.MD.D.I.openApplication("Wood")
  4647. } else if (e.data.tools && e.data.tools == "58") {
  4648. U.MD.D.I.openApplication("car")
  4649. } else if (e.data.tools && e.data.tools == "59") {
  4650. U.MD.D.I.openApplication("lineSearch")
  4651. } else if (e.data.tools && e.data.tools == "60") {
  4652. U.MD.D.I.openApplication("deepLearning")
  4653. } else if (e.data.tools && e.data.tools == "61") {
  4654. U.MD.D.I.openApplication("allHistory")
  4655. } else if (e.data.tools && e.data.tools == "28") {
  4656. U.MD.D.I.openApplication("translation")
  4657. } else if (e.data.tools && e.data.tools == "37") {
  4658. U.MD.D.I.openApplication("mohe")
  4659. } else if (e.data.tools && e.data.tools == "38") {
  4660. U.MD.D.I.openApplication("24game")
  4661. } else if (e.data.tools && e.data.tools == "39") {
  4662. U.MD.D.I.openApplication("GeoGebra")
  4663. } else if (e.data.tools && e.data.tools == "43") {
  4664. U.MD.D.I.openApplication("studentEvaluate")
  4665. } else if (e.data.tools && e.data.tools == "44") {
  4666. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4667. } else if (e.data.tools && e.data.tools == "46") {
  4668. U.MD.D.I.openApplication("project")
  4669. } else if (e.data.tools && e.data.tools == "71") {
  4670. U.MD.D.I.openApplication("aigptCourse")
  4671. } else if (e.data.tools && e.data.tools == "1s") {
  4672. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4673. } else if (e.data.tools && e.data.tools == "3s") {
  4674. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4675. } else if (e.data.tools && e.data.tools == "6s") {
  4676. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4677. } else if (e.data.tools && e.data.tools == "1studio") {
  4678. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4679. } else if (e.data.tools && e.data.tools == "3studio") {
  4680. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4681. } else if (e.data.tools && e.data.tools == "6studio") {
  4682. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4683. } else if (e.data.tools && e.data.tools == "3y") {
  4684. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4685. } else if (e.data.tools && e.data.tools == "1y") {
  4686. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4687. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4688. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4689. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4690. U.MD.D.I.openApplication("AIAnalyse")
  4691. } else if (e.data.tools && e.data.tools == "1teacher") {
  4692. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4693. } else if (e.data.tools && e.data.tools == "3teacher") {
  4694. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4695. } else if (e.data.tools && e.data.tools == "7teacher") {
  4696. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4697. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4698. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4699. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4700. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4701. } else if (e.data.tools && e.data.tools == "1E") {
  4702. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4703. } else if (e.data.tools && e.data.tools == "3E") {
  4704. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4705. } else if (e.data.tools && e.data.tools == "57y") {
  4706. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4707. } else if (e.data.tools && e.data.tools == "57u") {
  4708. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4709. } else if (e.data.tools && e.data.tools == "57teacher") {
  4710. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4711. } else if (e.data.tools && e.data.tools == "64") {
  4712. U.MD.D.I.openApplication("AIChat")
  4713. } else if (e.data.tools && e.data.tools == "66") {
  4714. U.MD.D.I.openApplication("formulaEdi")
  4715. } else if (e.data.tools && e.data.tools == "67") {
  4716. U.MD.D.I.openApplication("molStr")
  4717. } else if (e.data.tools && e.data.tools == "68") {
  4718. U.MD.D.I.openApplication("timeAxis")
  4719. } else if (e.data.tools && e.data.tools == "openCourse") {
  4720. let _data = {
  4721. typea: e.data.typea || '',
  4722. typeb: e.data.typeb || '',
  4723. typed: e.data.typed || '',
  4724. }
  4725. U.MD.D.I.openInApplication("index", _data)
  4726. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4727. let _data = {
  4728. classid: e.data.classid || '',
  4729. }
  4730. U.MD.D.I.openInApplication("dataClass", _data)
  4731. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4732. let _data = {
  4733. cid: e.data.cid || '',
  4734. gid: e.data.gid || '',
  4735. }
  4736. U.MD.D.I.openInApplication("opencCscl", _data)
  4737. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4738. U.MD.D.I.openApplication("dataBoardTest")
  4739. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4740. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4741. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4742. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4743. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4744. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4745. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4746. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4747. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4748. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4749. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4750. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4751. }else if (e.data.tools && e.data.tools == "loginSz") {
  4752. U.MD.D.I.openInApplication("loginSz")
  4753. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4754. if($('#classroom_observation_board')[0]){
  4755. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4756. }
  4757. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4758. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4759. if($('#classroom_observation_ob_comment')[0]){
  4760. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4761. }
  4762. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4763. }else if (e.data.tools && e.data.tools == "logout"){
  4764. U.MD.U.LO.logoutSystem()
  4765. }else if (e.data.tools && e.data.tools == "getLogin"){
  4766. let _iframe = $('#UI_Login')[0];
  4767. if (_iframe) {
  4768. var userInfo = US.userInfo;
  4769. var type = 2
  4770. if(userInfo && userInfo.userid){
  4771. type = 1
  4772. }
  4773. _contentWindow = _iframe.contentWindow;
  4774. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4775. }
  4776. }
  4777. });
  4778. U.MD.D.I.selectUser = function () {
  4779. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4780. if (res.value[0].length > 0) {
  4781. US.userInfo = res.value[0][0];
  4782. $(".userName")[0].innerHTML = US.userInfo.username;
  4783. }
  4784. }, [], { "type": "GET", "withCredentials": true });
  4785. }
  4786. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4787. var _userinfo = US.userInfo, //登录用户信息
  4788. _userid = US.userInfo.userid, //登录用户id
  4789. _oid = _userinfo.organizeid,
  4790. _type = US.userInfo.type,
  4791. _org = US.userInfo.org,
  4792. _role = US.userInfo.role,
  4793. _classId = US.userInfo.classid;
  4794. if (_type == 4) {
  4795. tType = 4
  4796. }
  4797. switch (str) {
  4798. case "studyDetailNT": //无终端模式
  4799. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4800. setTimeout(() => {
  4801. U.MD.U.L.login();
  4802. }, 2000);
  4803. } else {
  4804. _formdiv = new U.UF.UI.form(
  4805. "课程详情",
  4806. $$("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 }), {
  4807. "id": "studyDetailNT",
  4808. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4809. "onresize": function () { }
  4810. }, {
  4811. closecallback: function () { }
  4812. }, { "style": { "height": "36px" } }).form; //创建窗体
  4813. _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); } }
  4814. break;
  4815. }
  4816. case "studyDetail":
  4817. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4818. setTimeout(() => {
  4819. U.MD.U.L.login();
  4820. }, 2000);
  4821. } else {
  4822. _formdiv = new U.UF.UI.form(
  4823. "课程详情",
  4824. $$("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 }), {
  4825. "id": "studyDetail",
  4826. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4827. "onresize": function () { }
  4828. }, {
  4829. closecallback: function () { }
  4830. }, { "style": { "height": "36px" } }).form; //创建窗体
  4831. _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); } }
  4832. break;
  4833. }
  4834. case "studyDetailTrain":
  4835. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4836. setTimeout(() => {
  4837. U.MD.U.L.login();
  4838. }, 2000);
  4839. } else {
  4840. _formdiv = new U.UF.UI.form(
  4841. "培训详情",
  4842. $$("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 }), {
  4843. "id": "studyDetailTrain",
  4844. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4845. "onresize": function () { }
  4846. }, {
  4847. closecallback: function () { }
  4848. }, { "style": { "height": "36px" } }).form; //创建窗体
  4849. _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); } }
  4850. break;
  4851. }
  4852. case "studyDetailS":
  4853. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4854. setTimeout(() => {
  4855. U.MD.U.L.login();
  4856. }, 2000);
  4857. } else {
  4858. _formdiv = new U.UF.UI.form(
  4859. "项目详情",
  4860. $$("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 }), {
  4861. "id": "studyDetailS",
  4862. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4863. "onresize": function () { }
  4864. }, {
  4865. closecallback: function () { }
  4866. }, { "style": { "height": "36px" } }).form; //创建窗体
  4867. _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); } }
  4868. break;
  4869. }
  4870. case "studyDetailStudio":
  4871. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4872. setTimeout(() => {
  4873. U.MD.U.L.login();
  4874. }, 2000);
  4875. } else {
  4876. _formdiv = new U.UF.UI.form(
  4877. "工作详情",
  4878. $$("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 }), {
  4879. "id": "studyDetailStudio",
  4880. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4881. "onresize": function () { }
  4882. }, {
  4883. closecallback: function () { }
  4884. }, { "style": { "height": "36px" } }).form; //创建窗体
  4885. _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); } }
  4886. break;
  4887. }
  4888. case "studyDetailS5":
  4889. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4890. setTimeout(() => {
  4891. U.MD.U.L.login();
  4892. }, 2000);
  4893. } else {
  4894. _formdiv = new U.UF.UI.form(
  4895. "项目详情",
  4896. $$("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 }), {
  4897. "id": "studyDetailS",
  4898. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4899. "onresize": function () { }
  4900. }, {
  4901. closecallback: function () { }
  4902. }, { "style": { "height": "36px" } }).form; //创建窗体
  4903. _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); } }
  4904. break;
  4905. }
  4906. case "studyDetailGM":
  4907. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4908. setTimeout(() => {
  4909. U.MD.U.L.login();
  4910. }, 2000);
  4911. } else {
  4912. _formdiv = new U.UF.UI.form(
  4913. "课程详情",
  4914. $$("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 }), {
  4915. "id": "studyDetail",
  4916. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4917. "onresize": function () { }
  4918. }, {
  4919. closecallback: function () { }
  4920. }, { "style": { "height": "36px" } }).form; //创建窗体
  4921. _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); } }
  4922. break;
  4923. }
  4924. case "hanUrl":
  4925. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4926. setTimeout(() => {
  4927. U.MD.U.L.login();
  4928. }, 2000);
  4929. } else {
  4930. _formdiv = new U.UF.UI.form(
  4931. "汉字宫",
  4932. $$("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" }), {
  4933. "id": "hanUrl",
  4934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4935. "onresize": function () { }
  4936. }, {
  4937. closecallback: function () { }
  4938. }, { "style": { "height": "36px" } }).form; //创建窗体
  4939. _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); } }
  4940. break;
  4941. }
  4942. case "index":
  4943. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4944. setTimeout(() => {
  4945. U.MD.U.L.login();
  4946. }, 2000);
  4947. } else {
  4948. _formdiv = new U.UF.UI.form(
  4949. "课程中心",
  4950. $$("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 }), {
  4951. "id": "study",
  4952. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4953. "onresize": function () { }
  4954. }, {
  4955. closecallback: function () { }
  4956. }, { "style": { "height": "36px" } }).form; //创建窗体
  4957. _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); } }
  4958. break;
  4959. }
  4960. case "dataClass":
  4961. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4962. setTimeout(() => {
  4963. U.MD.U.L.login();
  4964. }, 2000);
  4965. } else {
  4966. _formdiv = new U.UF.UI.form(
  4967. "数据报告",
  4968. $$("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 }), {
  4969. "id": "dataClass",
  4970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4971. "onresize": function () { }
  4972. }, {
  4973. closecallback: function () { }
  4974. }, { "style": { "height": "36px" } }).form; //创建窗体
  4975. _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); } }
  4976. break;
  4977. }
  4978. case "opencCscl":
  4979. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4980. setTimeout(() => {
  4981. U.MD.U.L.login();
  4982. }, 2000);
  4983. } else {
  4984. _formdiv = new U.UF.UI.form(
  4985. "协同建构",
  4986. $$("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 }), {
  4987. "id": "futureClass",
  4988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4992. }, { "style": { "height": "36px" } }).form; //创建窗体
  4993. _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); } }
  4994. break;
  4995. }
  4996. case "openCourseUpdate":
  4997. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4998. setTimeout(() => {
  4999. U.MD.U.L.login();
  5000. }, 2000);
  5001. } else {
  5002. _formdiv = new U.UF.UI.form(
  5003. "课程管理",
  5004. $$("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 }), {
  5005. "id": "openCourseUpdate",
  5006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5007. "onresize": function () { }
  5008. }, {
  5009. closecallback: function () { }
  5010. }, { "style": { "height": "36px" } }).form; //创建窗体
  5011. break;
  5012. }
  5013. case "openNewCourseUpdate":
  5014. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5015. setTimeout(() => {
  5016. U.MD.U.L.login();
  5017. }, 2000);
  5018. } else {
  5019. _formdiv = new U.UF.UI.form(
  5020. "课程管理",
  5021. $$("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 }), {
  5022. "id": "openCourseUpdate",
  5023. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5024. "onresize": function () { }
  5025. }, {
  5026. closecallback: function () { }
  5027. }, { "style": { "height": "36px" } }).form; //创建窗体
  5028. break;
  5029. }
  5030. case "openCourseEUpdate":
  5031. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5032. setTimeout(() => {
  5033. U.MD.U.L.login();
  5034. }, 2000);
  5035. } else {
  5036. _formdiv = new U.UF.UI.form(
  5037. "课程管理",
  5038. $$("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 }), {
  5039. "id": "openCourseUpdate",
  5040. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5041. "onresize": function () { }
  5042. }, {
  5043. closecallback: function () { }
  5044. }, { "style": { "height": "36px" } }).form; //创建窗体
  5045. break;
  5046. }
  5047. case "openCourseAiUpdate":
  5048. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5049. setTimeout(() => {
  5050. U.MD.U.L.login();
  5051. }, 2000);
  5052. } else {
  5053. _formdiv = new U.UF.UI.form(
  5054. "课程管理",
  5055. $$("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 }), {
  5056. "id": "openCourseUpdate",
  5057. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5058. "onresize": function () { }
  5059. }, {
  5060. closecallback: function () { }
  5061. }, { "style": { "height": "36px" } }).form; //创建窗体
  5062. break;
  5063. }
  5064. case "openCourseAiUpdate2":
  5065. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5066. setTimeout(() => {
  5067. U.MD.U.L.login();
  5068. }, 2000);
  5069. } else {
  5070. _formdiv = new U.UF.UI.form(
  5071. "课程管理",
  5072. $$("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 }), {
  5073. "id": "openCourseUpdate",
  5074. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5075. "onresize": function () { }
  5076. }, {
  5077. closecallback: function () { }
  5078. }, { "style": { "height": "36px" } }).form; //创建窗体
  5079. break;
  5080. }
  5081. case "openCourseNewUpdate":
  5082. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5083. setTimeout(() => {
  5084. U.MD.U.L.login();
  5085. }, 2000);
  5086. } else {
  5087. _formdiv = new U.UF.UI.form(
  5088. "课程管理",
  5089. $$("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 }), {
  5090. "id": "openCourseUpdate",
  5091. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5092. "onresize": function () { }
  5093. }, {
  5094. closecallback: function () { }
  5095. }, { "style": { "height": "36px" } }).form; //创建窗体
  5096. break;
  5097. }
  5098. case "inviteLoginSz":
  5099. _formdiv = new U.UF.UI.form(
  5100. "随机码登录",
  5101. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5102. "id": "loginSz",
  5103. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. break;
  5109. case "loginSz":
  5110. _formdiv = new U.UF.UI.form(
  5111. "教师登录",
  5112. $$("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" }), {
  5113. "id": "loginSz",
  5114. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5115. "onresize": function () { }
  5116. }, {
  5117. closecallback: function () { }
  5118. }, { "style": { "height": "36px" } }).form; //创建窗体
  5119. break;
  5120. case "teacher":
  5121. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5122. setTimeout(() => {
  5123. U.MD.U.L.login();
  5124. }, 2000);
  5125. } else {
  5126. _formdiv = new U.UF.UI.form(
  5127. "教师管理",
  5128. $$("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 }), {
  5129. "id": "teacher",
  5130. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5131. "onresize": function () { }
  5132. }, {
  5133. closecallback: function () { }
  5134. }, { "style": { "height": "36px" } }).form; //创建窗体
  5135. break;
  5136. }
  5137. case "dataBoardSZArea":
  5138. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5139. setTimeout(() => {
  5140. U.MD.U.L.login();
  5141. }, 2000);
  5142. } else {
  5143. _formdiv = new U.UF.UI.form(
  5144. "综合数据看板",
  5145. $$("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 }), {
  5146. "id": "dataBoardSZArea",
  5147. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5148. "onresize": function () { }
  5149. }, {
  5150. closecallback: function () { }
  5151. }, { "style": { "height": "36px" } }).form; //创建窗体
  5152. break;
  5153. }
  5154. case "dataBoardSZCity":
  5155. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5156. setTimeout(() => {
  5157. U.MD.U.L.login();
  5158. }, 2000);
  5159. } else {
  5160. _formdiv = new U.UF.UI.form(
  5161. "综合数据看板",
  5162. $$("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 }), {
  5163. "id": "dataBoardSZCity",
  5164. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5165. "onresize": function () { }
  5166. }, {
  5167. closecallback: function () { }
  5168. }, { "style": { "height": "36px" } }).form; //创建窗体
  5169. break;
  5170. }
  5171. case "classroom_observation_board":
  5172. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5173. setTimeout(() => {
  5174. U.MD.U.L.login();
  5175. }, 2000);
  5176. } else {
  5177. _formdiv = new U.UF.UI.form(
  5178. "课堂观察",
  5179. $$("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 }), {
  5180. "id": "classroom_observation_board",
  5181. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5182. "onresize": function () { }
  5183. }, {
  5184. closecallback: function () { }
  5185. }, { "style": { "height": "36px" } }).form; //创建窗体
  5186. break;
  5187. }
  5188. case "classroom_observation_ob_comment":
  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": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5197. "id": "classroom_observation_ob_comment",
  5198. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5199. "onresize": function () { }
  5200. }, {
  5201. closecallback: function () { }
  5202. }, { "style": { "height": "36px" } }).form; //创建窗体
  5203. break;
  5204. }
  5205. }
  5206. }
  5207. U.MD.D.I.openApplication = function (str, obj, info) {
  5208. obj = obj || {};
  5209. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5210. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5211. _userinfo = US.userInfo, //登录用户信息
  5212. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5213. _oid = obj.organizeid || _userinfo.organizeid,
  5214. _type = US.userInfo.type,
  5215. _org = US.userInfo.org,
  5216. _role = US.userInfo.role,
  5217. _classId = US.userInfo.classid,
  5218. _TscreenType = 1
  5219. _screenType = 2,
  5220. _SscreenType = 3;
  5221. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5222. return;
  5223. }
  5224. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5225. switch (str) {
  5226. case "studnetProject": //好友打开
  5227. _formdiv = new U.UF.UI.form(
  5228. "我的项目",
  5229. $$("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 }), {
  5230. "id": "studnetProject",
  5231. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5232. "onresize": function () { }
  5233. }, {
  5234. closecallback: function () { }
  5235. }, { "style": { "height": "36px" } }).form; //创建窗体
  5236. _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); } }
  5237. break;
  5238. case "studentEvaluate": //好友打开
  5239. _formdiv = new U.UF.UI.form(
  5240. "我的评价",
  5241. $$("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 }), {
  5242. "id": "studentEvaluate",
  5243. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5244. "onresize": function () { }
  5245. }, {
  5246. closecallback: function () { }
  5247. }, { "style": { "height": "36px" } }).form; //创建窗体
  5248. _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); } }
  5249. break;
  5250. case "my":
  5251. _formdiv = new U.UF.UI.form(
  5252. "我的资料",
  5253. $$("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 }), {
  5254. "id": "my",
  5255. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5256. "onresize": function () { }
  5257. }, {
  5258. closecallback: function () { }
  5259. }, { "style": { "height": "36px" } }).form; //创建窗体
  5260. _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); } }
  5261. break;
  5262. case "program":
  5263. _formdiv = new U.UF.UI.form(
  5264. "编程平台",
  5265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5266. "id": "program",
  5267. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5268. "onresize": function () { }
  5269. }, {
  5270. closecallback: function () { }
  5271. }, { "style": { "height": "36px" } }).form; //创建窗体
  5272. _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); } }
  5273. break;
  5274. case "library":
  5275. _formdiv = new U.UF.UI.form(
  5276. "素材库",
  5277. $$("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 }), {
  5278. "id": "library",
  5279. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5280. "onresize": function () { }
  5281. }, {
  5282. closecallback: function () { }
  5283. }, { "style": { "height": "36px" } }).form; //创建窗体
  5284. _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); } }
  5285. break;
  5286. case "whiteboard":
  5287. _formdiv = new U.UF.UI.form(
  5288. "电子白板",
  5289. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5290. "id": "whiteboard",
  5291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5292. "onresize": function () { }
  5293. }, {
  5294. closecallback: function () { }
  5295. }, { "style": { "height": "36px" } }).form; //创建窗体
  5296. _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); } }
  5297. break;
  5298. case "investigation":
  5299. _formdiv = new U.UF.UI.form(
  5300. "问卷调查",
  5301. $$("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 }), {
  5302. "id": "investigation",
  5303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5304. "onresize": function () { }
  5305. }, {
  5306. closecallback: function () { }
  5307. }, { "style": { "height": "36px" } }).form; //创建窗体
  5308. _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); } }
  5309. break;
  5310. case "note":
  5311. _formdiv = new U.UF.UI.form(
  5312. "便签分类",
  5313. $$("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 }), {
  5314. "id": "note",
  5315. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5316. "onresize": function () { }
  5317. }, {
  5318. closecallback: function () { }
  5319. }, { "style": { "height": "36px" } }).form; //创建窗体
  5320. _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); } }
  5321. break;
  5322. // case "score":
  5323. // _formdiv = new U.UF.UI.form(
  5324. // "量规评分",
  5325. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5326. // "id": "score",
  5327. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5328. // "onresize": function() {}
  5329. // }, {
  5330. // closecallback: function() {}
  5331. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5332. // _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); } }
  5333. // break;
  5334. case "mind":
  5335. _formdiv = new U.UF.UI.form(
  5336. "思维导图",
  5337. $$("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"
  5338. "id": "mind",
  5339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5340. "onresize": function () { }
  5341. }, {
  5342. closecallback: function () { }
  5343. }, { "style": { "height": "36px" } }).form; //创建窗体
  5344. _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); } }
  5345. break;
  5346. case "doc":
  5347. // U.MD.D.I.isRoom();
  5348. _formdiv = new U.UF.UI.form(
  5349. "协同文档",
  5350. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5351. "id": "doc",
  5352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5358. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5359. // })
  5360. _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); } }
  5361. break;
  5362. case "studentStudy":
  5363. _formdiv = new U.UF.UI.form(
  5364. "课程中心",
  5365. $$("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
  5366. "id": "studentStudy",
  5367. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5368. "onresize": function () { }
  5369. }, {
  5370. closecallback: function () { }
  5371. }, { "style": { "height": "36px" } }).form; //创建窗体
  5372. _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); } }
  5373. break;
  5374. case "train": //好友打开
  5375. _formdiv = new U.UF.UI.form(
  5376. "训练平台",
  5377. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5378. "id": "train",
  5379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5380. "onresize": function () { }
  5381. }, {
  5382. closecallback: function () { }
  5383. }, { "style": { "height": "36px" } }).form; //创建窗体
  5384. _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); } }
  5385. break;
  5386. case "mindNetwork": //好友打开
  5387. _formdiv = new U.UF.UI.form(
  5388. "思维网格",
  5389. $$("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 }), {
  5390. "id": "mindNetwork",
  5391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5392. "onresize": function () { }
  5393. }, {
  5394. closecallback: function () { }
  5395. }, { "style": { "height": "36px" } }).form; //创建窗体
  5396. _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); } }
  5397. break;
  5398. case "studentClassRoom": //好友打开
  5399. _formdiv = new U.UF.UI.form(
  5400. "实时课堂",
  5401. $$("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 }), {
  5402. "id": "studentClassRoom",
  5403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5404. "onresize": function () { }
  5405. }, {
  5406. closecallback: function () { }
  5407. }, { "style": { "height": "36px" } }).form; //创建窗体
  5408. _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); } }
  5409. setTimeout(() => {
  5410. U.UF.F.windowZooming(_formdiv)
  5411. }, 0);
  5412. break;
  5413. }
  5414. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5415. switch (str) {
  5416. case "studnetProject": //好友打开
  5417. _formdiv = new U.UF.UI.form(
  5418. "我的项目",
  5419. $$("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 }), {
  5420. "id": "studnetProject",
  5421. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5422. "onresize": function () { }
  5423. }, {
  5424. closecallback: function () { }
  5425. }, { "style": { "height": "36px" } }).form; //创建窗体
  5426. _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); } }
  5427. break;
  5428. case "studentEvaluate": //好友打开
  5429. _formdiv = new U.UF.UI.form(
  5430. "我的评价",
  5431. $$("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 }), {
  5432. "id": "studentEvaluate",
  5433. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5434. "onresize": function () { }
  5435. }, {
  5436. closecallback: function () { }
  5437. }, { "style": { "height": "36px" } }).form; //创建窗体
  5438. _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); } }
  5439. break;
  5440. case "my":
  5441. _formdiv = new U.UF.UI.form(
  5442. "我的资料",
  5443. $$("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 }), {
  5444. "id": "my",
  5445. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5446. "onresize": function () { }
  5447. }, {
  5448. closecallback: function () { }
  5449. }, { "style": { "height": "36px" } }).form; //创建窗体
  5450. _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); } }
  5451. break;
  5452. case "program":
  5453. _formdiv = new U.UF.UI.form(
  5454. "编程平台",
  5455. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5456. "id": "program",
  5457. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5458. "onresize": function () { }
  5459. }, {
  5460. closecallback: function () { }
  5461. }, { "style": { "height": "36px" } }).form; //创建窗体
  5462. _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); } }
  5463. break;
  5464. case "library":
  5465. _formdiv = new U.UF.UI.form(
  5466. "素材库",
  5467. $$("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 }), {
  5468. "id": "library",
  5469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5470. "onresize": function () { }
  5471. }, {
  5472. closecallback: function () { }
  5473. }, { "style": { "height": "36px" } }).form; //创建窗体
  5474. _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); } }
  5475. break;
  5476. case "whiteboard":
  5477. _formdiv = new U.UF.UI.form(
  5478. "电子白板",
  5479. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5480. "id": "whiteboard",
  5481. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5482. "onresize": function () { }
  5483. }, {
  5484. closecallback: function () { }
  5485. }, { "style": { "height": "36px" } }).form; //创建窗体
  5486. _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); } }
  5487. break;
  5488. case "investigation":
  5489. _formdiv = new U.UF.UI.form(
  5490. "问卷调查",
  5491. $$("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 }), {
  5492. "id": "investigation",
  5493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. _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); } }
  5499. break;
  5500. case "note":
  5501. _formdiv = new U.UF.UI.form(
  5502. "便签分类",
  5503. $$("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 }), {
  5504. "id": "note",
  5505. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5506. "onresize": function () { }
  5507. }, {
  5508. closecallback: function () { }
  5509. }, { "style": { "height": "36px" } }).form; //创建窗体
  5510. _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); } }
  5511. break;
  5512. // case "score":
  5513. // _formdiv = new U.UF.UI.form(
  5514. // "量规评分",
  5515. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5516. // "id": "score",
  5517. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5518. // "onresize": function() {}
  5519. // }, {
  5520. // closecallback: function() {}
  5521. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5522. // _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); } }
  5523. // break;
  5524. case "mind":
  5525. _formdiv = new U.UF.UI.form(
  5526. "思维导图",
  5527. $$("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"
  5528. "id": "mind",
  5529. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5530. "onresize": function () { }
  5531. }, {
  5532. closecallback: function () { }
  5533. }, { "style": { "height": "36px" } }).form; //创建窗体
  5534. _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); } }
  5535. break;
  5536. case "doc":
  5537. // U.MD.D.I.isRoom();
  5538. _formdiv = new U.UF.UI.form(
  5539. "协同文档",
  5540. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5541. "id": "doc",
  5542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5543. "onresize": function () { }
  5544. }, {
  5545. closecallback: function () { }
  5546. }, { "style": { "height": "36px" } }).form; //创建窗体
  5547. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5548. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5549. })
  5550. _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); } }
  5551. break;
  5552. case "train": //好友打开
  5553. _formdiv = new U.UF.UI.form(
  5554. "训练平台",
  5555. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5556. "id": "train",
  5557. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5558. "onresize": function () { }
  5559. }, {
  5560. closecallback: function () { }
  5561. }, { "style": { "height": "36px" } }).form; //创建窗体
  5562. _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); } }
  5563. break;
  5564. case "studentStudy":
  5565. _formdiv = new U.UF.UI.form(
  5566. "课程中心",
  5567. $$("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
  5568. "id": "studentStudy",
  5569. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5570. "onresize": function () { }
  5571. }, {
  5572. closecallback: function () { }
  5573. }, { "style": { "height": "36px" } }).form; //创建窗体
  5574. _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); } }
  5575. break;
  5576. case "mindNetwork": //好友打开
  5577. _formdiv = new U.UF.UI.form(
  5578. "思维网格",
  5579. $$("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 }), {
  5580. "id": "mindNetwork",
  5581. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5582. "onresize": function () { }
  5583. }, {
  5584. closecallback: function () { }
  5585. }, { "style": { "height": "36px" } }).form; //创建窗体
  5586. _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); } }
  5587. break;
  5588. case "studentClassRoom": //好友打开
  5589. _formdiv = new U.UF.UI.form(
  5590. "实时课堂",
  5591. $$("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 }), {
  5592. "id": "studentClassRoom",
  5593. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5594. "onresize": function () { }
  5595. }, {
  5596. closecallback: function () { }
  5597. }, { "style": { "height": "36px" } }).form; //创建窗体
  5598. _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); } }
  5599. setTimeout(() => {
  5600. U.UF.F.windowZooming(_formdiv)
  5601. }, 0);
  5602. break;
  5603. }
  5604. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5605. //选择应用处理
  5606. switch (str) {
  5607. case "project": //好友打开
  5608. _formdiv = new U.UF.UI.form(
  5609. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5610. $$("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 }), {
  5611. "id": "project",
  5612. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5613. "onresize": function () { }
  5614. }, {
  5615. closecallback: function () { }
  5616. }, { "style": { "height": "36px" } }).form; //创建窗体
  5617. _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); } }
  5618. break;
  5619. case "student":
  5620. _formdiv = new U.UF.UI.form(
  5621. "学生管理",
  5622. $$("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 }), {
  5623. "id": "student",
  5624. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5625. "onresize": function () { }
  5626. }, {
  5627. closecallback: function () { }
  5628. }, { "style": { "height": "36px" } }).form; //创建窗体
  5629. _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); } }
  5630. break;
  5631. case "evaluate":
  5632. _formdiv = new U.UF.UI.form(
  5633. "学生评价",
  5634. $$("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 }), {
  5635. "id": "evaluate",
  5636. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5637. "onresize": function () { }
  5638. }, {
  5639. closecallback: function () { }
  5640. }, { "style": { "height": "36px" } }).form; //创建窗体
  5641. _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); } }
  5642. break;
  5643. case "sys":
  5644. _formdiv = new U.UF.UI.form(
  5645. "目标管理",
  5646. $$("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 }), {
  5647. "id": "sys",
  5648. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5649. "onresize": function () { }
  5650. }, {
  5651. closecallback: function () { }
  5652. }, { "style": { "height": "36px" } }).form; //创建窗体
  5653. _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); } }
  5654. break;
  5655. case "courseDesign":
  5656. _formdiv = new U.UF.UI.form(
  5657. "项目设计",
  5658. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5659. "id": "courseDesign",
  5660. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5661. "onresize": function () { }
  5662. }, {
  5663. closecallback: function () { }
  5664. }, { "style": { "height": "36px" } }).form; //创建窗体
  5665. _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); } }
  5666. break;
  5667. case "program":
  5668. _formdiv = new U.UF.UI.form(
  5669. "编程平台",
  5670. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5671. "id": "program",
  5672. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5673. "onresize": function () { }
  5674. }, {
  5675. closecallback: function () { }
  5676. }, { "style": { "height": "36px" } }).form; //创建窗体
  5677. _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); } }
  5678. break;
  5679. case "class":
  5680. _formdiv = new U.UF.UI.form(
  5681. "班级管理",
  5682. $$("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 }), {
  5683. "id": "class",
  5684. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5685. "onresize": function () { }
  5686. }, {
  5687. closecallback: function () { }
  5688. }, { "style": { "height": "36px" } }).form; //创建窗体
  5689. _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); } }
  5690. break;
  5691. case "Grade":
  5692. _formdiv = new U.UF.UI.form(
  5693. "年级管理",
  5694. $$("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 }), {
  5695. "id": "Grade",
  5696. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5697. "onresize": function () { }
  5698. }, {
  5699. closecallback: function () { }
  5700. }, { "style": { "height": "36px" } }).form; //创建窗体
  5701. _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); } }
  5702. break;
  5703. case "teacherOffice":
  5704. _formdiv = new U.UF.UI.form(
  5705. "教研室",
  5706. $$("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 }), {
  5707. "id": "teacherOffice",
  5708. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5709. "onresize": function () { }
  5710. }, {
  5711. closecallback: function () { }
  5712. }, { "style": { "height": "36px" } }).form; //创建窗体
  5713. _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); } }
  5714. break;
  5715. case "my":
  5716. _formdiv = new U.UF.UI.form(
  5717. "我的资料",
  5718. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5719. "id": "my",
  5720. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5721. "onresize": function () { }
  5722. }, {
  5723. closecallback: function () { }
  5724. }, { "style": { "height": "36px" } }).form; //创建窗体
  5725. _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); } }
  5726. break;
  5727. case "notice":
  5728. _formdiv = new U.UF.UI.form(
  5729. "通知公告",
  5730. $$("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 }), {
  5731. "id": "notice",
  5732. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5733. "onresize": function () { }
  5734. }, {
  5735. closecallback: function () { }
  5736. }, { "style": { "height": "36px" } }).form; //创建窗体
  5737. _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); } }
  5738. break;
  5739. case "library":
  5740. _formdiv = new U.UF.UI.form(
  5741. "素材库",
  5742. $$("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 }), {
  5743. "id": "library",
  5744. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5745. "onresize": function () { }
  5746. }, {
  5747. closecallback: function () { }
  5748. }, { "style": { "height": "36px" } }).form; //创建窗体
  5749. _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); } }
  5750. break;
  5751. case "whiteboard":
  5752. _formdiv = new U.UF.UI.form(
  5753. "电子白板",
  5754. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5755. "id": "whiteboard",
  5756. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5757. "onresize": function () { }
  5758. }, {
  5759. closecallback: function () { }
  5760. }, { "style": { "height": "36px" } }).form; //创建窗体
  5761. _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); } }
  5762. break;
  5763. case "investigation":
  5764. _formdiv = new U.UF.UI.form(
  5765. "问卷调查",
  5766. $$("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 }), {
  5767. "id": "investigation",
  5768. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //创建窗体
  5773. _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); } }
  5774. break;
  5775. case "note":
  5776. _formdiv = new U.UF.UI.form(
  5777. "便签分类",
  5778. $$("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 }), {
  5779. "id": "note",
  5780. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5781. "onresize": function () { }
  5782. }, {
  5783. closecallback: function () { }
  5784. }, { "style": { "height": "36px" } }).form; //创建窗体
  5785. _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); } }
  5786. break;
  5787. // case "score":
  5788. // _formdiv = new U.UF.UI.form(
  5789. // "量规评分",
  5790. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5791. // "id": "score",
  5792. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5793. // "onresize": function() {}
  5794. // }, {
  5795. // closecallback: function() {}
  5796. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5797. // _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); } }
  5798. // break;
  5799. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5803. "id": "mind",
  5804. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5810. break;
  5811. case "doc":
  5812. // U.MD.D.I.isRoom();
  5813. _formdiv = new U.UF.UI.form(
  5814. "协同文档",
  5815. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5816. "id": "doc",
  5817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5818. "onresize": function () { }
  5819. }, {
  5820. closecallback: function () { }
  5821. }, { "style": { "height": "36px" } }).form; //创建窗体
  5822. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5823. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5824. })
  5825. _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); } }
  5826. break;
  5827. case "study":
  5828. _formdiv = new U.UF.UI.form(
  5829. "课程中心",
  5830. $$("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
  5831. "id": "study",
  5832. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5833. "onresize": function () { }
  5834. }, {
  5835. closecallback: function () { }
  5836. }, { "style": { "height": "36px" } }).form; //创建窗体
  5837. _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); } }
  5838. break;
  5839. case "mindNetwork": //好友打开
  5840. _formdiv = new U.UF.UI.form(
  5841. "思维网格",
  5842. $$("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 }), {
  5843. "id": "mindNetwork",
  5844. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5845. "onresize": function () { }
  5846. }, {
  5847. closecallback: function () { }
  5848. }, { "style": { "height": "36px" } }).form; //创建窗体
  5849. _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); } }
  5850. break;
  5851. case "train": //好友打开
  5852. _formdiv = new U.UF.UI.form(
  5853. "训练平台",
  5854. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5855. "id": "mindNetwork",
  5856. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5857. "onresize": function () { }
  5858. }, {
  5859. closecallback: function () { }
  5860. }, { "style": { "height": "36px" } }).form; //创建窗体
  5861. _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); } }
  5862. break;
  5863. case "teacherClassRoom": //好友打开
  5864. _formdiv = new U.UF.UI.form(
  5865. "实时课堂",
  5866. $$("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 }), {
  5867. "id": "teacherClassRoom",
  5868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5869. "onresize": function () { }
  5870. }, {
  5871. closecallback: function () { }
  5872. }, { "style": { "height": "36px" } }).form; //创建窗体
  5873. _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); } }
  5874. setTimeout(() => {
  5875. U.UF.F.windowZooming(_formdiv)
  5876. }, 0);
  5877. break;
  5878. }
  5879. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5880. switch (str) {
  5881. case "project": //好友打开
  5882. _formdiv = new U.UF.UI.form(
  5883. "课程管理",
  5884. $$("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 }), {
  5885. "id": "project",
  5886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5887. "onresize": function () { }
  5888. }, {
  5889. closecallback: function () { }
  5890. }, { "style": { "height": "36px" } }).form; //创建窗体
  5891. _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); } }
  5892. break;
  5893. case "evaluate":
  5894. _formdiv = new U.UF.UI.form(
  5895. "学生评价",
  5896. $$("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 }), {
  5897. "id": "evaluate",
  5898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5899. "onresize": function () { }
  5900. }, {
  5901. closecallback: function () { }
  5902. }, { "style": { "height": "36px" } }).form; //创建窗体
  5903. _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); } }
  5904. break;
  5905. case "notice":
  5906. _formdiv = new U.UF.UI.form(
  5907. "通知公告",
  5908. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5909. "id": "notice",
  5910. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5911. "onresize": function () { }
  5912. }, {
  5913. closecallback: function () { }
  5914. }, { "style": { "height": "36px" } }).form; //创建窗体
  5915. _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); } }
  5916. break;
  5917. case "stuLibrary":
  5918. _formdiv = new U.UF.UI.form(
  5919. "学习资料",
  5920. $$("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 }), {
  5921. "id": "stuLibrary",
  5922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5923. "onresize": function () { }
  5924. }, {
  5925. closecallback: function () { }
  5926. }, { "style": { "height": "36px" } }).form; //创建窗体
  5927. _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); } }
  5928. break;
  5929. case "program":
  5930. _formdiv = new U.UF.UI.form(
  5931. "编程平台",
  5932. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5933. "id": "program",
  5934. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5935. "onresize": function () { }
  5936. }, {
  5937. closecallback: function () { }
  5938. }, { "style": { "height": "36px" } }).form; //创建窗体
  5939. _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); } }
  5940. break;
  5941. case "whiteboard":
  5942. _formdiv = new U.UF.UI.form(
  5943. "电子白板",
  5944. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5945. "id": "whiteboard",
  5946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5947. "onresize": function () { }
  5948. }, {
  5949. closecallback: function () { }
  5950. }, { "style": { "height": "36px" } }).form; //创建窗体
  5951. _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); } }
  5952. break;
  5953. case "investigation":
  5954. _formdiv = new U.UF.UI.form(
  5955. "问卷调查",
  5956. $$("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 }), {
  5957. "id": "investigation",
  5958. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5959. "onresize": function () { }
  5960. }, {
  5961. closecallback: function () { }
  5962. }, { "style": { "height": "36px" } }).form; //创建窗体
  5963. _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); } }
  5964. break;
  5965. case "mind":
  5966. _formdiv = new U.UF.UI.form(
  5967. "思维导图",
  5968. $$("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"
  5969. "id": "mind",
  5970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5971. "onresize": function () { }
  5972. }, {
  5973. closecallback: function () { }
  5974. }, { "style": { "height": "36px" } }).form; //创建窗体
  5975. _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); } }
  5976. break;
  5977. case "doc":
  5978. // U.MD.D.I.isRoom();
  5979. _formdiv = new U.UF.UI.form(
  5980. "协同文档",
  5981. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5982. "id": "doc",
  5983. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5984. "onresize": function () { }
  5985. }, {
  5986. closecallback: function () { }
  5987. }, { "style": { "height": "36px" } }).form; //创建窗体
  5988. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5989. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5990. })
  5991. _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); } }
  5992. break;
  5993. case "study":
  5994. _formdiv = new U.UF.UI.form(
  5995. "课程中心",
  5996. $$("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
  5997. "id": "study",
  5998. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5999. "onresize": function () { }
  6000. }, {
  6001. closecallback: function () { }
  6002. }, { "style": { "height": "36px" } }).form; //创建窗体
  6003. _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); } }
  6004. break;
  6005. case "mindNetwork": //好友打开
  6006. _formdiv = new U.UF.UI.form(
  6007. "思维网格",
  6008. $$("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 }), {
  6009. "id": "mindNetwork",
  6010. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6011. "onresize": function () { }
  6012. }, {
  6013. closecallback: function () { }
  6014. }, { "style": { "height": "36px" } }).form; //创建窗体
  6015. _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); } }
  6016. break;
  6017. case "train": //好友打开
  6018. _formdiv = new U.UF.UI.form(
  6019. "训练平台",
  6020. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6021. "id": "train",
  6022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6023. "onresize": function () { }
  6024. }, {
  6025. closecallback: function () { }
  6026. }, { "style": { "height": "36px" } }).form; //创建窗体
  6027. _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); } }
  6028. break;
  6029. case "sys":
  6030. _formdiv = new U.UF.UI.form(
  6031. "目标管理",
  6032. $$("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 }), {
  6033. "id": "sys",
  6034. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6035. "onresize": function () { }
  6036. }, {
  6037. closecallback: function () { }
  6038. }, { "style": { "height": "36px" } }).form; //创建窗体
  6039. _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); } }
  6040. break;
  6041. case "courseDesign":
  6042. _formdiv = new U.UF.UI.form(
  6043. "项目设计",
  6044. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6045. "id": "courseDesign",
  6046. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6047. "onresize": function () { }
  6048. }, {
  6049. closecallback: function () { }
  6050. }, { "style": { "height": "36px" } }).form; //创建窗体
  6051. _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); } }
  6052. break;
  6053. }
  6054. } else if (!_type) {
  6055. switch (str) {
  6056. case "my":
  6057. _formdiv = new U.UF.UI.form(
  6058. "我的资料",
  6059. $$("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 }), {
  6060. "id": "my",
  6061. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6062. "onresize": function () { }
  6063. }, {
  6064. closecallback: function () { }
  6065. }, { "style": { "height": "36px" } }).form; //创建窗体
  6066. _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); } }
  6067. break;
  6068. }
  6069. }
  6070. switch (str) {
  6071. // AIprogram2 AI体验 aihub.cocorobo.cn
  6072. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6073. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6074. case "formulaEdi": //公式编辑
  6075. _formdiv = new U.UF.UI.form(
  6076. "公式编辑",
  6077. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6078. "id": "formulaEdi",
  6079. "style": { "width": "70%", "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/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6085. break;
  6086. case "molStr": //分子结构
  6087. _formdiv = new U.UF.UI.form(
  6088. "分子结构",
  6089. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6090. "id": "molStr",
  6091. "style": { "width": "70%", "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/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6097. break;
  6098. case "timeAxis": //时间轴
  6099. _formdiv = new U.UF.UI.form(
  6100. "时间轴",
  6101. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6102. "id": "timeAxis",
  6103. "style": { "width": "70%", "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/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6109. break;
  6110. case "AIprogram2": //AI体验
  6111. _formdiv = new U.UF.UI.form(
  6112. "AI体验",
  6113. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6114. "id": "AIprogram2",
  6115. "style": { "width": "70%", "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/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6121. break;
  6122. case "Pythonprogram": //python编程
  6123. _formdiv = new U.UF.UI.form(
  6124. "Python编程",
  6125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6126. "id": "Pythonprogram",
  6127. "style": { "width": "70%", "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/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6133. break;
  6134. case "AIprogram": //ai编程
  6135. _formdiv = new U.UF.UI.form(
  6136. "AI编程平台",
  6137. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6138. "id": "AIprogram",
  6139. "style": { "width": "70%", "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/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6145. break;
  6146. case "CocoPi": //CocoPi
  6147. _formdiv = new U.UF.UI.form(
  6148. "CocoPi",
  6149. $$("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" }), {
  6150. "id": "CocoPi",
  6151. "style": { "width": "70%", "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/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6157. break;
  6158. case "Wood": //Wood
  6159. _formdiv = new U.UF.UI.form(
  6160. "海龟编程",
  6161. $$("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/" }), {
  6162. "id": "Wood",
  6163. "style": { "width": "70%", "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/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6169. break;
  6170. case "car": //模拟驾驶
  6171. _formdiv = new U.UF.UI.form(
  6172. "模拟驾驶",
  6173. $$("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/" }), {
  6174. "id": "car",
  6175. "style": { "width": "70%", "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/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6181. break;
  6182. case "lineSearch": //路径搜索
  6183. _formdiv = new U.UF.UI.form(
  6184. "路径搜索",
  6185. $$("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/" }), {
  6186. "id": "lineSearch",
  6187. "style": { "width": "70%", "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/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6193. break;
  6194. case "deepLearning": //深度学习
  6195. _formdiv = new U.UF.UI.form(
  6196. "深度学习",
  6197. $$("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/#" }), {
  6198. "id": "deepLearning",
  6199. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6200. "onresize": function () { }
  6201. }, {
  6202. closecallback: function () { }
  6203. }, { "style": { "height": "36px" } }).form; //创建窗体
  6204. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6205. break;
  6206. case "allHistory": //深度学习
  6207. _formdiv = new U.UF.UI.form(
  6208. "全历史",
  6209. $$("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/" }), {
  6210. "id": "allHistory",
  6211. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6212. "onresize": function () { }
  6213. }, {
  6214. closecallback: function () { }
  6215. }, { "style": { "height": "36px" } }).form; //创建窗体
  6216. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6217. break;
  6218. case "chatPDF": //ai编程
  6219. _formdiv = new U.UF.UI.form(
  6220. "chatPDF",
  6221. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6222. "id": "chatPDF",
  6223. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6224. "onresize": function () { }
  6225. }, {
  6226. closecallback: function () { }
  6227. }, { "style": { "height": "36px" } }).form; //创建窗体
  6228. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6229. break;
  6230. case "resources": //国家教育
  6231. _formdiv = new U.UF.UI.form(
  6232. "国家教育",
  6233. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6234. "id": "resources",
  6235. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6236. "onresize": function () { }
  6237. }, {
  6238. closecallback: function () { }
  6239. }, { "style": { "height": "36px" } }).form; //创建窗体
  6240. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6241. break;
  6242. case "codeEdit": //源码编辑
  6243. _formdiv = new U.UF.UI.form(
  6244. "源码编辑",
  6245. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6246. "id": "codeEdit",
  6247. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6248. "onresize": function () { }
  6249. }, {
  6250. closecallback: function () { }
  6251. }, { "style": { "height": "36px" } }).form; //创建窗体
  6252. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6253. break; //
  6254. case "MindMap": //MindMap
  6255. _formdiv = new U.UF.UI.form(
  6256. "MindMap",
  6257. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6258. "id": "MindMap",
  6259. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6260. "onresize": function () { }
  6261. }, {
  6262. closecallback: function () { }
  6263. }, { "style": { "height": "36px" } }).form; //创建窗体
  6264. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6265. break;
  6266. case "netWorkPanel": //netWorkPanel
  6267. _formdiv = new U.UF.UI.form(
  6268. "netWorkPanel",
  6269. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6270. "id": "netWorkPanel",
  6271. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6272. "onresize": function () { }
  6273. }, {
  6274. closecallback: function () { }
  6275. }, { "style": { "height": "36px" } }).form; //创建窗体
  6276. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6277. break;
  6278. case "GeoGebra": //GeoGebra
  6279. _formdiv = new U.UF.UI.form(
  6280. "GeoGebra",
  6281. $$("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" }), {
  6282. "id": "GeoGebra",
  6283. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6284. "onresize": function () { }
  6285. }, {
  6286. closecallback: function () { }
  6287. }, { "style": { "height": "36px" } }).form; //创建窗体
  6288. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6289. break;
  6290. case "translation": //翻译
  6291. _formdiv = new U.UF.UI.form(
  6292. "翻译",
  6293. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6294. "id": "translation",
  6295. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6296. "onresize": function () { }
  6297. }, {
  6298. closecallback: function () { }
  6299. }, { "style": { "height": "36px" } }).form; //创建窗体
  6300. _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); } }
  6301. break;
  6302. case "mohe": //魔盒
  6303. _formdiv = new U.UF.UI.form(
  6304. "魔盒识字",
  6305. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6306. "id": "mohe",
  6307. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6308. "onresize": function () { }
  6309. }, {
  6310. closecallback: function () { }
  6311. }, { "style": { "height": "36px" } }).form; //创建窗体
  6312. _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); } }
  6313. break;
  6314. case "24game": //24点
  6315. _formdiv = new U.UF.UI.form(
  6316. "24点",
  6317. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6318. "id": "24game",
  6319. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6320. "onresize": function () { }
  6321. }, {
  6322. closecallback: function () { }
  6323. }, { "style": { "height": "36px" } }).form; //创建窗体
  6324. _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); } }
  6325. break;
  6326. case "case":
  6327. _formdiv = new U.UF.UI.form(
  6328. "课程进展",
  6329. $$("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 }), {
  6330. "id": "case",
  6331. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6332. "onresize": function () { }
  6333. }, {
  6334. closecallback: function () { }
  6335. }, { "style": { "height": "36px" } }).form; //创建窗体
  6336. _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); } }
  6337. break;
  6338. case "snf":
  6339. _formdiv = new U.UF.UI.form(
  6340. "赛诺梵",
  6341. $$("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" }), {
  6342. "id": "snf",
  6343. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6344. "onresize": function () { }
  6345. }, {
  6346. closecallback: function () { }
  6347. }, { "style": { "height": "36px" } }).form; //创建窗体
  6348. _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); } }
  6349. break;
  6350. case "hanFamily":
  6351. _formdiv = new U.UF.UI.form(
  6352. "汉字家族",
  6353. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6354. "id": "hanFamily",
  6355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6356. "onresize": function () { }
  6357. }, {
  6358. closecallback: function () { }
  6359. }, { "style": { "height": "36px" } }).form; //创建窗体
  6360. _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); } }
  6361. break;
  6362. case "hanClassics":
  6363. _formdiv = new U.UF.UI.form(
  6364. "国学经典",
  6365. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6366. "id": "hanClassics",
  6367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6368. "onresize": function () { }
  6369. }, {
  6370. closecallback: function () { }
  6371. }, { "style": { "height": "36px" } }).form; //创建窗体
  6372. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6373. break;
  6374. case "hanTraining":
  6375. _formdiv = new U.UF.UI.form(
  6376. "笔画训练",
  6377. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6378. "id": "hanTraining",
  6379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6380. "onresize": function () { }
  6381. }, {
  6382. closecallback: function () { }
  6383. }, { "style": { "height": "36px" } }).form; //创建窗体
  6384. _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); } }
  6385. break;
  6386. case "hanClass":
  6387. _formdiv = new U.UF.UI.form(
  6388. "书法课堂",
  6389. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6390. "id": "hanClass",
  6391. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6392. "onresize": function () { }
  6393. }, {
  6394. closecallback: function () { }
  6395. }, { "style": { "height": "36px" } }).form; //创建窗体
  6396. _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); } }
  6397. break;
  6398. case "han":
  6399. _formdiv = new U.UF.UI.form(
  6400. "汉字宫",
  6401. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6402. "id": "han",
  6403. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6404. "onresize": function () { }
  6405. }, {
  6406. closecallback: function () { }
  6407. }, { "style": { "height": "36px" } }).form; //创建窗体
  6408. _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); } }
  6409. break;
  6410. case "projectGM": //课程管理
  6411. _formdiv = new U.UF.UI.form(
  6412. "课程管理",
  6413. $$("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 }), {
  6414. "id": "projectGM",
  6415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6416. "onresize": function () { }
  6417. }, {
  6418. closecallback: function () { }
  6419. }, { "style": { "height": "36px" } }).form; //创建窗体
  6420. _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); } }
  6421. break;
  6422. case "studyGM": //课程中心
  6423. _formdiv = new U.UF.UI.form(
  6424. "课程中心",
  6425. $$("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
  6426. "id": "study",
  6427. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6428. "onresize": function () { }
  6429. }, {
  6430. closecallback: function () { }
  6431. }, { "style": { "height": "36px" } }).form; //创建窗体
  6432. _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); } }
  6433. break;
  6434. // studentGM
  6435. case "studentGM": //学生管理
  6436. _formdiv = new U.UF.UI.form(
  6437. "学生管理",
  6438. $$("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 }), {
  6439. "id": "studentGM",
  6440. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6441. "onresize": function () { }
  6442. }, {
  6443. closecallback: function () { }
  6444. }, { "style": { "height": "36px" } }).form; //创建窗体
  6445. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6446. break;
  6447. case "evaluateGM": //学生评价
  6448. _formdiv = new U.UF.UI.form(
  6449. "学生评价",
  6450. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6451. "id": "evaluateGM",
  6452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6453. "onresize": function () { }
  6454. }, {
  6455. closecallback: function () { }
  6456. }, { "style": { "height": "36px" } }).form; //创建窗体
  6457. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6458. break;
  6459. // classGM
  6460. case "classGM": //班级管理
  6461. _formdiv = new U.UF.UI.form(
  6462. "班级管理",
  6463. $$("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 }), {
  6464. "id": "classGM",
  6465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6466. "onresize": function () { }
  6467. }, {
  6468. closecallback: function () { }
  6469. }, { "style": { "height": "36px" } }).form; //创建窗体
  6470. _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); } }
  6471. break;
  6472. // dataGM
  6473. case "dataGM":
  6474. _formdiv = new U.UF.UI.form(
  6475. "我的资料",
  6476. $$("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 }), {
  6477. "id": "dataGM",
  6478. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6479. "onresize": function () { }
  6480. }, {
  6481. closecallback: function () { }
  6482. }, { "style": { "height": "36px" } }).form; //创建窗体
  6483. _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); } }
  6484. break;
  6485. // caseGM
  6486. case "caseGM": //课程进展
  6487. _formdiv = new U.UF.UI.form(
  6488. "课程进展",
  6489. $$("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 }), {
  6490. "id": "caseGM",
  6491. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6492. "onresize": function () { }
  6493. }, {
  6494. closecallback: function () { }
  6495. }, { "style": { "height": "36px" } }).form; //创建窗体
  6496. _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); } }
  6497. break;
  6498. // meterialGM
  6499. case "meterialGM": //素材库
  6500. _formdiv = new U.UF.UI.form(
  6501. "素材库",
  6502. $$("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 }), {
  6503. "id": "meterialGM",
  6504. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6505. "onresize": function () { }
  6506. }, {
  6507. closecallback: function () { }
  6508. }, { "style": { "height": "36px" } }).form; //创建窗体
  6509. _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); } }
  6510. break;
  6511. // evaluateSGM
  6512. case "evaluateSGM": //我的评价
  6513. _formdiv = new U.UF.UI.form(
  6514. "我的评价",
  6515. $$("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 }), {
  6516. "id": "evaluateSGM",
  6517. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6518. "onresize": function () { }
  6519. }, {
  6520. closecallback: function () { }
  6521. }, { "style": { "height": "36px" } }).form; //创建窗体
  6522. _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); } }
  6523. break;
  6524. case "jupyter": //jupyter
  6525. _formdiv = new U.UF.UI.form(
  6526. "jupyter",
  6527. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6528. "id": "jupyter",
  6529. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6530. "onresize": function () { }
  6531. }, {
  6532. closecallback: function () { }
  6533. }, { "style": { "height": "36px" } }).form; //创建窗体
  6534. _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); } }
  6535. break;
  6536. case "number": //数字实验室
  6537. _formdiv = new U.UF.UI.form(
  6538. "数字实验室",
  6539. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6540. "id": "number",
  6541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6542. "onresize": function () { }
  6543. }, {
  6544. closecallback: function () { }
  6545. }, { "style": { "height": "36px" } }).form; //创建窗体
  6546. _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); } }
  6547. break;
  6548. case "studentCourse": //项目管理 学生
  6549. _formdiv = new U.UF.UI.form(
  6550. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6551. $$("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 }), {
  6552. "id": "studentCourse",
  6553. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6554. "onresize": function () { }
  6555. }, {
  6556. closecallback: function () { }
  6557. }, { "style": { "height": "36px" } }).form; //创建窗体
  6558. _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); } }
  6559. break;
  6560. case "studentCourseS": //项目管理 老师
  6561. _formdiv = new U.UF.UI.form(
  6562. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6563. $$("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 }), {
  6564. "id": "studentCourseS",
  6565. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6566. "onresize": function () { }
  6567. }, {
  6568. closecallback: function () { }
  6569. }, { "style": { "height": "36px" } }).form; //创建窗体
  6570. _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); } }
  6571. break;
  6572. case "studentIndex": //项目中心
  6573. _formdiv = new U.UF.UI.form(
  6574. "项目中心",
  6575. $$("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 }), {
  6576. "id": "studentIndex",
  6577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6578. "onresize": function () { }
  6579. }, {
  6580. closecallback: function () { }
  6581. }, { "style": { "height": "36px" } }).form; //创建窗体
  6582. _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); } }
  6583. break;
  6584. case "CaseDesignS":
  6585. _formdiv = new U.UF.UI.form(
  6586. "项目进展",
  6587. $$("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 }), {
  6588. "id": "case",
  6589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6590. "onresize": function () { }
  6591. }, {
  6592. closecallback: function () { }
  6593. }, { "style": { "height": "36px" } }).form; //创建窗体
  6594. _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); } }
  6595. break;
  6596. case "tcStudent": //腾讯学生管理
  6597. _formdiv = new U.UF.UI.form(
  6598. "学生管理",
  6599. $$("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 }), {
  6600. "id": "tcStudent",
  6601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6602. "onresize": function () { }
  6603. }, {
  6604. closecallback: function () { }
  6605. }, { "style": { "height": "36px" } }).form; //创建窗体
  6606. _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); } }
  6607. break;
  6608. case "tcSchool": //腾讯学校管理
  6609. _formdiv = new U.UF.UI.form(
  6610. "学校管理",
  6611. $$("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 }), {
  6612. "id": "tcSchool",
  6613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6614. "onresize": function () { }
  6615. }, {
  6616. closecallback: function () { }
  6617. }, { "style": { "height": "36px" } }).form; //创建窗体
  6618. _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); } }
  6619. break;
  6620. case "tcTeacher": //腾讯学校管理
  6621. _formdiv = new U.UF.UI.form(
  6622. "教师管理",
  6623. $$("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 }), {
  6624. "id": "tcTeacher",
  6625. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6626. "onresize": function () { }
  6627. }, {
  6628. closecallback: function () { }
  6629. }, { "style": { "height": "36px" } }).form; //创建窗体
  6630. _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); } }
  6631. break;
  6632. case "teacher":
  6633. _formdiv = new U.UF.UI.form(
  6634. "教师管理",
  6635. $$("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 }), {
  6636. "id": "teacher",
  6637. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6638. "onresize": function () { }
  6639. }, {
  6640. closecallback: function () { }
  6641. }, { "style": { "height": "36px" } }).form; //创建窗体
  6642. _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); } }
  6643. break;
  6644. case "tcData": //腾讯我的资料
  6645. _formdiv = new U.UF.UI.form(
  6646. "我的资料",
  6647. $$("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 }), {
  6648. "id": "tcData",
  6649. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6650. "onresize": function () { }
  6651. }, {
  6652. closecallback: function () { }
  6653. }, { "style": { "height": "36px" } }).form; //创建窗体
  6654. _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); } }
  6655. break;
  6656. case "tcNotice": //腾讯消息通知
  6657. _formdiv = new U.UF.UI.form(
  6658. "消息通知",
  6659. $$("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 }), {
  6660. "id": "tcNotice",
  6661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6662. "onresize": function () { }
  6663. }, {
  6664. closecallback: function () { }
  6665. }, { "style": { "height": "36px" } }).form; //创建窗体
  6666. _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); } }
  6667. break;
  6668. case "myReport": //好友打开
  6669. _formdiv = new U.UF.UI.form(
  6670. "我的评价",
  6671. $$("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 }), {
  6672. "id": "myReport",
  6673. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6674. "onresize": function () { }
  6675. }, {
  6676. closecallback: function () { }
  6677. }, { "style": { "height": "36px" } }).form; //创建窗体
  6678. _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); } }
  6679. break;
  6680. case "learnAna": //好友打开
  6681. _formdiv = new U.UF.UI.form(
  6682. "学习分析",
  6683. $$("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 }), {
  6684. "id": "learnAna",
  6685. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6686. "onresize": function () { }
  6687. }, {
  6688. closecallback: function () { }
  6689. }, { "style": { "height": "36px" } }).form; //创建窗体
  6690. _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); } }
  6691. break;
  6692. case "AIChat": //AI共创
  6693. _formdiv = new U.UF.UI.form(
  6694. "AI共创",
  6695. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6696. "id": "AIChat",
  6697. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6698. "onresize": function () { }
  6699. }, {
  6700. istop: true,
  6701. closecallback: function () { $("#aichat_icon").remove(); },
  6702. narrowcallback: function () {
  6703. if (!$("#aichat_icon")[0]) {
  6704. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6705. }
  6706. },
  6707. }, { "style": { "height": "36px" } }).form; //创建窗体
  6708. _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); } }
  6709. break;
  6710. case "ainew": //AI共创
  6711. _formdiv = new U.UF.UI.form(
  6712. "AI协同",
  6713. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6714. "id": "ainew",
  6715. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6716. "onresize": function () { }
  6717. }, {
  6718. closecallback: function () { }
  6719. }, { "style": { "height": "36px" } }).form; //创建窗体
  6720. _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); } }
  6721. break;
  6722. case "gpt4": //gpt4
  6723. _formdiv = new U.UF.UI.form(
  6724. "AI助手",
  6725. $$("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 }), {
  6726. "id": "gpt4",
  6727. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6728. "onresize": function () { }
  6729. }, {
  6730. closecallback: function () { }
  6731. }, { "style": { "height": "36px" } }).form; //创建窗体
  6732. _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); } }
  6733. break;
  6734. case "aigpt": //gpt4
  6735. _formdiv = new U.UF.UI.form(
  6736. "AI助手+",
  6737. $$("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/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6738. "id": "aigpt",
  6739. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6740. "onresize": function () { }
  6741. }, {
  6742. closecallback: function () {
  6743. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6744. }
  6745. }, { "style": { "height": "36px" } }).form; //创建窗体
  6746. _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); } }
  6747. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6748. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6749. })
  6750. break;
  6751. case "aiKnowledge": //aiKnowledge
  6752. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6753. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6754. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6755. }
  6756. _formdiv = new U.UF.UI.form(
  6757. "知识建构",
  6758. $$("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 }), {
  6759. "id": "aiKnowledge",
  6760. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //创建窗体
  6765. _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); } }
  6766. break;
  6767. case "futureClass": //AI共创
  6768. _formdiv = new U.UF.UI.form(
  6769. "协同建构",
  6770. $$("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
  6771. "id": "synergyCourse",
  6772. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () {
  6776. $("iframe", _formdiv)[0].contentWindow.loginout();
  6777. }
  6778. }, { "style": { "height": "36px" } }).form; //创建窗体
  6779. _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); } }
  6780. break;
  6781. case "aiagent": //ai agent
  6782. _formdiv = new U.UF.UI.form(
  6783. "AI Agent",
  6784. $$("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" }), {
  6785. "id": "AIAgent",
  6786. "style": { "width": "100%", "height": "100%", "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/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6792. break;
  6793. case "dataBoard": //数据看板
  6794. _formdiv = new U.UF.UI.form(
  6795. "数据看板",
  6796. $$("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 }), {
  6797. "id": "dataBoard",
  6798. "style": { "width": "100%", "height": "100%", "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/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6804. break;
  6805. case "dataBoardSies": //数据融合
  6806. _formdiv = new U.UF.UI.form(
  6807. "数据融合",
  6808. $$("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 }), {
  6809. "id": "dataBoardSies",
  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/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6816. break;
  6817. case "dataBoardNew": //数据看板
  6818. _formdiv = new U.UF.UI.form(
  6819. "综合看板",
  6820. $$("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 }), {
  6821. "id": "dataBoardNew",
  6822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6823. "onresize": function () { }
  6824. }, {
  6825. closecallback: function () { }
  6826. }, { "style": { "height": "36px" } }).form; //创建窗体
  6827. _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); } }
  6828. break;
  6829. case "dataBoardTest": //数据看板
  6830. _formdiv = new U.UF.UI.form(
  6831. "评测看板",
  6832. $$("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 }), {
  6833. "id": "dataBoardTest",
  6834. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6835. "onresize": function () { }
  6836. }, {
  6837. closecallback: function () { }
  6838. }, { "style": { "height": "36px" } }).form; //创建窗体
  6839. _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); } }
  6840. break;
  6841. case "AIAnalyse": //AI共创
  6842. _formdiv = new U.UF.UI.form(
  6843. "AI分析",
  6844. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6845. "id": "AIAnalyse",
  6846. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6847. "onresize": function () { }
  6848. }, {
  6849. closecallback: function () { }
  6850. }, { "style": { "height": "36px" } }).form; //创建窗体
  6851. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6852. break;
  6853. case "studioCourse": //AI共创
  6854. _formdiv = new U.UF.UI.form(
  6855. "工作管理",
  6856. $$("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 }), {
  6857. "id": "studioCourse",
  6858. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6859. "onresize": function () { }
  6860. }, {
  6861. closecallback: function () { }
  6862. }, { "style": { "height": "36px" } }).form; //创建窗体
  6863. _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); } }
  6864. break;
  6865. case "studioIndex": //AI共创
  6866. _formdiv = new U.UF.UI.form(
  6867. "工作中心",
  6868. $$("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 }), {
  6869. "id": "studioIndex",
  6870. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6871. "onresize": function () { }
  6872. }, {
  6873. closecallback: function () { }
  6874. }, { "style": { "height": "36px" } }).form; //创建窗体
  6875. _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); } }
  6876. break;
  6877. case "source":
  6878. _formdiv = new U.UF.UI.form(
  6879. "教学资源",
  6880. $$("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 }), {
  6881. "id": "source",
  6882. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6883. "onresize": function () { }
  6884. }, {
  6885. closecallback: function () { }
  6886. }, { "style": { "height": "36px" } }).form; //创建窗体
  6887. _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); } }
  6888. break;
  6889. case "testTeacher":
  6890. _formdiv = new U.UF.UI.form(
  6891. "智能表单",
  6892. $$("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 }), {
  6893. "id": "testTeacher",
  6894. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6895. "onresize": function () { }
  6896. }, {
  6897. closecallback: function () { }
  6898. }, { "style": { "height": "36px" } }).form; //创建窗体
  6899. _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); } }
  6900. break;
  6901. case "testStudent":
  6902. _formdiv = new U.UF.UI.form(
  6903. "教师中心",
  6904. $$("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 }), {
  6905. "id": "testStudent",
  6906. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6907. "onresize": function () { }
  6908. }, {
  6909. closecallback: function () { }
  6910. }, { "style": { "height": "36px" } }).form; //创建窗体
  6911. _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); } }
  6912. break;
  6913. case "testTeacherSies":
  6914. _formdiv = new U.UF.UI.form(
  6915. "教师管理",
  6916. $$("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 }), {
  6917. "id": "testTeacherSies",
  6918. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6919. "onresize": function () { }
  6920. }, {
  6921. closecallback: function () { }
  6922. }, { "style": { "height": "36px" } }).form; //创建窗体
  6923. _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); } }
  6924. break;
  6925. case "testStudentSies":
  6926. _formdiv = new U.UF.UI.form(
  6927. "教师中心",
  6928. $$("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 }), {
  6929. "id": "testStudentSies",
  6930. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6931. "onresize": function () { }
  6932. }, {
  6933. closecallback: function () { }
  6934. }, { "style": { "height": "36px" } }).form; //创建窗体
  6935. _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); } }
  6936. break;
  6937. case "ytpbl": //消息通知
  6938. _formdiv = new U.UF.UI.form(
  6939. "案例征集",
  6940. $$("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 }), {
  6941. "id": "ytpbl",
  6942. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6943. "onresize": function () { }
  6944. }, {
  6945. closecallback: function () { }
  6946. }, { "style": { "height": "36px" } }).form; //创建窗体
  6947. _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); } }
  6948. // 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");
  6949. break;
  6950. case "aiCourseResource": //人工智能窗体
  6951. _formdiv = new U.UF.UI.form(
  6952. false,
  6953. $$("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 }), {
  6954. "id": "aiCourseResource",
  6955. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6956. "onresize": function () { },
  6957. "isdrag": false,
  6958. }, {
  6959. closecallback: function () { }
  6960. }, { "style": { "height": "36px" } }).form; //创建窗体
  6961. _taskbar = ''
  6962. break;
  6963. case "szdjgCocooroboX": //图形化编程
  6964. _formdiv = new U.UF.UI.form(
  6965. "图形化编程",
  6966. $$("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" }), {
  6967. "id": "szdjgCocooroboX",
  6968. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6969. "onresize": function () { }
  6970. }, {
  6971. closecallback: function () { }
  6972. }, { "style": { "height": "36px" } }).form; //创建窗体
  6973. _taskbar = ''
  6974. break;
  6975. case "szdjgPython": //python编程
  6976. _formdiv = new U.UF.UI.form(
  6977. "Python编程",
  6978. $$("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" }), {
  6979. "id": "szdjgPython",
  6980. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6981. "onresize": function () { }
  6982. }, {
  6983. closecallback: function () { }
  6984. }, { "style": { "height": "36px" } }).form; //创建窗体
  6985. _taskbar = ''
  6986. break;
  6987. case "Record":
  6988. _formdiv = new U.UF.UI.form(
  6989. "观察记录",
  6990. $$("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 }), {
  6991. "id": "Record",
  6992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6993. "onresize": function () { }
  6994. }, {
  6995. closecallback: function () { }
  6996. }, { "style": { "height": "36px" } }).form; //创建窗体
  6997. _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); } }
  6998. break;
  6999. case "aigptCourse":
  7000. _formdiv = new U.UF.UI.form(
  7001. "AI智能体",
  7002. $$("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' }), {
  7003. "id": "aigptCourse",
  7004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7005. "onresize": function () { }
  7006. }, {
  7007. closecallback: function () { }
  7008. }, { "style": { "height": "36px" } }).form; //创建窗体
  7009. _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); } }
  7010. break;
  7011. case "classroomObservation":
  7012. _formdiv = new U.UF.UI.form(
  7013. "课堂观察",
  7014. $$("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 }), {
  7015. "id": "classroomObservation",
  7016. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7017. "onresize": function () { }
  7018. }, {
  7019. closecallback: function () { }
  7020. }, { "style": { "height": "36px" } }).form; //创建窗体
  7021. _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); } }
  7022. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7023. break;
  7024. case "pblCourse":
  7025. _formdiv = new U.UF.UI.form(
  7026. "学生PBL",
  7027. $$("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 }), {
  7028. "id": "pblCourse",
  7029. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7030. "onresize": function () { }
  7031. }, {
  7032. closecallback: function () { }
  7033. }, { "style": { "height": "36px" } }).form; //创建窗体
  7034. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7035. break;
  7036. case "appStore":
  7037. _formdiv = new U.UF.UI.form(
  7038. "CocoFlow",
  7039. $$("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": "//cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7040. "id": "appStore",
  7041. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7042. "onresize": function () { }
  7043. }, {
  7044. closecallback: function () { }
  7045. }, { "style": { "height": "36px" } }).form; //创建窗体
  7046. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7047. break;
  7048. case "sassPlatform":
  7049. _formdiv = new U.UF.UI.form(
  7050. "Sass通用后台管理",
  7051. $$("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 }), {
  7052. "id": "sassPlatform",
  7053. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7054. "onresize": function () { }
  7055. }, {
  7056. closecallback: function () { }
  7057. }, { "style": { "height": "36px" } }).form; //创建窗体
  7058. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7059. break;
  7060. case "EDU":
  7061. _formdiv = new U.UF.UI.form(
  7062. "EDU",
  7063. $$("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" }), {
  7064. "id": "EDU",
  7065. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7066. "onresize": function () { }
  7067. }, {
  7068. closecallback: function () { }
  7069. }, { "style": { "height": "36px" } }).form; //创建窗体
  7070. _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); } }
  7071. break;
  7072. case "knowledge":
  7073. _formdiv = new U.UF.UI.form(
  7074. "知识库",
  7075. $$("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 }), {
  7076. "id": "knowledge",
  7077. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7078. "onresize": function () { }
  7079. }, {
  7080. closecallback: function () { }
  7081. }, { "style": { "height": "36px" } }).form; //创建窗体
  7082. _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); } }
  7083. break;
  7084. case "userExamine":
  7085. _formdiv = new U.UF.UI.form(
  7086. "账号申请",
  7087. $$("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" }), {
  7088. "id": "userExamine",
  7089. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7090. "onresize": function () { }
  7091. }, {
  7092. closecallback: function () { }
  7093. }, { "style": { "height": "36px" } }).form; //创建窗体
  7094. break;
  7095. }
  7096. //U.MD.D.I.openClick(str);
  7097. //如果有任务栏信息
  7098. if (_taskbar) {
  7099. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7100. }
  7101. }
  7102. // U.MD.D.I.openClick = function(str){
  7103. // var click = '';
  7104. // switch(str){
  7105. // case 'friend':
  7106. // click = '我的好友';
  7107. // break;
  7108. // case 'domain':
  7109. // click = '域名管理';
  7110. // break;
  7111. // case 'disk':
  7112. // click = '我的云盘';
  7113. // break;
  7114. // case 'word':
  7115. // click = 'Word';
  7116. // break;
  7117. // case 'excel':
  7118. // click = 'Execl';
  7119. // break;
  7120. // case 'txt':
  7121. // click = '文本文件';
  7122. // break;
  7123. // case 'lookupFriend':
  7124. // click = '查找好友';
  7125. // break;
  7126. // case 'ftp':
  7127. // click = 'FTP';
  7128. // break;
  7129. // case 'group':
  7130. // click = '群组';
  7131. // break;
  7132. // case 'set':
  7133. // click = '我的设置';
  7134. // break;
  7135. // case 'systemSet':
  7136. // click = '系统设置';
  7137. // break;
  7138. // case 'boomYun':
  7139. // click = '互联办公';
  7140. // break;
  7141. // case 'xz':
  7142. // click = '云端下载';
  7143. // break;
  7144. // case 'client':
  7145. // click = '有思浏览器';
  7146. // break;
  7147. // case 'backEndProgramming':
  7148. // click = '在线后台编程';
  7149. // break;
  7150. // case 'frontEndProgramming':
  7151. // click = '在线前端编程';
  7152. // break;
  7153. // default: break;
  7154. // }
  7155. // if(U.MD.D.I.Ip && click){
  7156. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7157. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7158. // })
  7159. // }
  7160. // }
  7161. /**
  7162. *函数作用:ajax简易函数,使用post格式
  7163. *@param url {data} 后台地址
  7164. *@param data {data} 参数json
  7165. *@param fn {data} 回调函数
  7166. *
  7167. */
  7168. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7169. // var xhr = new XMLHttpRequest();
  7170. // xhr.open("GET",url,true);
  7171. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7172. // xhr.onreadystatechange = function(){
  7173. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7174. // fn.call(this,xhr.responseText);
  7175. // }
  7176. // };
  7177. // xhr.send();
  7178. // }
  7179. /*判断是否是内网IP*/
  7180. // U.MD.D.I.isInnerIPFn = function(str){
  7181. // var curPageUrl = str;
  7182. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7183. // curPageUrl =curPageUrl.replace(reg1,'');
  7184. // // console.log('curPageUrl-1 '+curPageUrl);
  7185. // var reg2 = /\:+/g;//替换冒号为一点
  7186. // curPageUrl =curPageUrl.replace(reg2,'.');
  7187. // // console.log('curPageUrl-2 '+curPageUrl);
  7188. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7189. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7190. // if(curPageUrl[2] != '16'){
  7191. // return ipAddress;
  7192. // }else{
  7193. // return false;
  7194. // }
  7195. // }
  7196. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7197. // //compatibility for firefox and chrome
  7198. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7199. // var pc = new myPeerConnection({
  7200. // iceServers: []
  7201. // }),
  7202. // noop = function() {},
  7203. // localIPs = {},
  7204. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7205. // key;
  7206. // function iterateIP(ip) {
  7207. // if (!localIPs[ip]) onNewIP(ip);
  7208. // localIPs[ip] = true;
  7209. // }
  7210. // //create a bogus data channel
  7211. // pc.createDataChannel("");
  7212. // // create offer and set local description
  7213. // pc.createOffer().then(function(sdp) {
  7214. // sdp.sdp.split('\n').forEach(function(line) {
  7215. // if (line.indexOf('candidate') < 0) return;
  7216. // line.match(ipRegex).forEach(iterateIP);
  7217. // });
  7218. // pc.setLocalDescription(sdp, noop, noop);
  7219. // }).catch(function(reason) {
  7220. // // An error occurred, so handle the failure to connect
  7221. // });
  7222. // //sten for candidate events
  7223. // pc.onicecandidate = function(ice) {
  7224. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7225. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7226. // };
  7227. // }
  7228. // U.MD.D.I.getUserIpBool = function(callback){
  7229. // U.MD.D.I.getUserIP(function(ip){
  7230. // alert("Got IP! :" + ip);
  7231. // });
  7232. //}
  7233. //#endregion
  7234. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7235. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7236. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7237. _userinfo = US.userInfo, //登录用户信息
  7238. _userid = US.userInfo.userid //登录用户id
  7239. let _iframe;
  7240. let _cid = cid,
  7241. _stage = stage,
  7242. _task = task,
  7243. _tool = tool;
  7244. var _jie = $$("div", {
  7245. "style": {
  7246. "position": "absolute",
  7247. "bottom": "50px",
  7248. "right": "50px",
  7249. "zIndex": "9999",
  7250. "backgroundColor": "#2268bc",
  7251. "color": "#fff",
  7252. "padding": "12px 20px",
  7253. "cursor": "pointer",
  7254. "borderRadius": "4px",
  7255. },
  7256. "innerHTML": "提交作业"
  7257. })
  7258. let aTool = ''
  7259. let _loading = document.createElement('div')
  7260. _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;"
  7261. // _loading.id = "";
  7262. let _lchild = document.createElement('div')
  7263. let _limg = document.createElement('img')
  7264. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7265. _limg.style = "width: 26px;margin-right: 10px;"
  7266. _lchild.appendChild(_limg)
  7267. let _lspan = document.createElement('span')
  7268. _lspan.innerHTML = "上传中..."
  7269. _lchild.appendChild(_lspan)
  7270. _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%);"
  7271. _loading.appendChild(_lchild)
  7272. var _box = $$('div', {
  7273. "style": {
  7274. "position": "relative",
  7275. "width": "100%",
  7276. "height": "100%",
  7277. },
  7278. })
  7279. _box.appendChild(_loading)
  7280. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7281. switch (str) {
  7282. case "whiteboard":
  7283. aTool = 1;
  7284. _iframe = $$("iframe", {
  7285. "frameborder": "no",
  7286. "border": "0",
  7287. "scrolling ": "no",
  7288. "style": {
  7289. "cssText": "border:0;width:100%;height:100%"
  7290. },
  7291. "src": "https://beta.iwb.cocorobo.cn/"
  7292. })
  7293. _box.appendChild(_iframe);
  7294. _box.appendChild(_jie);
  7295. _formdiv = new U.UF.UI.form(
  7296. "电子白板",
  7297. _box, {
  7298. "id": "whiteboard" + cid + stage + task + tool,
  7299. "style": {
  7300. "width": "90%",
  7301. "height": "90%",
  7302. "overflow": 'hidden'
  7303. },
  7304. "onresize": function () { }
  7305. }, {
  7306. closecallback: function () { }
  7307. }, {
  7308. "style": {
  7309. "height": "36px"
  7310. }
  7311. }).form; //创建窗体
  7312. _taskbar = {
  7313. "id": str + _formdiv.id,
  7314. "style": {
  7315. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7316. },
  7317. "name": "电子白板",
  7318. "forms": _formdiv,
  7319. "click": function () {
  7320. U.MD.D.I.openApplication(str, obj, info);
  7321. }
  7322. }
  7323. break;
  7324. case "mind":
  7325. aTool = 3;
  7326. _iframe = $$("iframe", {
  7327. "frameborder": "no",
  7328. "border": "0",
  7329. "scrolling ": "no",
  7330. "style": {
  7331. "cssText": "border:0;width:100%;height:100%"
  7332. },
  7333. "src": "/kityminder-editor/dist/index.html"
  7334. })
  7335. _box.appendChild(_iframe);
  7336. _box.appendChild(_jie);
  7337. _formdiv = new U.UF.UI.form(
  7338. "思维导图",
  7339. _box, { //"/jsmind/example/demo.html"
  7340. "id": "mind" + cid + stage + task + tool,
  7341. "style": {
  7342. "width": "90%",
  7343. "height": "90%",
  7344. "overflow": 'hidden'
  7345. },
  7346. "onresize": function () { }
  7347. }, {
  7348. closecallback: function () { }
  7349. }, {
  7350. "style": {
  7351. "height": "36px"
  7352. }
  7353. }).form; //创建窗体
  7354. _taskbar = {
  7355. "id": str + _formdiv.id,
  7356. "style": {
  7357. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7358. },
  7359. "name": "思维导图",
  7360. "forms": _formdiv,
  7361. "click": function () {
  7362. U.MD.D.I.openApplication(str, obj, info);
  7363. }
  7364. }
  7365. break;
  7366. case "MindMap":
  7367. aTool = 3;
  7368. _iframe = $$("iframe", {
  7369. "frameborder": "no",
  7370. "border": "0",
  7371. "scrolling ": "no",
  7372. "style": {
  7373. "cssText": "border:0;width:100%;height:100%"
  7374. },
  7375. "src": "//cloud.cocorobo.cn/mind/"
  7376. })
  7377. _box.appendChild(_iframe);
  7378. _box.appendChild(_jie);
  7379. _formdiv = new U.UF.UI.form(
  7380. "思维导图",
  7381. _box, { //"/jsmind/example/demo.html"
  7382. "id": "mind" + cid + stage + task + tool,
  7383. "style": {
  7384. "width": "90%",
  7385. "height": "90%",
  7386. "overflow": 'hidden'
  7387. },
  7388. "onresize": function () { }
  7389. }, {
  7390. closecallback: function () { }
  7391. }, {
  7392. "style": {
  7393. "height": "36px"
  7394. }
  7395. }).form; //创建窗体
  7396. _taskbar = {
  7397. "id": str + _formdiv.id,
  7398. "style": {
  7399. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7400. },
  7401. "name": "思维导图",
  7402. "forms": _formdiv,
  7403. "click": function () {
  7404. U.MD.D.I.openApplication(str, obj, info);
  7405. }
  7406. }
  7407. break;
  7408. case "doc":
  7409. aTool = 6;
  7410. _iframe = $$("iframe", {
  7411. "frameborder": "no",
  7412. "border": "0",
  7413. "scrolling ": "no",
  7414. "style": {
  7415. "cssText": "border:0;width:100%;height:100%"
  7416. },
  7417. "src": "/Office/Word/WordEditArea.htm"
  7418. })
  7419. _box.appendChild(_iframe);
  7420. _box.appendChild(_jie);
  7421. _formdiv = new U.UF.UI.form(
  7422. "协同文档",
  7423. _box, {
  7424. "id": "doc" + cid + stage + task + tool,
  7425. "style": {
  7426. "width": "90%",
  7427. "height": "90%",
  7428. "overflow": 'hidden'
  7429. },
  7430. "onresize": function () { }
  7431. }, {
  7432. closecallback: function () { }
  7433. }, {
  7434. "style": {
  7435. "height": "36px"
  7436. }
  7437. }).form; //创建窗体
  7438. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7439. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7440. })
  7441. _taskbar = {
  7442. "id": str + _formdiv.id,
  7443. "style": {
  7444. "backgroundImage": "url(/img/icon/doc.png)"
  7445. },
  7446. "name": "协同文档",
  7447. "forms": _formdiv,
  7448. "click": function () {
  7449. U.MD.D.I.openApplication(str, obj, info);
  7450. }
  7451. }
  7452. break;
  7453. case "mindNetwork": //好友打开
  7454. aTool = 7;
  7455. _iframe = $$("iframe", {
  7456. "webkitallowfullscreen": "",
  7457. "mozallowfullscreen": "",
  7458. "allowfullscreen": "",
  7459. "frameborder": "no",
  7460. "border": "0",
  7461. "scrolling ": "no",
  7462. "style": {
  7463. "cssText": "border:0; width:100%; height:100%;"
  7464. },
  7465. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7466. })
  7467. _box.appendChild(_iframe);
  7468. _box.appendChild(_jie);
  7469. _formdiv = new U.UF.UI.form(
  7470. "思维网格",
  7471. _box, {
  7472. "id": "mindNetwork" + cid + stage + task + tool,
  7473. "style": {
  7474. "width": "90%",
  7475. "height": "90%",
  7476. "overflow": 'hidden'
  7477. },
  7478. "onresize": function () { }
  7479. }, {
  7480. closecallback: function () { }
  7481. }, {
  7482. "style": {
  7483. "height": "36px"
  7484. }
  7485. }).form; //创建窗体
  7486. _taskbar = {
  7487. "id": str + _formdiv.id,
  7488. "style": {
  7489. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7490. },
  7491. "name": "思维网格",
  7492. "forms": _formdiv,
  7493. "click": function () {
  7494. U.MD.D.I.openApplication(str, obj, info);
  7495. }
  7496. }
  7497. break;
  7498. case "courseDesign":
  7499. _iframe = $$("iframe", {
  7500. "webkitallowfullscreen": "",
  7501. "mozallowfullscreen": "",
  7502. "allowfullscreen": "",
  7503. "frameborder": "no",
  7504. "border": "0",
  7505. "scrolling ": "no",
  7506. "style": {
  7507. "cssText": "border:0; width:100%; height:100%;"
  7508. },
  7509. "src": "/course-design-vue"
  7510. })
  7511. _box.appendChild(_iframe);
  7512. _box.appendChild(_jie);
  7513. _formdiv = new U.UF.UI.form(
  7514. "项目设计",
  7515. _box, {
  7516. "id": "courseDesign" + cid + stage + task + tool,
  7517. "style": {
  7518. "width": "90%",
  7519. "height": "90%",
  7520. "overflow": 'hidden'
  7521. },
  7522. "onresize": function () { }
  7523. }, {
  7524. closecallback: function () { }
  7525. }, {
  7526. "style": {
  7527. "height": "36px"
  7528. }
  7529. }).form; //创建窗体
  7530. _taskbar = {
  7531. "id": str + _formdiv.id,
  7532. "style": {
  7533. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7534. },
  7535. "name": "项目设计",
  7536. "forms": _formdiv,
  7537. "click": function () {
  7538. U.MD.D.I.openApplication(str, obj, info);
  7539. }
  7540. }
  7541. break;
  7542. }
  7543. const script1 = document.createElement("script");
  7544. script1.type = "text/javascript";
  7545. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7546. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7547. const script2 = document.createElement("script");
  7548. script2.type = "text/javascript";
  7549. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7550. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7551. const script3 = document.createElement("script");
  7552. script3.type = "text/javascript";
  7553. script3.charset = "UTF-8";
  7554. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7555. const script4 = document.createElement("script");
  7556. script4.type = "text/javascript";
  7557. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7558. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7559. if (_iframe) {
  7560. if (str == 'doc') {
  7561. _iframe = _formdiv.querySelector('iframe')
  7562. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7563. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7564. _iframe.contentWindow.document.body.appendChild(script1);
  7565. _iframe.contentWindow.document.body.appendChild(script2);
  7566. // _iframe.contentWindow.document.body.appendChild(script3);
  7567. _iframe.contentWindow.document.body.appendChild(script4);
  7568. })
  7569. if (onloadListener) {
  7570. _iframe.contentDocument.location.reload()
  7571. } else {
  7572. _iframe.contentDocument.location.reload()
  7573. }
  7574. } else if (str == 'courseDesign') {
  7575. U.UF.DL.iframeLoad(_iframe, function () {
  7576. // _iframe.contentWindow.U.MD.O.W.load();
  7577. // _iframe.contentWindow.document.body.appendChild(script1);
  7578. _iframe.contentWindow.document.body.appendChild(script2);
  7579. _iframe.contentWindow.document.body.appendChild(script4);
  7580. })
  7581. } else if (str == 'mind') {
  7582. _iframe = _formdiv.querySelector('iframe')
  7583. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7584. //
  7585. _iframe.contentWindow.document.body.appendChild(script1);
  7586. _iframe.contentWindow.document.body.appendChild(script2);
  7587. _iframe.contentWindow.document.body.appendChild(script4);
  7588. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7589. })
  7590. if (onloadListener) {
  7591. _iframe.contentDocument.location.reload()
  7592. } else {
  7593. _iframe.contentDocument.location.reload()
  7594. }
  7595. } else if (str == 'whiteboard') {
  7596. _iframe = _formdiv.querySelector('iframe')
  7597. let onloadListener = _iframe.onload = () => {
  7598. _iframe.contentWindow.document.body.appendChild(script1);
  7599. _iframe.contentWindow.document.body.appendChild(script2);
  7600. _iframe.contentWindow.document.body.appendChild(script4);
  7601. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7602. };
  7603. // if (onloadListener) {
  7604. // try {
  7605. // _iframe.src += "?cocorobo="+new Date().getTime()
  7606. // _iframe.contentWindow.document.location.reload()
  7607. // } catch (error) {
  7608. // }
  7609. // } else {
  7610. // _iframe.contentDocument.location.reload()
  7611. // }
  7612. } else {
  7613. _iframe.onload = () => {
  7614. _iframe.contentWindow.document.body.appendChild(script1);
  7615. _iframe.contentWindow.document.body.appendChild(script2);
  7616. // _iframe.contentWindow.document.body.appendChild(script3);
  7617. _iframe.contentWindow.document.body.appendChild(script4);
  7618. };
  7619. }
  7620. _jie.onclick = async () => {
  7621. let text = ''
  7622. if (aTool == 1) {
  7623. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7624. } else if (aTool == 6) {
  7625. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7626. } else if (aTool == 3) {
  7627. text = await U.MD.D.I.getEditorContent(_iframe);
  7628. }
  7629. _loading.style.display = 'flex'
  7630. console.log(_loading);
  7631. var _ajs = _iframe.contentWindow.document.createElement("script");
  7632. _ajs.type = "text/javascript";
  7633. _ajs.innerHTML =
  7634. // 'console.log(' + _loading + ');\n' +
  7635. 'var _js = document.createElement("script");\n' +
  7636. '_js.type="text/javascript";\n' +
  7637. '_js.charset="UTF-8";\n' +
  7638. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7639. "_js.onload = function(){\n" +
  7640. ' var a = document.getElementsByTagName("img")\n' +
  7641. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7642. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7643. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7644. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7645. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7646. "beforeUpload_shishi(file," +
  7647. "'" +
  7648. _userid +
  7649. "'" +
  7650. ", " +
  7651. "'" +
  7652. _cid +
  7653. "'" +
  7654. ", " +
  7655. "'" +
  7656. _stage +
  7657. "'" +
  7658. ", " +
  7659. "'" +
  7660. _task +
  7661. "'" +
  7662. ", " +
  7663. "'" +
  7664. _tool +
  7665. "'" +
  7666. ", " +
  7667. "'" +
  7668. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7669. "'" +
  7670. ", " +
  7671. "'" +
  7672. aTool +
  7673. "'" +
  7674. ", " +
  7675. "`" +
  7676. text +
  7677. "`" +
  7678. ")\n" +
  7679. " });\n" +
  7680. "}\n" +
  7681. "document.head.appendChild(_js);\n";
  7682. _iframe.contentWindow.document.head.appendChild(_ajs);
  7683. }
  7684. }
  7685. //U.MD.D.I.openClick(str);
  7686. //如果有任务栏信息
  7687. // if (_taskbar) {
  7688. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7689. // }
  7690. }
  7691. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7692. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7693. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7694. _userinfo = US.userInfo, //登录用户信息
  7695. _userid = US.userInfo.userid //登录用户id
  7696. let _iframe;
  7697. let _cid = cid,
  7698. _stage = stage,
  7699. _task = task,
  7700. _tool = tool;
  7701. var _jie = $$("div", {
  7702. "style": {
  7703. "position": "absolute",
  7704. "bottom": "50px",
  7705. "right": "50px",
  7706. "zIndex": "9999",
  7707. "backgroundColor": "#2268bc",
  7708. "color": "#fff",
  7709. "padding": "12px 20px",
  7710. "cursor": "pointer",
  7711. "borderRadius": "4px",
  7712. },
  7713. "innerHTML": "提交作业"
  7714. })
  7715. let aTool = ''
  7716. let _loading = document.createElement('div')
  7717. _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;"
  7718. // _loading.id = "";
  7719. let _lchild = document.createElement('div')
  7720. let _limg = document.createElement('img')
  7721. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7722. _limg.style = "width: 26px;margin-right: 10px;"
  7723. _lchild.appendChild(_limg)
  7724. let _lspan = document.createElement('span')
  7725. _lspan.innerHTML = "上传中..."
  7726. _lchild.appendChild(_lspan)
  7727. _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%);"
  7728. _loading.appendChild(_lchild)
  7729. let _box = $$('div', {
  7730. "style": {
  7731. "position": "relative",
  7732. "width": "100%",
  7733. "height": "100%",
  7734. },
  7735. })
  7736. _box.appendChild(_loading)
  7737. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7738. switch (str) {
  7739. case "whiteboard":
  7740. aTool = 1;
  7741. _iframe = $$("iframe", {
  7742. "frameborder": "no",
  7743. "border": "0",
  7744. "scrolling ": "no",
  7745. "style": {
  7746. "cssText": "border:0;width:100%;height:100%"
  7747. },
  7748. "src": "https://beta.iwb.cocorobo.cn/"
  7749. })
  7750. _box.appendChild(_iframe);
  7751. _box.appendChild(_jie);
  7752. _formdiv = new U.UF.UI.form(
  7753. "电子白板",
  7754. _box, {
  7755. "id": "whiteboard" + cid + stage + task + tool,
  7756. "style": {
  7757. "width": "90%",
  7758. "height": "90%",
  7759. "overflow": 'hidden'
  7760. },
  7761. "onresize": function () { }
  7762. }, {
  7763. closecallback: function () { }
  7764. }, {
  7765. "style": {
  7766. "height": "36px"
  7767. }
  7768. }).form; //创建窗体
  7769. _taskbar = {
  7770. "id": str + _formdiv.id,
  7771. "style": {
  7772. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7773. },
  7774. "name": "电子白板",
  7775. "forms": _formdiv,
  7776. "click": function () {
  7777. U.MD.D.I.openApplication(str, obj, info);
  7778. }
  7779. }
  7780. break;
  7781. case "mind":
  7782. aTool = 3;
  7783. _iframe = $$("iframe", {
  7784. "frameborder": "no",
  7785. "border": "0",
  7786. "scrolling ": "no",
  7787. "style": {
  7788. "cssText": "border:0;width:100%;height:100%"
  7789. },
  7790. "src": "/kityminder-editor/dist/index.html"
  7791. })
  7792. _box.appendChild(_iframe);
  7793. _box.appendChild(_jie);
  7794. _formdiv = new U.UF.UI.form(
  7795. "思维导图",
  7796. _box, { //"/jsmind/example/demo.html"
  7797. "id": "mind" + cid + stage + task + tool,
  7798. "style": {
  7799. "width": "90%",
  7800. "height": "90%",
  7801. "overflow": 'hidden'
  7802. },
  7803. "onresize": function () { }
  7804. }, {
  7805. closecallback: function () { }
  7806. }, {
  7807. "style": {
  7808. "height": "36px"
  7809. }
  7810. }).form; //创建窗体
  7811. _taskbar = {
  7812. "id": str + _formdiv.id,
  7813. "style": {
  7814. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7815. },
  7816. "name": "思维导图",
  7817. "forms": _formdiv,
  7818. "click": function () {
  7819. U.MD.D.I.openApplication(str, obj, info);
  7820. }
  7821. }
  7822. break;
  7823. case "MindMap":
  7824. aTool = 3;
  7825. _iframe = $$("iframe", {
  7826. "frameborder": "no",
  7827. "border": "0",
  7828. "scrolling ": "no",
  7829. "style": {
  7830. "cssText": "border:0;width:100%;height:100%"
  7831. },
  7832. "src": "//cloud.cocorobo.cn/mind/"
  7833. })
  7834. _box.appendChild(_iframe);
  7835. _box.appendChild(_jie);
  7836. _formdiv = new U.UF.UI.form(
  7837. "思维导图",
  7838. _box, { //"/jsmind/example/demo.html"
  7839. "id": "mind" + cid + stage + task + tool,
  7840. "style": {
  7841. "width": "90%",
  7842. "height": "90%",
  7843. "overflow": 'hidden'
  7844. },
  7845. "onresize": function () { }
  7846. }, {
  7847. closecallback: function () { }
  7848. }, {
  7849. "style": {
  7850. "height": "36px"
  7851. }
  7852. }).form; //创建窗体
  7853. _taskbar = {
  7854. "id": str + _formdiv.id,
  7855. "style": {
  7856. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7857. },
  7858. "name": "思维导图",
  7859. "forms": _formdiv,
  7860. "click": function () {
  7861. U.MD.D.I.openApplication(str, obj, info);
  7862. }
  7863. }
  7864. break;
  7865. case "doc":
  7866. aTool = 6;
  7867. _iframe = $$("iframe", {
  7868. "frameborder": "no",
  7869. "border": "0",
  7870. "scrolling ": "no",
  7871. "style": {
  7872. "cssText": "border:0;width:100%;height:100%"
  7873. },
  7874. "src": "/Office/Word/WordEditArea.htm"
  7875. })
  7876. _box.appendChild(_iframe);
  7877. _box.appendChild(_jie);
  7878. _formdiv = new U.UF.UI.form(
  7879. "协同文档",
  7880. _box, {
  7881. "id": "doc" + cid + stage + task + tool,
  7882. "style": {
  7883. "width": "90%",
  7884. "height": "90%",
  7885. "overflow": 'hidden'
  7886. },
  7887. "onresize": function () { }
  7888. }, {
  7889. closecallback: function () { }
  7890. }, {
  7891. "style": {
  7892. "height": "36px"
  7893. }
  7894. }).form; //创建窗体
  7895. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7896. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7897. })
  7898. _taskbar = {
  7899. "id": str + _formdiv.id,
  7900. "style": {
  7901. "backgroundImage": "url(/img/icon/doc.png)"
  7902. },
  7903. "name": "协同文档",
  7904. "forms": _formdiv,
  7905. "click": function () {
  7906. U.MD.D.I.openApplication(str, obj, info);
  7907. }
  7908. }
  7909. break;
  7910. case "mindNetwork": //好友打开
  7911. aTool = 7;
  7912. _iframe = $$("iframe", {
  7913. "webkitallowfullscreen": "",
  7914. "mozallowfullscreen": "",
  7915. "allowfullscreen": "",
  7916. "frameborder": "no",
  7917. "border": "0",
  7918. "scrolling ": "no",
  7919. "style": {
  7920. "cssText": "border:0; width:100%; height:100%;"
  7921. },
  7922. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7923. })
  7924. _box.appendChild(_iframe);
  7925. _box.appendChild(_jie);
  7926. _formdiv = new U.UF.UI.form(
  7927. "思维网格",
  7928. _box, {
  7929. "id": "mindNetwork" + cid + stage + task + tool,
  7930. "style": {
  7931. "width": "90%",
  7932. "height": "90%",
  7933. "overflow": 'hidden'
  7934. },
  7935. "onresize": function () { }
  7936. }, {
  7937. closecallback: function () { }
  7938. }, {
  7939. "style": {
  7940. "height": "36px"
  7941. }
  7942. }).form; //创建窗体
  7943. _taskbar = {
  7944. "id": str + _formdiv.id,
  7945. "style": {
  7946. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7947. },
  7948. "name": "思维网格",
  7949. "forms": _formdiv,
  7950. "click": function () {
  7951. U.MD.D.I.openApplication(str, obj, info);
  7952. }
  7953. }
  7954. break;
  7955. case "courseDesign":
  7956. _iframe = $$("iframe", {
  7957. "webkitallowfullscreen": "",
  7958. "mozallowfullscreen": "",
  7959. "allowfullscreen": "",
  7960. "frameborder": "no",
  7961. "border": "0",
  7962. "scrolling ": "no",
  7963. "style": {
  7964. "cssText": "border:0; width:100%; height:100%;"
  7965. },
  7966. "src": "/course-design-vue"
  7967. })
  7968. _box.appendChild(_iframe);
  7969. _box.appendChild(_jie);
  7970. _formdiv = new U.UF.UI.form(
  7971. "项目设计",
  7972. _box, {
  7973. "id": "courseDesign" + cid + stage + task + tool,
  7974. "style": {
  7975. "width": "90%",
  7976. "height": "90%",
  7977. "overflow": 'hidden'
  7978. },
  7979. "onresize": function () { }
  7980. }, {
  7981. closecallback: function () { }
  7982. }, {
  7983. "style": {
  7984. "height": "36px"
  7985. }
  7986. }).form; //创建窗体
  7987. _taskbar = {
  7988. "id": str + _formdiv.id,
  7989. "style": {
  7990. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7991. },
  7992. "name": "项目设计",
  7993. "forms": _formdiv,
  7994. "click": function () {
  7995. U.MD.D.I.openApplication(str, obj, info);
  7996. }
  7997. }
  7998. break;
  7999. }
  8000. const script1 = document.createElement("script");
  8001. script1.type = "text/javascript";
  8002. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8003. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8004. const script2 = document.createElement("script");
  8005. script2.type = "text/javascript";
  8006. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8007. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8008. const script3 = document.createElement("script");
  8009. script3.type = "text/javascript";
  8010. script3.charset = "UTF-8";
  8011. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8012. const script4 = document.createElement("script");
  8013. script4.type = "text/javascript";
  8014. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8015. script4.src = window.origin + "/js/Common/jietu2E.js";
  8016. if (_iframe) {
  8017. if (str == 'doc') {
  8018. _iframe = _formdiv.querySelector('iframe')
  8019. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8020. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8021. _iframe.contentWindow.document.body.appendChild(script1);
  8022. _iframe.contentWindow.document.body.appendChild(script2);
  8023. // _iframe.contentWindow.document.body.appendChild(script3);
  8024. _iframe.contentWindow.document.body.appendChild(script4);
  8025. })
  8026. if (onloadListener) {
  8027. _iframe.contentDocument.location.reload()
  8028. } else {
  8029. _iframe.contentDocument.location.reload()
  8030. }
  8031. } else if (str == 'courseDesign') {
  8032. U.UF.DL.iframeLoad(_iframe, function () {
  8033. // _iframe.contentWindow.U.MD.O.W.load();
  8034. // _iframe.contentWindow.document.body.appendChild(script1);
  8035. _iframe.contentWindow.document.body.appendChild(script2);
  8036. _iframe.contentWindow.document.body.appendChild(script4);
  8037. })
  8038. } else if (str == 'mind') {
  8039. _iframe = _formdiv.querySelector('iframe')
  8040. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8041. //
  8042. _iframe.contentWindow.document.body.appendChild(script1);
  8043. _iframe.contentWindow.document.body.appendChild(script2);
  8044. _iframe.contentWindow.document.body.appendChild(script4);
  8045. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8046. })
  8047. if (onloadListener) {
  8048. _iframe.contentDocument.location.reload()
  8049. } else {
  8050. _iframe.contentDocument.location.reload()
  8051. }
  8052. } else if (str == 'whiteboard') {
  8053. _iframe = _formdiv.querySelector('iframe')
  8054. let onloadListener = _iframe.onload = () => {
  8055. _iframe.contentWindow.document.body.appendChild(script1);
  8056. _iframe.contentWindow.document.body.appendChild(script2);
  8057. _iframe.contentWindow.document.body.appendChild(script4);
  8058. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8059. };
  8060. // if (onloadListener) {
  8061. // try {
  8062. // _iframe.src += "?cocorobo="+new Date().getTime()
  8063. // _iframe.contentWindow.document.location.reload()
  8064. // } catch (error) {
  8065. // }
  8066. // } else {
  8067. // _iframe.contentDocument.location.reload()
  8068. // }
  8069. } else {
  8070. _iframe.onload = () => {
  8071. _iframe.contentWindow.document.body.appendChild(script1);
  8072. _iframe.contentWindow.document.body.appendChild(script2);
  8073. // _iframe.contentWindow.document.body.appendChild(script3);
  8074. _iframe.contentWindow.document.body.appendChild(script4);
  8075. };
  8076. }
  8077. _jie.onclick = async () => {
  8078. let text = ''
  8079. if (aTool == 1) {
  8080. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8081. } else if (aTool == 6) {
  8082. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8083. } else if (aTool == 3) {
  8084. text = await U.MD.D.I.getEditorContent(_iframe);
  8085. }
  8086. _loading.style.display = 'flex'
  8087. console.log(_loading);
  8088. var _ajs = _iframe.contentWindow.document.createElement("script");
  8089. _ajs.type = "text/javascript";
  8090. _ajs.innerHTML =
  8091. // 'console.log(' + _loading + ');\n' +
  8092. 'var _js = document.createElement("script");\n' +
  8093. '_js.type="text/javascript";\n' +
  8094. '_js.charset="UTF-8";\n' +
  8095. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8096. "_js.onload = function(){\n" +
  8097. ' var a = document.getElementsByTagName("img")\n' +
  8098. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8099. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8100. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8101. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8102. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8103. "beforeUpload_shishi(file," +
  8104. "'" +
  8105. _userid +
  8106. "'" +
  8107. ", " +
  8108. "'" +
  8109. _cid +
  8110. "'" +
  8111. ", " +
  8112. "'" +
  8113. _stage +
  8114. "'" +
  8115. ", " +
  8116. "'" +
  8117. _task +
  8118. "'" +
  8119. ", " +
  8120. "'" +
  8121. _tool +
  8122. "'" +
  8123. ", " +
  8124. "'" +
  8125. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8126. "'" +
  8127. ", " +
  8128. "'" +
  8129. aTool +
  8130. "'" +
  8131. ", " +
  8132. "`" +
  8133. text +
  8134. "`" +
  8135. ")\n" +
  8136. " });\n" +
  8137. "}\n" +
  8138. "document.head.appendChild(_js);\n";
  8139. _iframe.contentWindow.document.head.appendChild(_ajs);
  8140. }
  8141. }
  8142. //U.MD.D.I.openClick(str);
  8143. //如果有任务栏信息
  8144. // if (_taskbar) {
  8145. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8146. // }
  8147. }
  8148. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8149. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8150. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8151. _userid = student.userid, //登录用户id
  8152. _username = student.student //用户名字
  8153. let _iframe;
  8154. let _cid = cid,
  8155. _stage = stage,
  8156. _task = task,
  8157. _tool = tool;
  8158. var _jie = $$("div", {
  8159. "style": {
  8160. "position": "absolute",
  8161. "bottom": "50px",
  8162. "right": "50px",
  8163. "zIndex": "9999",
  8164. "backgroundColor": "#2268bc",
  8165. "color": "#fff",
  8166. "padding": "12px 20px",
  8167. "cursor": "pointer",
  8168. "borderRadius": "4px",
  8169. },
  8170. "innerHTML": "提交作业"
  8171. })
  8172. let aTool = ''
  8173. let _loading = document.createElement('div')
  8174. _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;"
  8175. // _loading.id = "";
  8176. let _lchild = document.createElement('div')
  8177. let _limg = document.createElement('img')
  8178. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8179. _limg.style = "width: 26px;margin-right: 10px;"
  8180. _lchild.appendChild(_limg)
  8181. let _lspan = document.createElement('span')
  8182. _lspan.innerHTML = "上传中..."
  8183. _lchild.appendChild(_lspan)
  8184. _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%);"
  8185. _loading.appendChild(_lchild)
  8186. var _box = $$('div', {
  8187. "style": {
  8188. "position": "relative",
  8189. "width": "100%",
  8190. "height": "100%",
  8191. },
  8192. })
  8193. _box.appendChild(_loading)
  8194. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8195. switch (str) {
  8196. case "whiteboard":
  8197. aTool = 1;
  8198. _iframe = $$("iframe", {
  8199. "frameborder": "no",
  8200. "border": "0",
  8201. "scrolling ": "no",
  8202. "style": {
  8203. "cssText": "border:0;width:100%;height:100%"
  8204. },
  8205. "src": "https://beta.iwb.cocorobo.cn/"
  8206. })
  8207. _box.appendChild(_iframe);
  8208. _box.appendChild(_jie);
  8209. _formdiv = new U.UF.UI.form(
  8210. "电子白板-" + _username,
  8211. _box, {
  8212. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8213. "style": {
  8214. "width": "90%",
  8215. "height": "90%",
  8216. "overflow": 'hidden'
  8217. },
  8218. "onresize": function () { }
  8219. }, {
  8220. closecallback: function () { }
  8221. }, {
  8222. "style": {
  8223. "height": "36px"
  8224. }
  8225. }).form; //创建窗体
  8226. _taskbar = {
  8227. "id": str + _formdiv.id,
  8228. "style": {
  8229. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8230. },
  8231. "name": "电子白板",
  8232. "forms": _formdiv,
  8233. "click": function () {
  8234. U.MD.D.I.openApplication(str, obj, info);
  8235. }
  8236. }
  8237. break;
  8238. case "mind":
  8239. aTool = 3;
  8240. _iframe = $$("iframe", {
  8241. "frameborder": "no",
  8242. "border": "0",
  8243. "scrolling ": "no",
  8244. "style": {
  8245. "cssText": "border:0;width:100%;height:100%"
  8246. },
  8247. "src": "/kityminder-editor/dist/index.html"
  8248. })
  8249. _box.appendChild(_iframe);
  8250. _box.appendChild(_jie);
  8251. _formdiv = new U.UF.UI.form(
  8252. "思维导图-" + _username,
  8253. _box, { //"/jsmind/example/demo.html"
  8254. "id": "mind" + cid + stage + task + tool + _userid,
  8255. "style": {
  8256. "width": "90%",
  8257. "height": "90%",
  8258. "overflow": 'hidden'
  8259. },
  8260. "onresize": function () { }
  8261. }, {
  8262. closecallback: function () { }
  8263. }, {
  8264. "style": {
  8265. "height": "36px"
  8266. }
  8267. }).form; //创建窗体
  8268. _taskbar = {
  8269. "id": str + _formdiv.id,
  8270. "style": {
  8271. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8272. },
  8273. "name": "思维导图",
  8274. "forms": _formdiv,
  8275. "click": function () {
  8276. U.MD.D.I.openApplication(str, obj, info);
  8277. }
  8278. }
  8279. break;
  8280. case "MindMap":
  8281. aTool = 3;
  8282. _iframe = $$("iframe", {
  8283. "frameborder": "no",
  8284. "border": "0",
  8285. "scrolling ": "no",
  8286. "style": {
  8287. "cssText": "border:0;width:100%;height:100%"
  8288. },
  8289. "src": "//cloud.cocorobo.cn/mind/"
  8290. })
  8291. _box.appendChild(_iframe);
  8292. _box.appendChild(_jie);
  8293. _formdiv = new U.UF.UI.form(
  8294. "思维导图-" + _username,
  8295. _box, { //"/jsmind/example/demo.html"
  8296. "id": "mind" + cid + stage + task + tool + _userid,
  8297. "style": {
  8298. "width": "90%",
  8299. "height": "90%",
  8300. "overflow": 'hidden'
  8301. },
  8302. "onresize": function () { }
  8303. }, {
  8304. closecallback: function () { }
  8305. }, {
  8306. "style": {
  8307. "height": "36px"
  8308. }
  8309. }).form; //创建窗体
  8310. _taskbar = {
  8311. "id": str + _formdiv.id,
  8312. "style": {
  8313. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8314. },
  8315. "name": "思维导图",
  8316. "forms": _formdiv,
  8317. "click": function () {
  8318. U.MD.D.I.openApplication(str, obj, info);
  8319. }
  8320. }
  8321. break;
  8322. case "doc":
  8323. aTool = 6;
  8324. _iframe = $$("iframe", {
  8325. "frameborder": "no",
  8326. "border": "0",
  8327. "scrolling ": "no",
  8328. "style": {
  8329. "cssText": "border:0;width:100%;height:100%"
  8330. },
  8331. "src": "/Office/Word/WordEditArea.htm"
  8332. })
  8333. _box.appendChild(_iframe);
  8334. _box.appendChild(_jie);
  8335. _formdiv = new U.UF.UI.form(
  8336. "协同文档-" + _username,
  8337. _box, {
  8338. "id": "doc" + cid + stage + task + tool + _userid,
  8339. "style": {
  8340. "width": "90%",
  8341. "height": "90%",
  8342. "overflow": 'hidden'
  8343. },
  8344. "onresize": function () { }
  8345. }, {
  8346. closecallback: function () { }
  8347. }, {
  8348. "style": {
  8349. "height": "36px"
  8350. }
  8351. }).form; //创建窗体
  8352. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8353. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8354. })
  8355. _taskbar = {
  8356. "id": str + _formdiv.id,
  8357. "style": {
  8358. "backgroundImage": "url(/img/icon/doc.png)"
  8359. },
  8360. "name": "协同文档",
  8361. "forms": _formdiv,
  8362. "click": function () {
  8363. U.MD.D.I.openApplication(str, obj, info);
  8364. }
  8365. }
  8366. break;
  8367. case "mindNetwork": //好友打开
  8368. aTool = 7;
  8369. _iframe = $$("iframe", {
  8370. "webkitallowfullscreen": "",
  8371. "mozallowfullscreen": "",
  8372. "allowfullscreen": "",
  8373. "frameborder": "no",
  8374. "border": "0",
  8375. "scrolling ": "no",
  8376. "style": {
  8377. "cssText": "border:0; width:100%; height:100%;"
  8378. },
  8379. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8380. })
  8381. _box.appendChild(_iframe);
  8382. _box.appendChild(_jie);
  8383. _formdiv = new U.UF.UI.form(
  8384. "思维网格-" + _username,
  8385. _box, {
  8386. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8387. "style": {
  8388. "width": "90%",
  8389. "height": "90%",
  8390. "overflow": 'hidden'
  8391. },
  8392. "onresize": function () { }
  8393. }, {
  8394. closecallback: function () { }
  8395. }, {
  8396. "style": {
  8397. "height": "36px"
  8398. }
  8399. }).form; //创建窗体
  8400. _taskbar = {
  8401. "id": str + _formdiv.id,
  8402. "style": {
  8403. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8404. },
  8405. "name": "思维网格",
  8406. "forms": _formdiv,
  8407. "click": function () {
  8408. U.MD.D.I.openApplication(str, obj, info);
  8409. }
  8410. }
  8411. break;
  8412. case "courseDesign":
  8413. _iframe = $$("iframe", {
  8414. "webkitallowfullscreen": "",
  8415. "mozallowfullscreen": "",
  8416. "allowfullscreen": "",
  8417. "frameborder": "no",
  8418. "border": "0",
  8419. "scrolling ": "no",
  8420. "style": {
  8421. "cssText": "border:0; width:100%; height:100%;"
  8422. },
  8423. "src": "/course-design-vue"
  8424. })
  8425. _box.appendChild(_iframe);
  8426. _box.appendChild(_jie);
  8427. _formdiv = new U.UF.UI.form(
  8428. "项目设计-" + _username,
  8429. _box, {
  8430. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8431. "style": {
  8432. "width": "90%",
  8433. "height": "90%",
  8434. "overflow": 'hidden'
  8435. },
  8436. "onresize": function () { }
  8437. }, {
  8438. closecallback: function () { }
  8439. }, {
  8440. "style": {
  8441. "height": "36px"
  8442. }
  8443. }).form; //创建窗体
  8444. _taskbar = {
  8445. "id": str + _formdiv.id,
  8446. "style": {
  8447. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8448. },
  8449. "name": "项目设计",
  8450. "forms": _formdiv,
  8451. "click": function () {
  8452. U.MD.D.I.openApplication(str, obj, info);
  8453. }
  8454. }
  8455. break;
  8456. }
  8457. const script1 = document.createElement("script");
  8458. script1.type = "text/javascript";
  8459. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8460. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8461. const script2 = document.createElement("script");
  8462. script2.type = "text/javascript";
  8463. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8464. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8465. const script3 = document.createElement("script");
  8466. script3.type = "text/javascript";
  8467. script3.charset = "UTF-8";
  8468. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8469. const script4 = document.createElement("script");
  8470. script4.type = "text/javascript";
  8471. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8472. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8473. if (_iframe) {
  8474. if (str == 'doc') {
  8475. _iframe = _formdiv.querySelector('iframe')
  8476. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8477. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8478. _iframe.contentWindow.document.body.appendChild(script1);
  8479. _iframe.contentWindow.document.body.appendChild(script2);
  8480. // _iframe.contentWindow.document.body.appendChild(script3);
  8481. _iframe.contentWindow.document.body.appendChild(script4);
  8482. })
  8483. if (onloadListener) {
  8484. _iframe.contentDocument.location.reload()
  8485. } else {
  8486. _iframe.contentDocument.location.reload()
  8487. }
  8488. } else if (str == 'courseDesign') {
  8489. U.UF.DL.iframeLoad(_iframe, function () {
  8490. // _iframe.contentWindow.U.MD.O.W.load();
  8491. // _iframe.contentWindow.document.body.appendChild(script1);
  8492. _iframe.contentWindow.document.body.appendChild(script2);
  8493. _iframe.contentWindow.document.body.appendChild(script4);
  8494. })
  8495. } else if (str == 'mind') {
  8496. _iframe = _formdiv.querySelector('iframe')
  8497. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8498. //
  8499. _iframe.contentWindow.document.body.appendChild(script1);
  8500. _iframe.contentWindow.document.body.appendChild(script2);
  8501. _iframe.contentWindow.document.body.appendChild(script4);
  8502. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8503. })
  8504. if (onloadListener) {
  8505. _iframe.contentDocument.location.reload()
  8506. } else {
  8507. _iframe.contentDocument.location.reload()
  8508. }
  8509. } else if (str == 'whiteboard') {
  8510. _iframe = _formdiv.querySelector('iframe')
  8511. let onloadListener = _iframe.onload = () => {
  8512. _iframe.contentWindow.document.body.appendChild(script1);
  8513. _iframe.contentWindow.document.body.appendChild(script2);
  8514. _iframe.contentWindow.document.body.appendChild(script4);
  8515. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8516. };
  8517. // if (onloadListener) {
  8518. // try {
  8519. // _iframe.src += "?cocorobo="+new Date().getTime()
  8520. // _iframe.contentWindow.document.location.reload()
  8521. // } catch (error) {
  8522. // }
  8523. // } else {
  8524. // _iframe.contentDocument.location.reload()
  8525. // }
  8526. } else {
  8527. _iframe.onload = () => {
  8528. _iframe.contentWindow.document.body.appendChild(script1);
  8529. _iframe.contentWindow.document.body.appendChild(script2);
  8530. // _iframe.contentWindow.document.body.appendChild(script3);
  8531. _iframe.contentWindow.document.body.appendChild(script4);
  8532. };
  8533. }
  8534. _jie.onclick = async () => {
  8535. let text = ''
  8536. if (aTool == 1) {
  8537. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8538. } else if (aTool == 6) {
  8539. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8540. } else if (aTool == 3) {
  8541. text = await U.MD.D.I.getEditorContent(_iframe);
  8542. }
  8543. _loading.style.display = 'flex'
  8544. console.log(_loading);
  8545. var _ajs = _iframe.contentWindow.document.createElement("script");
  8546. _ajs.type = "text/javascript";
  8547. _ajs.innerHTML =
  8548. // 'console.log(' + _loading + ');\n' +
  8549. 'var _js = document.createElement("script");\n' +
  8550. '_js.type="text/javascript";\n' +
  8551. '_js.charset="UTF-8";\n' +
  8552. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8553. "_js.onload = function(){\n" +
  8554. ' var a = document.getElementsByTagName("img")\n' +
  8555. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8556. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8557. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8558. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8559. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8560. "beforeUpload_shishi(file," +
  8561. "'" +
  8562. _userid +
  8563. "'" +
  8564. ", " +
  8565. "'" +
  8566. _cid +
  8567. "'" +
  8568. ", " +
  8569. "'" +
  8570. _stage +
  8571. "'" +
  8572. ", " +
  8573. "'" +
  8574. _task +
  8575. "'" +
  8576. ", " +
  8577. "'" +
  8578. _tool +
  8579. "'" +
  8580. ", " +
  8581. "'" +
  8582. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8583. "'" +
  8584. ", " +
  8585. "'" +
  8586. aTool +
  8587. "'" +
  8588. ", " +
  8589. "`" +
  8590. text +
  8591. "`" +
  8592. ")\n" +
  8593. " });\n" +
  8594. "}\n" +
  8595. "document.head.appendChild(_js);\n";
  8596. _iframe.contentWindow.document.head.appendChild(_ajs);
  8597. }
  8598. }
  8599. }
  8600. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8601. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8602. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8603. _userid = student.userid, //登录用户id
  8604. _username = student.student //用户名字
  8605. let _iframe;
  8606. let _cid = cid,
  8607. _stage = stage,
  8608. _task = task,
  8609. _tool = tool;
  8610. var _jie = $$("div", {
  8611. "style": {
  8612. "position": "absolute",
  8613. "bottom": "50px",
  8614. "right": "50px",
  8615. "zIndex": "9999",
  8616. "backgroundColor": "#2268bc",
  8617. "color": "#fff",
  8618. "padding": "12px 20px",
  8619. "cursor": "pointer",
  8620. "borderRadius": "4px",
  8621. },
  8622. "innerHTML": "提交作业"
  8623. })
  8624. let aTool = ''
  8625. let _loading = document.createElement('div')
  8626. _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;"
  8627. // _loading.id = "";
  8628. let _lchild = document.createElement('div')
  8629. let _limg = document.createElement('img')
  8630. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8631. _limg.style = "width: 26px;margin-right: 10px;"
  8632. _lchild.appendChild(_limg)
  8633. let _lspan = document.createElement('span')
  8634. _lspan.innerHTML = "上传中..."
  8635. _lchild.appendChild(_lspan)
  8636. _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%);"
  8637. _loading.appendChild(_lchild)
  8638. var _box = $$('div', {
  8639. "style": {
  8640. "position": "relative",
  8641. "width": "100%",
  8642. "height": "100%",
  8643. },
  8644. })
  8645. _box.appendChild(_loading)
  8646. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8647. switch (str) {
  8648. case "whiteboard":
  8649. aTool = 1;
  8650. _iframe = $$("iframe", {
  8651. "frameborder": "no",
  8652. "border": "0",
  8653. "scrolling ": "no",
  8654. "style": {
  8655. "cssText": "border:0;width:100%;height:100%"
  8656. },
  8657. "src": "https://beta.iwb.cocorobo.cn/"
  8658. })
  8659. _box.appendChild(_iframe);
  8660. _box.appendChild(_jie);
  8661. _formdiv = new U.UF.UI.form(
  8662. "电子白板-" + _username,
  8663. _box, {
  8664. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8665. "style": {
  8666. "width": "90%",
  8667. "height": "90%",
  8668. "overflow": 'hidden'
  8669. },
  8670. "onresize": function () { }
  8671. }, {
  8672. closecallback: function () { }
  8673. }, {
  8674. "style": {
  8675. "height": "36px"
  8676. }
  8677. }).form; //创建窗体
  8678. _taskbar = {
  8679. "id": str + _formdiv.id,
  8680. "style": {
  8681. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8682. },
  8683. "name": "电子白板",
  8684. "forms": _formdiv,
  8685. "click": function () {
  8686. U.MD.D.I.openApplication(str, obj, info);
  8687. }
  8688. }
  8689. break;
  8690. case "mind":
  8691. aTool = 3;
  8692. _iframe = $$("iframe", {
  8693. "frameborder": "no",
  8694. "border": "0",
  8695. "scrolling ": "no",
  8696. "style": {
  8697. "cssText": "border:0;width:100%;height:100%"
  8698. },
  8699. "src": "/kityminder-editor/dist/index.html"
  8700. })
  8701. _box.appendChild(_iframe);
  8702. _box.appendChild(_jie);
  8703. _formdiv = new U.UF.UI.form(
  8704. "思维导图-" + _username,
  8705. _box, { //"/jsmind/example/demo.html"
  8706. "id": "mind" + cid + stage + task + tool + _userid,
  8707. "style": {
  8708. "width": "90%",
  8709. "height": "90%",
  8710. "overflow": 'hidden'
  8711. },
  8712. "onresize": function () { }
  8713. }, {
  8714. closecallback: function () { }
  8715. }, {
  8716. "style": {
  8717. "height": "36px"
  8718. }
  8719. }).form; //创建窗体
  8720. _taskbar = {
  8721. "id": str + _formdiv.id,
  8722. "style": {
  8723. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8724. },
  8725. "name": "思维导图",
  8726. "forms": _formdiv,
  8727. "click": function () {
  8728. U.MD.D.I.openApplication(str, obj, info);
  8729. }
  8730. }
  8731. break;
  8732. case "MindMap":
  8733. aTool = 3;
  8734. _iframe = $$("iframe", {
  8735. "frameborder": "no",
  8736. "border": "0",
  8737. "scrolling ": "no",
  8738. "style": {
  8739. "cssText": "border:0;width:100%;height:100%"
  8740. },
  8741. "src": "//cloud.cocorobo.cn/mind/"
  8742. })
  8743. _box.appendChild(_iframe);
  8744. _box.appendChild(_jie);
  8745. _formdiv = new U.UF.UI.form(
  8746. "思维导图-" + _username,
  8747. _box, { //"/jsmind/example/demo.html"
  8748. "id": "mind" + cid + stage + task + tool + _userid,
  8749. "style": {
  8750. "width": "90%",
  8751. "height": "90%",
  8752. "overflow": 'hidden'
  8753. },
  8754. "onresize": function () { }
  8755. }, {
  8756. closecallback: function () { }
  8757. }, {
  8758. "style": {
  8759. "height": "36px"
  8760. }
  8761. }).form; //创建窗体
  8762. _taskbar = {
  8763. "id": str + _formdiv.id,
  8764. "style": {
  8765. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8766. },
  8767. "name": "思维导图",
  8768. "forms": _formdiv,
  8769. "click": function () {
  8770. U.MD.D.I.openApplication(str, obj, info);
  8771. }
  8772. }
  8773. break;
  8774. case "doc":
  8775. aTool = 6;
  8776. _iframe = $$("iframe", {
  8777. "frameborder": "no",
  8778. "border": "0",
  8779. "scrolling ": "no",
  8780. "style": {
  8781. "cssText": "border:0;width:100%;height:100%"
  8782. },
  8783. "src": "/Office/Word/WordEditArea.htm"
  8784. })
  8785. _box.appendChild(_iframe);
  8786. _box.appendChild(_jie);
  8787. _formdiv = new U.UF.UI.form(
  8788. "协同文档-" + _username,
  8789. _box, {
  8790. "id": "doc" + cid + stage + task + tool + _userid,
  8791. "style": {
  8792. "width": "90%",
  8793. "height": "90%",
  8794. "overflow": 'hidden'
  8795. },
  8796. "onresize": function () { }
  8797. }, {
  8798. closecallback: function () { }
  8799. }, {
  8800. "style": {
  8801. "height": "36px"
  8802. }
  8803. }).form; //创建窗体
  8804. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8805. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8806. })
  8807. _taskbar = {
  8808. "id": str + _formdiv.id,
  8809. "style": {
  8810. "backgroundImage": "url(/img/icon/doc.png)"
  8811. },
  8812. "name": "协同文档",
  8813. "forms": _formdiv,
  8814. "click": function () {
  8815. U.MD.D.I.openApplication(str, obj, info);
  8816. }
  8817. }
  8818. break;
  8819. case "mindNetwork": //好友打开
  8820. aTool = 7;
  8821. _iframe = $$("iframe", {
  8822. "webkitallowfullscreen": "",
  8823. "mozallowfullscreen": "",
  8824. "allowfullscreen": "",
  8825. "frameborder": "no",
  8826. "border": "0",
  8827. "scrolling ": "no",
  8828. "style": {
  8829. "cssText": "border:0; width:100%; height:100%;"
  8830. },
  8831. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8832. })
  8833. _box.appendChild(_iframe);
  8834. _box.appendChild(_jie);
  8835. _formdiv = new U.UF.UI.form(
  8836. "思维网格-" + _username,
  8837. _box, {
  8838. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8839. "style": {
  8840. "width": "90%",
  8841. "height": "90%",
  8842. "overflow": 'hidden'
  8843. },
  8844. "onresize": function () { }
  8845. }, {
  8846. closecallback: function () { }
  8847. }, {
  8848. "style": {
  8849. "height": "36px"
  8850. }
  8851. }).form; //创建窗体
  8852. _taskbar = {
  8853. "id": str + _formdiv.id,
  8854. "style": {
  8855. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8856. },
  8857. "name": "思维网格",
  8858. "forms": _formdiv,
  8859. "click": function () {
  8860. U.MD.D.I.openApplication(str, obj, info);
  8861. }
  8862. }
  8863. break;
  8864. case "courseDesign":
  8865. _iframe = $$("iframe", {
  8866. "webkitallowfullscreen": "",
  8867. "mozallowfullscreen": "",
  8868. "allowfullscreen": "",
  8869. "frameborder": "no",
  8870. "border": "0",
  8871. "scrolling ": "no",
  8872. "style": {
  8873. "cssText": "border:0; width:100%; height:100%;"
  8874. },
  8875. "src": "/course-design-vue"
  8876. })
  8877. _box.appendChild(_iframe);
  8878. _box.appendChild(_jie);
  8879. _formdiv = new U.UF.UI.form(
  8880. "项目设计-" + _username,
  8881. _box, {
  8882. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8883. "style": {
  8884. "width": "90%",
  8885. "height": "90%",
  8886. "overflow": 'hidden'
  8887. },
  8888. "onresize": function () { }
  8889. }, {
  8890. closecallback: function () { }
  8891. }, {
  8892. "style": {
  8893. "height": "36px"
  8894. }
  8895. }).form; //创建窗体
  8896. _taskbar = {
  8897. "id": str + _formdiv.id,
  8898. "style": {
  8899. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8900. },
  8901. "name": "项目设计",
  8902. "forms": _formdiv,
  8903. "click": function () {
  8904. U.MD.D.I.openApplication(str, obj, info);
  8905. }
  8906. }
  8907. break;
  8908. }
  8909. const script1 = document.createElement("script");
  8910. script1.type = "text/javascript";
  8911. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8912. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8913. const script2 = document.createElement("script");
  8914. script2.type = "text/javascript";
  8915. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8916. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8917. const script3 = document.createElement("script");
  8918. script3.type = "text/javascript";
  8919. script3.charset = "UTF-8";
  8920. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8921. const script4 = document.createElement("script");
  8922. script4.type = "text/javascript";
  8923. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8924. script4.src = window.origin + "/js/Common/jietu2E.js";
  8925. if (_iframe) {
  8926. if (str == 'doc') {
  8927. _iframe = _formdiv.querySelector('iframe')
  8928. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8929. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8930. _iframe.contentWindow.document.body.appendChild(script1);
  8931. _iframe.contentWindow.document.body.appendChild(script2);
  8932. // _iframe.contentWindow.document.body.appendChild(script3);
  8933. _iframe.contentWindow.document.body.appendChild(script4);
  8934. })
  8935. if (onloadListener) {
  8936. _iframe.contentDocument.location.reload()
  8937. } else {
  8938. _iframe.contentDocument.location.reload()
  8939. }
  8940. } else if (str == 'courseDesign') {
  8941. U.UF.DL.iframeLoad(_iframe, function () {
  8942. // _iframe.contentWindow.U.MD.O.W.load();
  8943. // _iframe.contentWindow.document.body.appendChild(script1);
  8944. _iframe.contentWindow.document.body.appendChild(script2);
  8945. _iframe.contentWindow.document.body.appendChild(script4);
  8946. })
  8947. } else if (str == 'mind') {
  8948. _iframe = _formdiv.querySelector('iframe')
  8949. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8950. //
  8951. _iframe.contentWindow.document.body.appendChild(script1);
  8952. _iframe.contentWindow.document.body.appendChild(script2);
  8953. _iframe.contentWindow.document.body.appendChild(script4);
  8954. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8955. })
  8956. if (onloadListener) {
  8957. _iframe.contentDocument.location.reload()
  8958. } else {
  8959. _iframe.contentDocument.location.reload()
  8960. }
  8961. } else if (str == 'whiteboard') {
  8962. _iframe = _formdiv.querySelector('iframe')
  8963. let onloadListener = _iframe.onload = () => {
  8964. _iframe.contentWindow.document.body.appendChild(script1);
  8965. _iframe.contentWindow.document.body.appendChild(script2);
  8966. _iframe.contentWindow.document.body.appendChild(script4);
  8967. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8968. };
  8969. // if (onloadListener) {
  8970. // try {
  8971. // _iframe.src += "?cocorobo="+new Date().getTime()
  8972. // _iframe.contentWindow.document.location.reload()
  8973. // } catch (error) {
  8974. // }
  8975. // } else {
  8976. // _iframe.contentDocument.location.reload()
  8977. // }
  8978. } else {
  8979. _iframe.onload = () => {
  8980. _iframe.contentWindow.document.body.appendChild(script1);
  8981. _iframe.contentWindow.document.body.appendChild(script2);
  8982. // _iframe.contentWindow.document.body.appendChild(script3);
  8983. _iframe.contentWindow.document.body.appendChild(script4);
  8984. };
  8985. }
  8986. _jie.onclick = async () => {
  8987. let text = ''
  8988. if (aTool == 1) {
  8989. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8990. } else if (aTool == 6) {
  8991. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8992. } else if (aTool == 3) {
  8993. text = await U.MD.D.I.getEditorContent(_iframe);
  8994. }
  8995. _loading.style.display = 'flex'
  8996. console.log(_loading);
  8997. var _ajs = _iframe.contentWindow.document.createElement("script");
  8998. _ajs.type = "text/javascript";
  8999. _ajs.innerHTML =
  9000. // 'console.log(' + _loading + ');\n' +
  9001. 'var _js = document.createElement("script");\n' +
  9002. '_js.type="text/javascript";\n' +
  9003. '_js.charset="UTF-8";\n' +
  9004. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9005. "_js.onload = function(){\n" +
  9006. ' var a = document.getElementsByTagName("img")\n' +
  9007. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9008. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9009. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9010. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9011. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9012. "beforeUpload_shishi(file," +
  9013. "'" +
  9014. _userid +
  9015. "'" +
  9016. ", " +
  9017. "'" +
  9018. _cid +
  9019. "'" +
  9020. ", " +
  9021. "'" +
  9022. _stage +
  9023. "'" +
  9024. ", " +
  9025. "'" +
  9026. _task +
  9027. "'" +
  9028. ", " +
  9029. "'" +
  9030. _tool +
  9031. "'" +
  9032. ", " +
  9033. "'" +
  9034. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9035. "'" +
  9036. ", " +
  9037. "'" +
  9038. aTool +
  9039. "'" +
  9040. ", " +
  9041. "`" +
  9042. text +
  9043. "`" +
  9044. ")\n" +
  9045. " });\n" +
  9046. "}\n" +
  9047. "document.head.appendChild(_js);\n";
  9048. _iframe.contentWindow.document.head.appendChild(_ajs);
  9049. }
  9050. }
  9051. }
  9052. U.MD.D.I.getEditorContent = function (iframe) {
  9053. return new Promise((resolve, reject) => {
  9054. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9055. console.log(content);
  9056. resolve(content)
  9057. });
  9058. });
  9059. }
  9060. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9061. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9062. // if (res.value[0].length > 0) {
  9063. // // resolve(res.value[0][0].text);
  9064. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9065. // $(fileInput).val('');
  9066. // });
  9067. // }
  9068. // }, [], { "type": "GET", "withCredentials": true });
  9069. var xmlhttp;
  9070. var Mac, Sn, DeviceId
  9071. if (window.XMLHttpRequest) {
  9072. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9073. xmlhttp = new XMLHttpRequest();
  9074. } else {
  9075. // IE6, IE5 浏览器执行代码
  9076. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9077. }
  9078. xmlhttp.onreadystatechange = function () {
  9079. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9080. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9081. // resolve(res.value[0][0].text);
  9082. if (type == '2') {
  9083. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9084. } else if (type == '3') {
  9085. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9086. }
  9087. } else {
  9088. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9089. }
  9090. }
  9091. }
  9092. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9093. xmlhttp.send();
  9094. }
  9095. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9096. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9097. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9098. _userinfo = US.userInfo, //登录用户信息
  9099. _userid = US.userInfo.userid //登录用户id
  9100. let _iframe;
  9101. let _cid = cid,
  9102. _stage = stage,
  9103. _task = task,
  9104. _tool = tool;
  9105. var _jie = $$("div", {
  9106. "style": {
  9107. "position": "absolute",
  9108. "bottom": "50px",
  9109. "right": "50px",
  9110. "zIndex": "9999",
  9111. "backgroundColor": "#2268bc",
  9112. "color": "#fff",
  9113. "padding": "12px 20px",
  9114. "cursor": "pointer",
  9115. "borderRadius": "4px",
  9116. },
  9117. "innerHTML": "确认并提交"
  9118. })
  9119. let aTool = ''
  9120. let _loading = document.createElement('div')
  9121. _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;"
  9122. // _loading.id = "";
  9123. let _lchild = document.createElement('div')
  9124. let _limg = document.createElement('img')
  9125. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9126. _limg.style = "width: 26px;margin-right: 10px;"
  9127. _lchild.appendChild(_limg)
  9128. let _lspan = document.createElement('span')
  9129. _lspan.innerHTML = "上传中..."
  9130. _lchild.appendChild(_lspan)
  9131. _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%);"
  9132. _loading.appendChild(_lchild)
  9133. var _box = $$('div', {
  9134. "style": {
  9135. "position": "relative",
  9136. "width": "100%",
  9137. "height": "100%",
  9138. },
  9139. })
  9140. _box.appendChild(_loading)
  9141. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9142. switch (str) {
  9143. case "whiteboard":
  9144. aTool = 1;
  9145. _iframe = $$("iframe", {
  9146. "frameborder": "no",
  9147. "border": "0",
  9148. "scrolling ": "no",
  9149. "style": {
  9150. "cssText": "border:0;width:100%;height:100%"
  9151. },
  9152. "src": "https://beta.iwb.cocorobo.cn/"
  9153. })
  9154. _box.appendChild(_iframe);
  9155. _box.appendChild(_jie);
  9156. _formdiv = new U.UF.UI.form(
  9157. "电子白板",
  9158. _box, {
  9159. "id": "whiteboards" + cid + stage + task + tool,
  9160. "style": {
  9161. "width": "90%",
  9162. "height": "90%",
  9163. "overflow": 'hidden'
  9164. },
  9165. "onresize": function () { }
  9166. }, {
  9167. closecallback: function () { }
  9168. }, {
  9169. "style": {
  9170. "height": "36px"
  9171. }
  9172. }).form; //创建窗体
  9173. _taskbar = {
  9174. "id": str + _formdiv.id,
  9175. "style": {
  9176. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9177. },
  9178. "name": "电子白板",
  9179. "forms": _formdiv,
  9180. "click": function () {
  9181. U.MD.D.I.openApplication(str, obj, info);
  9182. }
  9183. }
  9184. break;
  9185. case "mind":
  9186. aTool = 3;
  9187. _iframe = $$("iframe", {
  9188. "frameborder": "no",
  9189. "border": "0",
  9190. "scrolling ": "no",
  9191. "style": {
  9192. "cssText": "border:0;width:100%;height:100%"
  9193. },
  9194. "src": "/kityminder-editor/dist/index.html"
  9195. });
  9196. _box.appendChild(_iframe);
  9197. _box.appendChild(_jie);
  9198. _formdiv = new U.UF.UI.form(
  9199. "思维导图",
  9200. _box, { //"/jsmind/example/demo.html"
  9201. "id": "minds" + cid + stage + task + tool,
  9202. "style": {
  9203. "width": "90%",
  9204. "height": "90%",
  9205. "overflow": 'hidden'
  9206. },
  9207. "onresize": function () { }
  9208. }, {
  9209. closecallback: function () { }
  9210. }, {
  9211. "style": {
  9212. "height": "36px"
  9213. }
  9214. }).form; //创建窗体
  9215. _taskbar = {
  9216. "id": str + _formdiv.id,
  9217. "style": {
  9218. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9219. },
  9220. "name": "思维导图",
  9221. "forms": _formdiv,
  9222. "click": function () {
  9223. U.MD.D.I.openApplication(str, obj, info);
  9224. }
  9225. }
  9226. break;
  9227. case "doc":
  9228. aTool = 6;
  9229. _iframe = $$("iframe", {
  9230. "frameborder": "no",
  9231. "border": "0",
  9232. "scrolling ": "no",
  9233. "style": {
  9234. "cssText": "border:0;width:100%;height:100%"
  9235. },
  9236. "src": "/Office/Word/WordEditArea.htm"
  9237. })
  9238. _box.appendChild(_iframe);
  9239. _box.appendChild(_jie);
  9240. _formdiv = new U.UF.UI.form(
  9241. "协同文档",
  9242. _box, {
  9243. "id": "docs" + cid + stage + task + tool,
  9244. "style": {
  9245. "width": "90%",
  9246. "height": "90%",
  9247. "overflow": 'hidden'
  9248. },
  9249. "onresize": function () { }
  9250. }, {
  9251. closecallback: function () { }
  9252. }, {
  9253. "style": {
  9254. "height": "36px"
  9255. }
  9256. }).form; //创建窗体
  9257. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9258. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9259. })
  9260. _taskbar = {
  9261. "id": str + _formdiv.id,
  9262. "style": {
  9263. "backgroundImage": "url(/img/icon/doc.png)"
  9264. },
  9265. "name": "协同文档",
  9266. "forms": _formdiv,
  9267. "click": function () {
  9268. U.MD.D.I.openApplication(str, obj, info);
  9269. }
  9270. }
  9271. break;
  9272. }
  9273. const script1 = document.createElement("script");
  9274. script1.type = "text/javascript";
  9275. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9276. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9277. const script2 = document.createElement("script");
  9278. script2.type = "text/javascript";
  9279. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9280. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9281. const script3 = document.createElement("script");
  9282. script3.type = "text/javascript";
  9283. script3.charset = "UTF-8";
  9284. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9285. const script4 = document.createElement("script");
  9286. script4.type = "text/javascript";
  9287. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9288. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9289. if (_iframe) {
  9290. if (str == 'doc') {
  9291. _iframe = _formdiv.querySelector('iframe')
  9292. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9293. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9294. _iframe.contentWindow.document.body.appendChild(script1);
  9295. _iframe.contentWindow.document.body.appendChild(script2);
  9296. // _iframe.contentWindow.document.body.appendChild(script3);
  9297. _iframe.contentWindow.document.body.appendChild(script4);
  9298. })
  9299. if (onloadListener) {
  9300. _iframe.contentDocument.location.reload()
  9301. } else {
  9302. _iframe.contentDocument.location.reload()
  9303. }
  9304. } else if (str == 'mind') {
  9305. _iframe = _formdiv.querySelector('iframe')
  9306. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9307. _iframe.contentWindow.document.body.appendChild(script1);
  9308. _iframe.contentWindow.document.body.appendChild(script2);
  9309. _iframe.contentWindow.document.body.appendChild(script4);
  9310. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9311. })
  9312. if (onloadListener) {
  9313. _iframe.contentDocument.location.reload()
  9314. } else {
  9315. _iframe.contentDocument.location.reload()
  9316. }
  9317. } else {
  9318. _iframe.onload = () => {
  9319. _iframe.contentWindow.document.body.appendChild(script1);
  9320. _iframe.contentWindow.document.body.appendChild(script2);
  9321. // _iframe.contentWindow.document.body.appendChild(script3);
  9322. _iframe.contentWindow.document.body.appendChild(script4);
  9323. };
  9324. }
  9325. _jie.onclick = async () => {
  9326. let text = ''
  9327. if (aTool == 6) {
  9328. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9329. } else if (aTool == 3) {
  9330. text = await U.MD.D.I.getEditorContent(_iframe);
  9331. }
  9332. _loading.style.display = 'flex'
  9333. console.log(_loading);
  9334. var _ajs = _iframe.contentWindow.document.createElement("script");
  9335. _ajs.type = "text/javascript";
  9336. _ajs.innerHTML =
  9337. // 'console.log(' + _loading + ');\n' +
  9338. 'var _js = document.createElement("script");\n' +
  9339. '_js.type="text/javascript";\n' +
  9340. '_js.charset="UTF-8";\n' +
  9341. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9342. "_js.onload = function(){\n" +
  9343. ' var a = document.getElementsByTagName("img")\n' +
  9344. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9345. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9346. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9347. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9348. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9349. "beforeUpload_shishi(file," +
  9350. "'" +
  9351. _userid +
  9352. "'" +
  9353. ", " +
  9354. "'" +
  9355. _cid +
  9356. "'" +
  9357. ", " +
  9358. "'" +
  9359. _stage +
  9360. "'" +
  9361. ", " +
  9362. "'" +
  9363. _task +
  9364. "'" +
  9365. ", " +
  9366. "'" +
  9367. _tool +
  9368. "'" +
  9369. ", " +
  9370. "'" +
  9371. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9372. "'" +
  9373. ", " +
  9374. "'" +
  9375. aTool +
  9376. "'" +
  9377. ", " +
  9378. "`" +
  9379. text +
  9380. "`" +
  9381. ")\n" +
  9382. " });\n" +
  9383. "}\n" +
  9384. "document.head.appendChild(_js);\n";
  9385. _iframe.contentWindow.document.head.appendChild(_ajs);
  9386. }
  9387. }
  9388. //U.MD.D.I.openClick(str);
  9389. //如果有任务栏信息
  9390. // if (_taskbar) {
  9391. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9392. // }
  9393. }
  9394. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9395. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9396. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9397. _userinfo = US.userInfo, //登录用户信息
  9398. _userid = US.userInfo.userid //登录用户id
  9399. let _iframe;
  9400. let _cid = cid,
  9401. _stage = stage,
  9402. _task = task,
  9403. _tool = tool;
  9404. var _jie = $$("div", {
  9405. "style": {
  9406. "position": "absolute",
  9407. "bottom": "50px",
  9408. "right": "50px",
  9409. "zIndex": "9999",
  9410. "backgroundColor": "#2268bc",
  9411. "color": "#fff",
  9412. "padding": "12px 20px",
  9413. "cursor": "pointer",
  9414. "borderRadius": "4px",
  9415. },
  9416. "innerHTML": "确认并提交"
  9417. })
  9418. let aTool = ''
  9419. let _loading = document.createElement('div')
  9420. _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;"
  9421. // _loading.id = "";
  9422. let _lchild = document.createElement('div')
  9423. let _limg = document.createElement('img')
  9424. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9425. _limg.style = "width: 26px;margin-right: 10px;"
  9426. _lchild.appendChild(_limg)
  9427. let _lspan = document.createElement('span')
  9428. _lspan.innerHTML = "上传中..."
  9429. _lchild.appendChild(_lspan)
  9430. _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%);"
  9431. _loading.appendChild(_lchild)
  9432. var _box = $$('div', {
  9433. "style": {
  9434. "position": "relative",
  9435. "width": "100%",
  9436. "height": "100%",
  9437. },
  9438. })
  9439. _box.appendChild(_loading)
  9440. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9441. switch (str) {
  9442. case "whiteboard":
  9443. aTool = 1;
  9444. _iframe = $$("iframe", {
  9445. "frameborder": "no",
  9446. "border": "0",
  9447. "scrolling ": "no",
  9448. "style": {
  9449. "cssText": "border:0;width:100%;height:100%"
  9450. },
  9451. "src": "https://beta.iwb.cocorobo.cn/"
  9452. })
  9453. _box.appendChild(_iframe);
  9454. _box.appendChild(_jie);
  9455. _formdiv = new U.UF.UI.form(
  9456. "电子白板",
  9457. _box, {
  9458. "id": "whiteboards" + cid + stage + task + tool,
  9459. "style": {
  9460. "width": "90%",
  9461. "height": "90%",
  9462. "overflow": 'hidden'
  9463. },
  9464. "onresize": function () { }
  9465. }, {
  9466. closecallback: function () { }
  9467. }, {
  9468. "style": {
  9469. "height": "36px"
  9470. }
  9471. }).form; //创建窗体
  9472. _taskbar = {
  9473. "id": str + _formdiv.id,
  9474. "style": {
  9475. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9476. },
  9477. "name": "电子白板",
  9478. "forms": _formdiv,
  9479. "click": function () {
  9480. U.MD.D.I.openApplication(str, obj, info);
  9481. }
  9482. }
  9483. break;
  9484. case "mind":
  9485. aTool = 3;
  9486. _iframe = $$("iframe", {
  9487. "frameborder": "no",
  9488. "border": "0",
  9489. "scrolling ": "no",
  9490. "style": {
  9491. "cssText": "border:0;width:100%;height:100%"
  9492. },
  9493. "src": "/kityminder-editor/dist/index.html"
  9494. });
  9495. _box.appendChild(_iframe);
  9496. _box.appendChild(_jie);
  9497. _formdiv = new U.UF.UI.form(
  9498. "思维导图",
  9499. _box, { //"/jsmind/example/demo.html"
  9500. "id": "minds" + cid + stage + task + tool,
  9501. "style": {
  9502. "width": "90%",
  9503. "height": "90%",
  9504. "overflow": 'hidden'
  9505. },
  9506. "onresize": function () { }
  9507. }, {
  9508. closecallback: function () { }
  9509. }, {
  9510. "style": {
  9511. "height": "36px"
  9512. }
  9513. }).form; //创建窗体
  9514. _taskbar = {
  9515. "id": str + _formdiv.id,
  9516. "style": {
  9517. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9518. },
  9519. "name": "思维导图",
  9520. "forms": _formdiv,
  9521. "click": function () {
  9522. U.MD.D.I.openApplication(str, obj, info);
  9523. }
  9524. }
  9525. break;
  9526. case "doc":
  9527. aTool = 6;
  9528. _iframe = $$("iframe", {
  9529. "frameborder": "no",
  9530. "border": "0",
  9531. "scrolling ": "no",
  9532. "style": {
  9533. "cssText": "border:0;width:100%;height:100%"
  9534. },
  9535. "src": "/Office/Word/WordEditArea.htm"
  9536. })
  9537. _box.appendChild(_iframe);
  9538. _box.appendChild(_jie);
  9539. _formdiv = new U.UF.UI.form(
  9540. "协同文档",
  9541. _box, {
  9542. "id": "docs" + cid + stage + task + tool,
  9543. "style": {
  9544. "width": "90%",
  9545. "height": "90%",
  9546. "overflow": 'hidden'
  9547. },
  9548. "onresize": function () { }
  9549. }, {
  9550. closecallback: function () { }
  9551. }, {
  9552. "style": {
  9553. "height": "36px"
  9554. }
  9555. }).form; //创建窗体
  9556. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9557. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9558. })
  9559. _taskbar = {
  9560. "id": str + _formdiv.id,
  9561. "style": {
  9562. "backgroundImage": "url(/img/icon/doc.png)"
  9563. },
  9564. "name": "协同文档",
  9565. "forms": _formdiv,
  9566. "click": function () {
  9567. U.MD.D.I.openApplication(str, obj, info);
  9568. }
  9569. }
  9570. break;
  9571. }
  9572. const script1 = document.createElement("script");
  9573. script1.type = "text/javascript";
  9574. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9575. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9576. const script2 = document.createElement("script");
  9577. script2.type = "text/javascript";
  9578. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9579. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9580. const script3 = document.createElement("script");
  9581. script3.type = "text/javascript";
  9582. script3.charset = "UTF-8";
  9583. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9584. const script4 = document.createElement("script");
  9585. script4.type = "text/javascript";
  9586. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9587. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9588. if (_iframe) {
  9589. if (str == 'doc') {
  9590. _iframe = _formdiv.querySelector('iframe')
  9591. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9592. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9593. _iframe.contentWindow.document.body.appendChild(script1);
  9594. _iframe.contentWindow.document.body.appendChild(script2);
  9595. // _iframe.contentWindow.document.body.appendChild(script3);
  9596. _iframe.contentWindow.document.body.appendChild(script4);
  9597. })
  9598. if (onloadListener) {
  9599. _iframe.contentDocument.location.reload()
  9600. } else {
  9601. _iframe.contentDocument.location.reload()
  9602. }
  9603. } else if (str == 'mind') {
  9604. _iframe = _formdiv.querySelector('iframe')
  9605. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9606. _iframe.contentWindow.document.body.appendChild(script1);
  9607. _iframe.contentWindow.document.body.appendChild(script2);
  9608. _iframe.contentWindow.document.body.appendChild(script4);
  9609. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9610. })
  9611. if (onloadListener) {
  9612. _iframe.contentDocument.location.reload()
  9613. } else {
  9614. _iframe.contentDocument.location.reload()
  9615. }
  9616. } else {
  9617. _iframe.onload = () => {
  9618. _iframe.contentWindow.document.body.appendChild(script1);
  9619. _iframe.contentWindow.document.body.appendChild(script2);
  9620. // _iframe.contentWindow.document.body.appendChild(script3);
  9621. _iframe.contentWindow.document.body.appendChild(script4);
  9622. };
  9623. }
  9624. _jie.onclick = async () => {
  9625. let text = ''
  9626. if (aTool == 6) {
  9627. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9628. } else if (aTool == 3) {
  9629. text = await U.MD.D.I.getEditorContent(_iframe);
  9630. }
  9631. _loading.style.display = 'flex'
  9632. console.log(_loading);
  9633. var _ajs = _iframe.contentWindow.document.createElement("script");
  9634. _ajs.type = "text/javascript";
  9635. _ajs.innerHTML =
  9636. // 'console.log(' + _loading + ');\n' +
  9637. 'var _js = document.createElement("script");\n' +
  9638. '_js.type="text/javascript";\n' +
  9639. '_js.charset="UTF-8";\n' +
  9640. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9641. "_js.onload = function(){\n" +
  9642. ' var a = document.getElementsByTagName("img")\n' +
  9643. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9644. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9645. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9646. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9647. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9648. "beforeUpload_shishi(file," +
  9649. "'" +
  9650. _userid +
  9651. "'" +
  9652. ", " +
  9653. "'" +
  9654. _cid +
  9655. "'" +
  9656. ", " +
  9657. "'" +
  9658. _stage +
  9659. "'" +
  9660. ", " +
  9661. "'" +
  9662. _task +
  9663. "'" +
  9664. ", " +
  9665. "'" +
  9666. _tool +
  9667. "'" +
  9668. ", " +
  9669. "'" +
  9670. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9671. "'" +
  9672. ", " +
  9673. "'" +
  9674. aTool +
  9675. "'" +
  9676. ", " +
  9677. "`" +
  9678. text +
  9679. "`" +
  9680. ")\n" +
  9681. " });\n" +
  9682. "}\n" +
  9683. "document.head.appendChild(_js);\n";
  9684. _iframe.contentWindow.document.head.appendChild(_ajs);
  9685. }
  9686. }
  9687. //U.MD.D.I.openClick(str);
  9688. //如果有任务栏信息
  9689. // if (_taskbar) {
  9690. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9691. // }
  9692. }
  9693. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9694. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9695. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9696. _userinfo = US.userInfo, //登录用户信息
  9697. _userid = US.userInfo.userid //登录用户id
  9698. let _iframe;
  9699. let _cid = cid,
  9700. _stage = stage,
  9701. _task = task,
  9702. _tool = tool;
  9703. var _jie = $$("div", {
  9704. "style": {
  9705. "position": "absolute",
  9706. "bottom": "50px",
  9707. "right": "50px",
  9708. "zIndex": "9999",
  9709. "backgroundColor": "#2268bc",
  9710. "color": "#fff",
  9711. "padding": "12px 20px",
  9712. "cursor": "pointer",
  9713. "borderRadius": "4px",
  9714. },
  9715. "innerHTML": "上传模板"
  9716. })
  9717. let aTool = ''
  9718. let _loading = document.createElement('div')
  9719. _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;"
  9720. // _loading.id = "";
  9721. let _lchild = document.createElement('div')
  9722. let _limg = document.createElement('img')
  9723. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9724. _limg.style = "width: 26px;margin-right: 10px;"
  9725. _lchild.appendChild(_limg)
  9726. let _lspan = document.createElement('span')
  9727. _lspan.innerHTML = "上传中..."
  9728. _lchild.appendChild(_lspan)
  9729. _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%);"
  9730. _loading.appendChild(_lchild)
  9731. var _box = $$('div', {
  9732. "style": {
  9733. "position": "relative",
  9734. "width": "100%",
  9735. "height": "100%",
  9736. },
  9737. })
  9738. _box.appendChild(_loading)
  9739. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9740. switch (str) {
  9741. case "whiteboard":
  9742. aTool = 1;
  9743. _iframe = $$("iframe", {
  9744. "frameborder": "no",
  9745. "border": "0",
  9746. "scrolling ": "no",
  9747. "style": {
  9748. "cssText": "border:0;width:100%;height:100%"
  9749. },
  9750. "src": "https://beta.iwb.cocorobo.cn/"
  9751. })
  9752. _box.appendChild(_iframe);
  9753. _box.appendChild(_jie);
  9754. _formdiv = new U.UF.UI.form(
  9755. "电子白板",
  9756. _box, {
  9757. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9758. "style": {
  9759. "width": "90%",
  9760. "height": "90%",
  9761. "overflow": 'hidden'
  9762. },
  9763. "onresize": function () { }
  9764. }, {
  9765. closecallback: function () { }
  9766. }, {
  9767. "style": {
  9768. "height": "36px"
  9769. }
  9770. }).form; //创建窗体
  9771. _taskbar = {
  9772. "id": str + _formdiv.id,
  9773. "style": {
  9774. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9775. },
  9776. "name": "电子白板",
  9777. "forms": _formdiv,
  9778. "click": function () {
  9779. U.MD.D.I.openApplication(str, obj, info);
  9780. }
  9781. }
  9782. break;
  9783. case "mind":
  9784. aTool = 3;
  9785. _iframe = $$("iframe", {
  9786. "frameborder": "no",
  9787. "border": "0",
  9788. "scrolling ": "no",
  9789. "style": {
  9790. "cssText": "border:0;width:100%;height:100%"
  9791. },
  9792. "src": "/kityminder-editor/dist/index.html"
  9793. });
  9794. _box.appendChild(_iframe);
  9795. _box.appendChild(_jie);
  9796. _formdiv = new U.UF.UI.form(
  9797. "思维导图",
  9798. _box, { //"/jsmind/example/demo.html"
  9799. "id": "minds_Yu" + cid + stage + task + tool,
  9800. "style": {
  9801. "width": "90%",
  9802. "height": "90%",
  9803. "overflow": 'hidden'
  9804. },
  9805. "onresize": function () { }
  9806. }, {
  9807. closecallback: function () { }
  9808. }, {
  9809. "style": {
  9810. "height": "36px"
  9811. }
  9812. }).form; //创建窗体
  9813. _taskbar = {
  9814. "id": str + _formdiv.id,
  9815. "style": {
  9816. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9817. },
  9818. "name": "思维导图",
  9819. "forms": _formdiv,
  9820. "click": function () {
  9821. U.MD.D.I.openApplication(str, obj, info);
  9822. }
  9823. }
  9824. break;
  9825. case "doc":
  9826. aTool = 6;
  9827. _iframe = $$("iframe", {
  9828. "frameborder": "no",
  9829. "border": "0",
  9830. "scrolling ": "no",
  9831. "style": {
  9832. "cssText": "border:0;width:100%;height:100%"
  9833. },
  9834. "src": "/Office/Word/WordEditArea.htm"
  9835. })
  9836. _box.appendChild(_iframe);
  9837. _box.appendChild(_jie);
  9838. _formdiv = new U.UF.UI.form(
  9839. "协同文档",
  9840. _box, {
  9841. "id": "docs_Yu" + cid + stage + task + tool,
  9842. "style": {
  9843. "width": "90%",
  9844. "height": "90%",
  9845. "overflow": 'hidden'
  9846. },
  9847. "onresize": function () { }
  9848. }, {
  9849. closecallback: function () { }
  9850. }, {
  9851. "style": {
  9852. "height": "36px"
  9853. }
  9854. }).form; //创建窗体
  9855. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9856. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9857. })
  9858. _taskbar = {
  9859. "id": str + _formdiv.id,
  9860. "style": {
  9861. "backgroundImage": "url(/img/icon/doc.png)"
  9862. },
  9863. "name": "协同文档",
  9864. "forms": _formdiv,
  9865. "click": function () {
  9866. U.MD.D.I.openApplication(str, obj, info);
  9867. }
  9868. }
  9869. break;
  9870. case "CocoPi":
  9871. aTool = 57;
  9872. _iframe = $$("iframe", {
  9873. "allowpaymentrequest": "allowpaymentrequest",
  9874. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9875. "webkitallowfullscreen": "",
  9876. "mozallowfullscreen": "",
  9877. "frameborder": "no",
  9878. "border": "0",
  9879. "scrolling ": "no",
  9880. "style": {
  9881. "cssText": "border:0;width:100%;height:100%"
  9882. },
  9883. "src": "https://pi.cocorobo.cn/"
  9884. })
  9885. _box.appendChild(_iframe);
  9886. _box.appendChild(_jie);
  9887. _formdiv = new U.UF.UI.form(
  9888. "CocoPi",
  9889. _box, {
  9890. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9891. "style": {
  9892. "width": "90%",
  9893. "height": "90%",
  9894. "overflow": 'hidden'
  9895. },
  9896. "onresize": function () { }
  9897. }, {
  9898. closecallback: function () { }
  9899. }, {
  9900. "style": {
  9901. "height": "36px"
  9902. }
  9903. }).form; //创建窗体
  9904. _taskbar = {
  9905. "id": str + _formdiv.id,
  9906. "style": {
  9907. "backgroundImage": "url(/img/icon/cocopi.png)"
  9908. },
  9909. "name": "CocoPi",
  9910. "forms": _formdiv,
  9911. "click": function () {
  9912. U.MD.D.I.openApplication(str, obj, info);
  9913. }
  9914. }
  9915. break;
  9916. }
  9917. if (_iframe) {
  9918. if (str == 'doc') {
  9919. _iframe = _formdiv.querySelector('iframe')
  9920. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9921. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9922. })
  9923. if (onloadListener) {
  9924. _iframe.contentDocument.location.reload()
  9925. } else {
  9926. _iframe.contentDocument.location.reload()
  9927. }
  9928. } else if (str == 'mind') {
  9929. _iframe = _formdiv.querySelector('iframe')
  9930. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9931. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9932. })
  9933. if (onloadListener) {
  9934. _iframe.contentDocument.location.reload()
  9935. } else {
  9936. _iframe.contentDocument.location.reload()
  9937. }
  9938. } else if (str == 'whiteboard') {
  9939. _iframe = _formdiv.querySelector('iframe')
  9940. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9941. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9942. })
  9943. // if (onloadListener) {
  9944. // try {
  9945. // _iframe.src += "?cocorobo="+new Date().getTime()
  9946. // _iframe.contentWindow.document.location.reload()
  9947. // } catch (error) {
  9948. // }
  9949. // } else {
  9950. // _iframe.contentDocument.location.reload()
  9951. // }
  9952. } else if (str == 'CocoPi') {
  9953. _iframe = _formdiv.querySelector('iframe')
  9954. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9955. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9956. })
  9957. if (onloadListener) {
  9958. _iframe.contentDocument.location.reload()
  9959. } else {
  9960. _iframe.contentDocument.location.reload()
  9961. }
  9962. } else {
  9963. _iframe.onload = () => { };
  9964. }
  9965. _jie.onclick = async () => {
  9966. let text = ''
  9967. let type = '2'
  9968. if (aTool == 1) {
  9969. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9970. type = '3'
  9971. } else if (aTool == 6) {
  9972. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9973. type = '1'
  9974. } else if (aTool == 3) {
  9975. text = await U.MD.D.I.getEditorContent(_iframe);
  9976. type = '2'
  9977. } else if (aTool == 57) {
  9978. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9979. type = '4'
  9980. }
  9981. _loading.style.display = 'flex'
  9982. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9983. }
  9984. }
  9985. //U.MD.D.I.openClick(str);
  9986. //如果有任务栏信息
  9987. // if (_taskbar) {
  9988. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9989. // }
  9990. }
  9991. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9992. var xmlhttp;
  9993. var Mac, Sn, DeviceId
  9994. if (window.XMLHttpRequest) {
  9995. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9996. xmlhttp = new XMLHttpRequest();
  9997. } else {
  9998. // IE6, IE5 浏览器执行代码
  9999. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10000. }
  10001. xmlhttp.onreadystatechange = function () {
  10002. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10003. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10004. // resolve(res.value[0][0].text);
  10005. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10006. }
  10007. }
  10008. }
  10009. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10010. xmlhttp.send();
  10011. }
  10012. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10013. var xmlhttp;
  10014. var Mac, Sn, DeviceId
  10015. if (window.XMLHttpRequest) {
  10016. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10017. xmlhttp = new XMLHttpRequest();
  10018. } else {
  10019. // IE6, IE5 浏览器执行代码
  10020. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10021. }
  10022. xmlhttp.onreadystatechange = function () {
  10023. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10024. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10025. // resolve(res.value[0][0].text);
  10026. if (type == '2') {
  10027. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10028. } else if (type == '3') {
  10029. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10030. } else if (type == '4') {
  10031. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10032. }
  10033. } else {
  10034. if (type == '2') {
  10035. iframe.contentWindow.editor.minder.importData('json', '')
  10036. } else if (type == '3') {
  10037. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10038. } else if (type == '4') {
  10039. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10040. }
  10041. }
  10042. }
  10043. }
  10044. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10045. xmlhttp.send();
  10046. }
  10047. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10048. var xmlhttp;
  10049. var Mac, Sn, DeviceId
  10050. if (window.XMLHttpRequest) {
  10051. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10052. xmlhttp = new XMLHttpRequest();
  10053. } else {
  10054. // IE6, IE5 浏览器执行代码
  10055. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10056. }
  10057. xmlhttp.onreadystatechange = function () {
  10058. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10059. if (xmlhttp.response) {
  10060. // resolve(res.value[0][0].text);
  10061. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10062. // $(fileInput).val('');
  10063. // });
  10064. span.innerHTML = '上传成功'
  10065. setTimeout(() => {
  10066. loading.style.display = 'none'
  10067. }, 1000);
  10068. }
  10069. }
  10070. }
  10071. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10072. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10073. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10074. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10075. // 设置请求头,表示请求体的编码格式
  10076. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10077. // 设置请求体,使用url-encoded格式的数据
  10078. }
  10079. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10080. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10081. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10082. _userinfo = US.userInfo, //登录用户信息
  10083. _userid = US.userInfo.userid //登录用户id
  10084. let _iframe;
  10085. let _cid = cid,
  10086. _stage = stage,
  10087. _task = task,
  10088. _tool = tool;
  10089. var _jie = $$("div", {
  10090. "style": {
  10091. "position": "absolute",
  10092. "bottom": "50px",
  10093. "right": "50px",
  10094. "zIndex": "9999",
  10095. "backgroundColor": "#2268bc",
  10096. "color": "#fff",
  10097. "padding": "12px 20px",
  10098. "cursor": "pointer",
  10099. "borderRadius": "4px",
  10100. },
  10101. "innerHTML": "提交作业"
  10102. })
  10103. let aTool = ''
  10104. let _loading = document.createElement('div')
  10105. _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;"
  10106. // _loading.id = "";
  10107. let _lchild = document.createElement('div')
  10108. let _limg = document.createElement('img')
  10109. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10110. _limg.style = "width: 26px;margin-right: 10px;"
  10111. _lchild.appendChild(_limg)
  10112. let _lspan = document.createElement('span')
  10113. _lspan.innerHTML = "上传中..."
  10114. _lchild.appendChild(_lspan)
  10115. _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%);"
  10116. _loading.appendChild(_lchild)
  10117. var _box = $$('div', {
  10118. "style": {
  10119. "position": "relative",
  10120. "width": "100%",
  10121. "height": "100%",
  10122. },
  10123. })
  10124. _box.appendChild(_loading)
  10125. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10126. switch (str) {
  10127. case "CocoPi":
  10128. aTool = 57;
  10129. _iframe = $$("iframe", {
  10130. "allowpaymentrequest": "allowpaymentrequest",
  10131. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10132. "webkitallowfullscreen": "",
  10133. "mozallowfullscreen": "",
  10134. "frameborder": "no",
  10135. "border": "0",
  10136. "scrolling ": "no",
  10137. "style": {
  10138. "cssText": "border:0;width:100%;height:100%"
  10139. },
  10140. "src": "https://pi.cocorobo.cn/"
  10141. })
  10142. _box.appendChild(_iframe);
  10143. _box.appendChild(_jie);
  10144. _formdiv = new U.UF.UI.form(
  10145. "CocoPi",
  10146. _box, {
  10147. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10148. "style": {
  10149. "width": "90%",
  10150. "height": "90%",
  10151. "overflow": 'hidden'
  10152. },
  10153. "onresize": function () { }
  10154. }, {
  10155. closecallback: function () { }
  10156. }, {
  10157. "style": {
  10158. "height": "36px"
  10159. }
  10160. }).form; //创建窗体
  10161. _taskbar = {
  10162. "id": str + _formdiv.id,
  10163. "style": {
  10164. "backgroundImage": "url(/img/icon/cocopi.png)"
  10165. },
  10166. "name": "CocoPi",
  10167. "forms": _formdiv,
  10168. "click": function () {
  10169. U.MD.D.I.openApplication(str, obj, info);
  10170. }
  10171. }
  10172. break;
  10173. }
  10174. if (_iframe) {
  10175. if (str == 'CocoPi') {
  10176. _iframe = _formdiv.querySelector('iframe')
  10177. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10178. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10179. })
  10180. if (onloadListener) {
  10181. _iframe.contentDocument.location.reload()
  10182. } else {
  10183. _iframe.contentDocument.location.reload()
  10184. }
  10185. }
  10186. _jie.onclick = async () => {
  10187. let text = ''
  10188. if (aTool == 57) {
  10189. text = _iframe.contentWindow.getLoadXmlStr()
  10190. }
  10191. _loading.style.display = 'flex'
  10192. console.log(_loading);
  10193. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10194. _loading.style.display = 'none'
  10195. let _div = document.createElement('div')
  10196. _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;"
  10197. let _inner = document.createElement('div')
  10198. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10199. _inner.innerHTML = "上传成功"
  10200. _div.appendChild(_inner)
  10201. _iframe.contentWindow.window.document.body.appendChild(_div)
  10202. _div.onclick = () => {
  10203. _iframe.contentWindow.window.document.body.removeChild(_div)
  10204. }
  10205. setTimeout(() => {
  10206. _iframe.contentWindow.window.document.body.removeChild(_div)
  10207. }, 1000);
  10208. }, [], { "type": "POST", "withCredentials": true });
  10209. }
  10210. }
  10211. }
  10212. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10213. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10214. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10215. _userid = student.userid, //登录用户id
  10216. _username = student.student //用户名字
  10217. let _iframe;
  10218. let _cid = cid,
  10219. _stage = stage,
  10220. _task = task,
  10221. _tool = tool;
  10222. var _jie = $$("div", {
  10223. "style": {
  10224. "position": "absolute",
  10225. "bottom": "50px",
  10226. "right": "50px",
  10227. "zIndex": "9999",
  10228. "backgroundColor": "#2268bc",
  10229. "color": "#fff",
  10230. "padding": "12px 20px",
  10231. "cursor": "pointer",
  10232. "borderRadius": "4px",
  10233. },
  10234. "innerHTML": "提交作业"
  10235. })
  10236. let aTool = ''
  10237. let _loading = document.createElement('div')
  10238. _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;"
  10239. // _loading.id = "";
  10240. let _lchild = document.createElement('div')
  10241. let _limg = document.createElement('img')
  10242. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10243. _limg.style = "width: 26px;margin-right: 10px;"
  10244. _lchild.appendChild(_limg)
  10245. let _lspan = document.createElement('span')
  10246. _lspan.innerHTML = "上传中..."
  10247. _lchild.appendChild(_lspan)
  10248. _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%);"
  10249. _loading.appendChild(_lchild)
  10250. var _box = $$('div', {
  10251. "style": {
  10252. "position": "relative",
  10253. "width": "100%",
  10254. "height": "100%",
  10255. },
  10256. })
  10257. _box.appendChild(_loading)
  10258. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10259. switch (str) {
  10260. case "CocoPi":
  10261. aTool = 57;
  10262. _iframe = $$("iframe", {
  10263. "allowpaymentrequest": "allowpaymentrequest",
  10264. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10265. "webkitallowfullscreen": "",
  10266. "mozallowfullscreen": "",
  10267. "frameborder": "no",
  10268. "border": "0",
  10269. "scrolling ": "no",
  10270. "style": {
  10271. "cssText": "border:0;width:100%;height:100%"
  10272. },
  10273. "src": "https://pi.cocorobo.cn/"
  10274. })
  10275. _box.appendChild(_iframe);
  10276. _box.appendChild(_jie);
  10277. _formdiv = new U.UF.UI.form(
  10278. "CocoPi-" + _username,
  10279. _box, {
  10280. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10281. "style": {
  10282. "width": "90%",
  10283. "height": "90%",
  10284. "overflow": 'hidden'
  10285. },
  10286. "onresize": function () { }
  10287. }, {
  10288. closecallback: function () { }
  10289. }, {
  10290. "style": {
  10291. "height": "36px"
  10292. }
  10293. }).form; //创建窗体
  10294. _taskbar = {
  10295. "id": str + _formdiv.id,
  10296. "style": {
  10297. "backgroundImage": "url(/img/icon/cocopi.png)"
  10298. },
  10299. "name": "CocoPi",
  10300. "forms": _formdiv,
  10301. "click": function () {
  10302. U.MD.D.I.openApplication(str, obj, info);
  10303. }
  10304. }
  10305. break;
  10306. }
  10307. if (_iframe) {
  10308. if (str == 'CocoPi') {
  10309. _iframe = _formdiv.querySelector('iframe')
  10310. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10311. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10312. })
  10313. if (onloadListener) {
  10314. _iframe.contentDocument.location.reload()
  10315. } else {
  10316. _iframe.contentDocument.location.reload()
  10317. }
  10318. }
  10319. _jie.onclick = async () => {
  10320. let text = ''
  10321. if (aTool == 57) {
  10322. text = _iframe.contentWindow.getLoadXmlStr()
  10323. }
  10324. _loading.style.display = 'flex'
  10325. console.log(_loading);
  10326. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10327. _loading.style.display = 'none'
  10328. let _div = document.createElement('div')
  10329. _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;"
  10330. let _inner = document.createElement('div')
  10331. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10332. _inner.innerHTML = "上传成功"
  10333. _div.appendChild(_inner)
  10334. _iframe.contentWindow.window.document.body.appendChild(_div)
  10335. _div.onclick = () => {
  10336. _iframe.contentWindow.window.document.body.removeChild(_div)
  10337. }
  10338. setTimeout(() => {
  10339. _iframe.contentWindow.window.document.body.removeChild(_div)
  10340. }, 1000);
  10341. }, [], { "type": "POST", "withCredentials": true });
  10342. }
  10343. }
  10344. }
  10345. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10346. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10347. if (res.value[0].length > 0) {
  10348. if (atool == 57) {
  10349. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10350. }
  10351. } else {
  10352. if (atool == 57) {
  10353. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10354. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10355. }
  10356. }
  10357. }, [], { "type": "POST", "withCredentials": true });
  10358. }