DeskTop.js 657 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  864. ];
  865. //dsei
  866. U.MD.D.I.dseiAdminDeskIcon = [
  867. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  868. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  869. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  870. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  871. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  872. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  873. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  874. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  875. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  876. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  877. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  878. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  879. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  880. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  881. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  882. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  883. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  884. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  885. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  886. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  887. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  888. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  889. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  890. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  891. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  892. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  893. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  894. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  895. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  896. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  897. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  898. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  899. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  900. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  901. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  902. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  903. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  904. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  907. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  908. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  909. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  910. ];
  911. //dsei
  912. U.MD.D.I.dseiStudentDeskIcon = [
  913. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  914. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  915. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  916. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  917. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  918. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  919. ];
  920. //未来教育基地
  921. U.MD.D.I.szjkyTeacherDeskIcon = [
  922. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  923. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  924. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  925. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  926. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  927. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  928. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  929. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  930. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  931. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  932. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  933. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  934. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  935. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  936. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  938. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  939. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  940. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  941. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  942. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  943. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  944. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  945. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  946. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  947. ];
  948. //未来教育基地
  949. U.MD.D.I.szjkyAdminDeskIcon = [
  950. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  951. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  952. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  953. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  954. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  955. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  956. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  957. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  958. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  959. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  960. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  961. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  962. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  963. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  964. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  965. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  966. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  967. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  968. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  969. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  970. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  971. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  972. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  973. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  974. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  975. ];
  976. //未来教育基地
  977. U.MD.D.I.szjkyStudentDeskIcon = [
  978. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  979. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  980. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  982. ];
  983. //成华教育局
  984. U.MD.D.I.chjyjTeacherDeskIcon = [
  985. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  986. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  990. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  991. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  992. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  993. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  994. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  995. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  996. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  998. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  999. ];
  1000. //成华教育局chjyj
  1001. U.MD.D.I.chjyjAdminDeskIcon = [
  1002. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1003. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1004. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1005. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1006. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1007. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1008. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1009. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1010. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1011. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1012. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1013. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1014. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1015. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1016. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1017. ];
  1018. //成华教育局chjyj
  1019. U.MD.D.I.chjyjStudentDeskIcon = [
  1020. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1021. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1022. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1024. ];
  1025. //tpc
  1026. U.MD.D.I.tpcStudentDeskIcon = [
  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.tpcTeacherDeskIcon = [
  1034. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1035. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1036. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1037. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. ];
  1042. //tpc
  1043. U.MD.D.I.tpcAdminDeskIcon = [
  1044. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1045. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1046. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1047. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1048. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1049. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1050. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1051. ];
  1052. //THU-IOE
  1053. U.MD.D.I.thuioeTeacherDeskIcon = [
  1054. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1055. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1056. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1057. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1058. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1059. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1060. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1061. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1062. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1063. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1064. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1065. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1066. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1067. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1068. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1069. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1070. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1071. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1072. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1073. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1074. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1075. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1076. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1077. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1078. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1079. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1080. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1081. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1082. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1083. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1084. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1085. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1086. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1087. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1092. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1093. ];
  1094. //THU-IOE
  1095. U.MD.D.I.thuioeStudentDeskIcon = [
  1096. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1097. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1098. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. ];
  1101. //jccssyl
  1102. U.MD.D.I.jccssylTeacherDeskIcon = [
  1103. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1104. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1105. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1106. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1107. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1109. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1110. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1111. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1112. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1113. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1114. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1115. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1116. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1117. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1118. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1119. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1120. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1121. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1122. ];
  1123. //jccssyl
  1124. U.MD.D.I.jccssylStudentDeskIcon = [
  1125. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1126. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1127. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1128. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1129. ];
  1130. //cale
  1131. U.MD.D.I.caleTeacherDeskIcon = [
  1132. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1133. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1134. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1135. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1136. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1137. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1138. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1139. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1140. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1141. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1142. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1143. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1144. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1145. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1146. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1147. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1148. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1149. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1150. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1151. ];
  1152. //cale
  1153. U.MD.D.I.caleStudentDeskIcon = [
  1154. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1155. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1156. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1157. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1158. ];
  1159. //lqwmsgzs
  1160. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1161. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1162. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1163. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1164. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1165. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1166. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1167. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1168. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1169. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1170. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1171. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1172. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1173. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1174. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1175. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1176. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1177. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1178. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1179. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1180. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1181. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1182. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1183. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1184. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1185. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1186. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1187. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1188. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1189. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1190. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1191. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1192. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1193. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1194. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1195. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1196. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1197. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1198. ];
  1199. //lqwmsgzs
  1200. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. ];
  1206. //盐田区幼儿园
  1207. U.MD.D.I.ytyTeacherDeskIcon = [
  1208. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1209. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1214. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1215. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1216. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1217. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1218. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1219. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1220. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1221. ];
  1222. //盐田区幼儿园
  1223. U.MD.D.I.ytyStudentDeskIcon = [
  1224. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1225. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1226. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1227. ];
  1228. //scnuai
  1229. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1232. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1233. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1234. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1235. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1236. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1237. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1238. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1239. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1240. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1241. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1242. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1243. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1244. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1245. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1246. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1247. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1248. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1249. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1250. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1251. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1252. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1253. ];
  1254. //scnuai
  1255. U.MD.D.I.scnuaiAdminDeskIcon = [
  1256. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1257. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1258. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1259. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1260. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1261. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1262. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1263. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1264. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1265. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1266. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1267. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1268. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1269. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1272. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1273. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1274. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1275. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1276. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1277. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1278. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1279. ];
  1280. //scnuai
  1281. U.MD.D.I.scnuaiStudentDeskIcon = [
  1282. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1283. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1284. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1285. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1286. ];
  1287. //cocobiz
  1288. U.MD.D.I.cocobizteacherDeskIcon = [
  1289. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1290. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1291. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1292. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1293. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1294. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1295. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1296. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1297. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1298. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1299. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1300. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1301. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1302. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1303. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1305. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1307. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1308. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1309. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1310. ];
  1311. //cocobiz
  1312. U.MD.D.I.cocobizStudentDeskIcon = [
  1313. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1314. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1315. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1316. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1317. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1319. ];
  1320. //xxzjky
  1321. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1322. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1323. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1324. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1325. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1326. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1327. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1328. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1329. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1330. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1331. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1332. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1333. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1334. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1335. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1336. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1337. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1338. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1340. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1341. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1342. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1343. ];
  1344. //xxzjky
  1345. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1346. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1347. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1348. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1349. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1350. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1351. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1352. ];
  1353. //nsfx
  1354. U.MD.D.I.nsfxTeacherDeskIcon = [
  1355. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1356. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1357. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1358. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1359. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1360. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1361. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1362. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1363. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1364. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1365. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1366. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1367. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1368. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1369. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1370. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1371. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1372. ];
  1373. //nsfx
  1374. U.MD.D.I.nsfxStudentDeskIcon = [
  1375. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1376. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1377. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1378. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1379. ];
  1380. //stia
  1381. U.MD.D.I.stiaTeacherDeskIcon = [
  1382. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1383. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1385. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1386. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1387. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1388. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1389. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1390. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1391. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1392. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1393. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1394. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1395. ];
  1396. //stia
  1397. U.MD.D.I.stiaStudentDeskIcon = [
  1398. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1399. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1400. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //szdjg
  1404. U.MD.D.I.szdjgTeacherDeskIcon = [
  1405. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. ];
  1408. //szdjg
  1409. U.MD.D.I.szdjgStudentDeskIcon = [
  1410. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //010607
  1416. U.MD.D.I.x010607TeacherDeskIcon = [
  1417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1424. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1425. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1428. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1429. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1430. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1431. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1432. ];
  1433. //010607
  1434. U.MD.D.I.x010607StudentDeskIcon = [
  1435. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1436. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1437. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. ];
  1440. //010608
  1441. U.MD.D.I.x010608TeacherDeskIcon = [
  1442. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1443. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1445. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1446. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1447. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1448. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1449. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1450. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1452. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1453. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1454. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1455. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1456. ];
  1457. //010608
  1458. U.MD.D.I.x010608StudentDeskIcon = [
  1459. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1460. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1461. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1462. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. ];
  1464. //xhly
  1465. U.MD.D.I.xhlyTeacherDeskIcon = [
  1466. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1467. ];
  1468. //010608
  1469. U.MD.D.I.xhlyStudentDeskIcon = [
  1470. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. ];
  1472. //北师大
  1473. U.MD.D.I.BSDNSteacherDeskIcon = [
  1474. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1475. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1476. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1477. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1478. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1479. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1480. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1484. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1485. ];
  1486. //北师大
  1487. U.MD.D.I.BSDNSstudentDeskIcon = [
  1488. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //CUHK_EDU
  1494. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1495. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1505. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1506. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1507. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1508. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1509. ];
  1510. //CUHK_EDU
  1511. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1512. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1513. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1514. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. ];
  1517. //010503
  1518. U.MD.D.I.x010503TeacherDeskIcon = [
  1519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1522. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1523. { "Name": "项目管理", "Url": "studentCourseS", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1526. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1527. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1528. ];
  1529. //010503
  1530. U.MD.D.I.x010503StudentDeskIcon = [
  1531. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1535. ];
  1536. //SPROUT Lab
  1537. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1538. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1539. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1541. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1542. { "Name": "项目管理", "Url": "studentCourseS", "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": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1546. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1547. ];
  1548. //SPROUT Lab
  1549. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1550. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1551. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1552. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1553. ];
  1554. //010204
  1555. U.MD.D.I.x010204TeacherDeskIcon = [
  1556. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1557. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1558. ];
  1559. //010204
  1560. U.MD.D.I.x010204StudentDeskIcon = [
  1561. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //trail
  1567. U.MD.D.I.trailTeacherDeskIcon = [
  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. //trail
  1572. U.MD.D.I.trailStudentDeskIcon = [
  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. //010504
  1579. U.MD.D.I.x010504TeacherDeskIcon = [
  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": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1583. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1584. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1585. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1586. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1587. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1588. ];
  1589. //010504
  1590. U.MD.D.I.x010504StudentDeskIcon = [
  1591. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //SCNUET
  1597. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1598. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1602. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1603. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1604. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1605. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1606. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1607. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1608. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1609. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1610. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1611. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1612. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1613. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1614. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1615. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1616. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1617. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1618. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1619. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1620. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1621. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1622. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1623. ];
  1624. //SCNUET
  1625. U.MD.D.I.SCNUETAdminDeskIcon = [
  1626. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1627. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1628. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1629. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1630. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1631. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1632. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1633. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1634. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1635. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1636. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1637. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1638. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1639. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1640. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1641. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1642. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1643. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1644. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1645. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1646. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1647. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1648. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1649. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1650. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1651. ];
  1652. //SCNUET
  1653. U.MD.D.I.SCNUETStudentDeskIcon = [
  1654. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1656. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1657. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1658. ];
  1659. //x020201
  1660. U.MD.D.I.x020201TeacherDeskIcon = [
  1661. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1662. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1663. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1664. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1665. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1666. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1667. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1668. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1669. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1670. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1671. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1672. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1673. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1674. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1675. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1676. ];
  1677. //x020201
  1678. U.MD.D.I.x020201AdminDeskIcon = [
  1679. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1680. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1681. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1682. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1683. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1684. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1685. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1686. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1687. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1690. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1691. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1693. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1694. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1695. ];
  1696. //020201
  1697. U.MD.D.I.x020201StudentDeskIcon = [
  1698. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. ];
  1703. //010611
  1704. U.MD.D.I.x010611TeacherDeskIcon = [
  1705. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1706. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1707. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1708. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1709. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1710. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1711. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1712. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1713. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1714. ];
  1715. //010611
  1716. U.MD.D.I.x010611StudentDeskIcon = [
  1717. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1718. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1719. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1721. ];
  1722. //tianyuan
  1723. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1724. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1725. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1726. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1727. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1728. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1732. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1733. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1734. ];
  1735. //010611
  1736. U.MD.D.I.tianyuanStudentDeskIcon = [
  1737. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1738. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1739. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1741. ];
  1742. //#region 桌面初始化a
  1743. /**
  1744. * 初始化桌面的起始函数
  1745. *
  1746. */
  1747. U.MD.D.I.init = function () {
  1748. if ($("#U_MD_D_K")[0]) {
  1749. //初始化桌面图标
  1750. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1751. // var clickUrl = ':12588/requestIp.php';
  1752. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1753. // U.MD.D.I.Ip = data;
  1754. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1755. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1756. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1757. // })
  1758. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1759. // })
  1760. }
  1761. }
  1762. /**
  1763. * 模式切换
  1764. *
  1765. */
  1766. U.MD.D.I.ModeCheck = function (type) {
  1767. if (US.Config.type == type) {
  1768. return
  1769. }
  1770. US.Config.type = type
  1771. $('.U_PBL_Check .active')[0].className = ''
  1772. if (type == 1) {
  1773. $('.U_PBL_Check div')[0].className = 'active'
  1774. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1775. } else {
  1776. $('.U_PBL_Check div')[1].className = 'active'
  1777. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1778. }
  1779. //初始化桌面图标
  1780. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1781. if (type == 2) {
  1782. U.MD.D.I.openApplication("project")
  1783. }
  1784. }
  1785. /**
  1786. * 隐藏任务栏
  1787. *
  1788. * @param {element} 桌面元素
  1789. */
  1790. U.MD.D.I.hiddenTaskbar = function (el) {
  1791. //任务栏位置变小
  1792. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1793. //桌面的位置变大
  1794. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1795. }
  1796. /**
  1797. * 隐藏任务栏
  1798. *
  1799. * @param {element} 桌面元素
  1800. */
  1801. U.MD.D.I.hiddenTaskbarout = function (el) {
  1802. //任务栏位置变小
  1803. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1804. //任务栏位置变化
  1805. U.selectEl(el).css({ "bottom": "-60px" });
  1806. //桌面的位置变大
  1807. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1808. }
  1809. }
  1810. /**
  1811. * 初始化打印桌面图标
  1812. *
  1813. * @param {element} 桌面元素
  1814. */
  1815. U.MD.D.I.initDesktopIcons = function (el, type) {
  1816. var i, //用于循环
  1817. _content, //桌面图标元素
  1818. _iconcontent, //桌面图标元素
  1819. _frag = $$("frag"), //定义一个碎片元素
  1820. _type = US.userInfo.type,
  1821. _org = US.userInfo.org,
  1822. _oid = US.userInfo.organizeid,
  1823. _role = US.userInfo.role,
  1824. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1825. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1826. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1827. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1828. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1829. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1830. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1831. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1832. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1833. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1834. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1835. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1836. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1837. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1838. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1839. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1840. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1841. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1842. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1843. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1844. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1845. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1846. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1847. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1848. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1849. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1850. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1851. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1852. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1853. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1854. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1855. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1856. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1857. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1858. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1859. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1860. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1861. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1862. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1863. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1864. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1865. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1866. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1867. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1868. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1869. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1870. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1871. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1872. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1873. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1874. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1875. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1876. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1877. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1878. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1879. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1880. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1881. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1882. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1883. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1884. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1885. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1886. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1887. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1888. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1889. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1890. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1891. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1892. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1893. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1894. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1895. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1896. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1897. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1898. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1899. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1900. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1901. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1902. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1903. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1904. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1905. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1906. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1907. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1908. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1909. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1910. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1911. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1912. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1913. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1914. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1915. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1916. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1917. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1918. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1919. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1920. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1921. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1922. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1923. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1924. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1925. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1926. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1927. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1928. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1929. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1930. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1931. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1932. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1933. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1934. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1935. 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'];
  1936. 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'];
  1937. //清楚桌面图标
  1938. el.innerHTML = "";
  1939. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1940. _teacherDesktopIconInfo.push(
  1941. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1942. { "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)" } },
  1943. )
  1944. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1945. }
  1946. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1947. _teacherDesktopIconInfo.push(
  1948. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1949. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1950. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1951. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1952. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1953. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1954. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1955. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1956. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1957. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1958. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1959. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1960. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1961. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1962. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1963. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1964. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1965. // { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1966. )
  1967. }
  1968. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1969. _teacherDesktopIconInfo.push(
  1970. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1971. )
  1972. }
  1973. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1974. // _teacherDesktopIconInfo.push(
  1975. // )
  1976. // }
  1977. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1978. _teacherDesktopIconInfo.push(
  1979. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1980. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1981. )
  1982. }
  1983. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1984. _teacherDesktopIconInfo.push(
  1985. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1987. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1988. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1989. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1990. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1991. )
  1992. _studentDesktopIconInfo.push(
  1993. )
  1994. }
  1995. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1996. _teacherDesktopIconInfo.push(
  1997. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1998. )
  1999. _studentDesktopIconInfo.push(
  2000. )
  2001. }
  2002. //010606 组织
  2003. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2004. _teacherDesktopIconInfo.push(
  2005. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2006. )
  2007. _studentDesktopIconInfo.push(
  2008. )
  2009. }
  2010. //麒麟二中 和 民新小学
  2011. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2012. _teacherDesktopIconInfo.push(
  2013. )
  2014. }
  2015. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2016. _teacherDesktopIconInfo.push(
  2017. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2018. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2019. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2020. )
  2021. }
  2022. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2023. _hkTeacherDeskIconInfo.push(
  2024. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2025. )
  2026. }
  2027. //北师大附中(010601)
  2028. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2029. // _teacherDesktopIconInfo.push(
  2030. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2031. // )
  2032. // _studentDesktopIconInfo.push(
  2033. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2034. // )
  2035. // }
  2036. //樂善堂余近卿中學
  2037. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2038. _teacherDesktopIconInfo.push(
  2039. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2040. )
  2041. }
  2042. // Education Artificial Intelligence
  2043. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2044. _teacherDesktopIconInfo.push(
  2045. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2046. )
  2047. }
  2048. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2049. _teacherDesktopIconInfo.push(
  2050. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2051. )
  2052. }
  2053. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2054. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2055. _teacherDesktopIconInfo.push(
  2056. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2057. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2058. )
  2059. }
  2060. //麒麟二中
  2061. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2062. _studentDesktopIconInfo.push(
  2063. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2064. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2065. )
  2066. }
  2067. //万科双语
  2068. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2069. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2070. if (el.Name == '项目管理') {
  2071. el.Name = 'PBL项目'
  2072. }
  2073. return el
  2074. })
  2075. _studentDesktopIconInfo3.push(
  2076. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2077. )
  2078. }
  2079. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2080. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2081. return el.Name != '魔盒识字' && el.Name != '24点'
  2082. })
  2083. }
  2084. 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) {
  2085. _studentDesktopIconInfo.push(
  2086. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2087. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2088. )
  2089. }
  2090. //循环创建桌面图标
  2091. if (type == 1) {
  2092. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2093. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2094. _content = $$("div", {
  2095. className: "U_MD_D_KO",
  2096. "onmousedown": U.UF.C.closure(function (obj) {
  2097. //防止拖动图标即打开了桌面应用
  2098. U.MD.D.click(this, obj);
  2099. }, [_studentDesktopIconInfo[i]]),
  2100. "onclick": U.UF.C.closure(function (obj) {
  2101. //防止拖动图标即打开了桌面应用
  2102. U.MD.D.click(this, obj);
  2103. }, [_studentDesktopIconInfo[i]])
  2104. }, _frag); //
  2105. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2106. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2107. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2108. }
  2109. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2110. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2111. _content = $$("div", {
  2112. className: "U_MD_D_KO",
  2113. "onmousedown": U.UF.C.closure(function (obj) {
  2114. //防止拖动图标即打开了桌面应用
  2115. U.MD.D.click(this, obj);
  2116. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2117. "onclick": U.UF.C.closure(function (obj) {
  2118. //防止拖动图标即打开了桌面应用
  2119. U.MD.D.click(this, obj);
  2120. }, [_hkZJLSStudentDeskIconInfo[i]])
  2121. }, _frag); //
  2122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2125. } //
  2126. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2127. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2128. _content = $$("div", {
  2129. className: "U_MD_D_KO",
  2130. "onmousedown": U.UF.C.closure(function (obj) {
  2131. //防止拖动图标即打开了桌面应用
  2132. U.MD.D.click(this, obj);
  2133. }, [_ytyStudentDeskIconInfo[i]]),
  2134. "onclick": U.UF.C.closure(function (obj) {
  2135. //防止拖动图标即打开了桌面应用
  2136. U.MD.D.click(this, obj);
  2137. }, [_ytyStudentDeskIconInfo[i]])
  2138. }, _frag); //
  2139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2142. } //
  2143. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2144. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2145. _content = $$("div", {
  2146. className: "U_MD_D_KO",
  2147. "onmousedown": U.UF.C.closure(function (obj) {
  2148. //防止拖动图标即打开了桌面应用
  2149. U.MD.D.click(this, obj);
  2150. }, [_jccssylStudentDeskIconInfo[i]]),
  2151. "onclick": U.UF.C.closure(function (obj) {
  2152. //防止拖动图标即打开了桌面应用
  2153. U.MD.D.click(this, obj);
  2154. }, [_jccssylStudentDeskIconInfo[i]])
  2155. }, _frag); //
  2156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2159. }
  2160. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2161. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2162. _content = $$("div", {
  2163. className: "U_MD_D_KO",
  2164. "onmousedown": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_scnuaiStudentDeskIconInfo[i]]),
  2168. "onclick": U.UF.C.closure(function (obj) {
  2169. //防止拖动图标即打开了桌面应用
  2170. U.MD.D.click(this, obj);
  2171. }, [_scnuaiStudentDeskIconInfo[i]])
  2172. }, _frag); //
  2173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2176. }
  2177. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2178. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2179. _content = $$("div", {
  2180. className: "U_MD_D_KO",
  2181. "onmousedown": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_caleStudentDeskIconInfo[i]]),
  2185. "onclick": U.UF.C.closure(function (obj) {
  2186. //防止拖动图标即打开了桌面应用
  2187. U.MD.D.click(this, obj);
  2188. }, [_caleStudentDeskIconInfo[i]])
  2189. }, _frag); //
  2190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2193. }
  2194. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2195. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2196. _content = $$("div", {
  2197. className: "U_MD_D_KO",
  2198. "onmousedown": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_thuioeStudentDeskIconInfo[i]]),
  2202. "onclick": U.UF.C.closure(function (obj) {
  2203. //防止拖动图标即打开了桌面应用
  2204. U.MD.D.click(this, obj);
  2205. }, [_thuioeStudentDeskIconInfo[i]])
  2206. }, _frag); //
  2207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2210. }
  2211. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2212. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2213. _content = $$("div", {
  2214. className: "U_MD_D_KO",
  2215. "onmousedown": U.UF.C.closure(function (obj) {
  2216. //防止拖动图标即打开了桌面应用
  2217. U.MD.D.click(this, obj);
  2218. }, [_tpcStudentDeskIconInfo[i]]),
  2219. "onclick": U.UF.C.closure(function (obj) {
  2220. //防止拖动图标即打开了桌面应用
  2221. U.MD.D.click(this, obj);
  2222. }, [_tpcStudentDeskIconInfo[i]])
  2223. }, _frag); //
  2224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2227. } //
  2228. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2229. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2230. _content = $$("div", {
  2231. className: "U_MD_D_KO",
  2232. "onmousedown": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_chjyjStudentDeskIconInfo[i]]),
  2236. "onclick": U.UF.C.closure(function (obj) {
  2237. //防止拖动图标即打开了桌面应用
  2238. U.MD.D.click(this, obj);
  2239. }, [_chjyjStudentDeskIconInfo[i]])
  2240. }, _frag); //
  2241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2244. }
  2245. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2246. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2247. _content = $$("div", {
  2248. className: "U_MD_D_KO",
  2249. "onmousedown": U.UF.C.closure(function (obj) {
  2250. //防止拖动图标即打开了桌面应用
  2251. U.MD.D.click(this, obj);
  2252. }, [_szjkyStudentDeskIconInfo[i]]),
  2253. "onclick": U.UF.C.closure(function (obj) {
  2254. //防止拖动图标即打开了桌面应用
  2255. U.MD.D.click(this, obj);
  2256. }, [_szjkyStudentDeskIconInfo[i]])
  2257. }, _frag); //
  2258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2261. }
  2262. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2263. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2264. _content = $$("div", {
  2265. className: "U_MD_D_KO",
  2266. "onmousedown": U.UF.C.closure(function (obj) {
  2267. //防止拖动图标即打开了桌面应用
  2268. U.MD.D.click(this, obj);
  2269. }, [_x020201StudentDeskIconInfo[i]]),
  2270. "onclick": U.UF.C.closure(function (obj) {
  2271. //防止拖动图标即打开了桌面应用
  2272. U.MD.D.click(this, obj);
  2273. }, [_x020201StudentDeskIconInfo[i]])
  2274. }, _frag); //
  2275. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2276. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2277. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2278. }
  2279. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2280. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2281. _content = $$("div", {
  2282. className: "U_MD_D_KO",
  2283. "onmousedown": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_SCNUETStudentDeskIconInfo[i]]),
  2287. "onclick": U.UF.C.closure(function (obj) {
  2288. //防止拖动图标即打开了桌面应用
  2289. U.MD.D.click(this, obj);
  2290. }, [_SCNUETStudentDeskIconInfo[i]])
  2291. }, _frag); //
  2292. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2293. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2294. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2295. }
  2296. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2297. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2298. _content = $$("div", {
  2299. className: "U_MD_D_KO",
  2300. "onmousedown": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_dseiStudentDeskIconInfo[i]]),
  2304. "onclick": U.UF.C.closure(function (obj) {
  2305. //防止拖动图标即打开了桌面应用
  2306. U.MD.D.click(this, obj);
  2307. }, [_dseiStudentDeskIconInfo[i]])
  2308. }, _frag); //
  2309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2312. }
  2313. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2314. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2315. _content = $$("div", {
  2316. className: "U_MD_D_KO",
  2317. "onmousedown": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2321. "onclick": U.UF.C.closure(function (obj) {
  2322. //防止拖动图标即打开了桌面应用
  2323. U.MD.D.click(this, obj);
  2324. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2325. }, _frag); //
  2326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2329. }
  2330. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2331. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2332. _content = $$("div", {
  2333. className: "U_MD_D_KO",
  2334. "onmousedown": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_nsfxStudentDeskIconInfo[i]]),
  2338. "onclick": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_nsfxStudentDeskIconInfo[i]])
  2342. }, _frag); //
  2343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2346. }
  2347. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2348. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2349. _content = $$("div", {
  2350. className: "U_MD_D_KO",
  2351. "onmousedown": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_stiaStudentDeskIconInfo[i]]),
  2355. "onclick": U.UF.C.closure(function (obj) {
  2356. //防止拖动图标即打开了桌面应用
  2357. U.MD.D.click(this, obj);
  2358. }, [_stiaStudentDeskIconInfo[i]])
  2359. }, _frag); //
  2360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2363. }
  2364. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2365. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2366. _content = $$("div", {
  2367. className: "U_MD_D_KO",
  2368. "onmousedown": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_szdjgStudentDeskIconInfo[i]]),
  2372. "onclick": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_szdjgStudentDeskIconInfo[i]])
  2376. }, _frag); //
  2377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2380. }
  2381. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2382. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2383. _content = $$("div", {
  2384. className: "U_MD_D_KO",
  2385. "onmousedown": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_x010607StudentDeskIconInfo[i]]),
  2389. "onclick": U.UF.C.closure(function (obj) {
  2390. //防止拖动图标即打开了桌面应用
  2391. U.MD.D.click(this, obj);
  2392. }, [_x010607StudentDeskIconInfo[i]])
  2393. }, _frag); //
  2394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2397. }
  2398. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2399. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2400. _content = $$("div", {
  2401. className: "U_MD_D_KO",
  2402. "onmousedown": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_xhlyStudentDeskIconInfo[i]]),
  2406. "onclick": U.UF.C.closure(function (obj) {
  2407. //防止拖动图标即打开了桌面应用
  2408. U.MD.D.click(this, obj);
  2409. }, [_xhlyStudentDeskIconInfo[i]])
  2410. }, _frag); //
  2411. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2412. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2413. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2414. }
  2415. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2416. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2417. _content = $$("div", {
  2418. className: "U_MD_D_KO",
  2419. "onmousedown": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2423. "onclick": U.UF.C.closure(function (obj) {
  2424. //防止拖动图标即打开了桌面应用
  2425. U.MD.D.click(this, obj);
  2426. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2427. }, _frag); //
  2428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2431. }
  2432. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2433. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2434. _content = $$("div", {
  2435. className: "U_MD_D_KO",
  2436. "onmousedown": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_x010503StudentDeskIconInfo[i]]),
  2440. "onclick": U.UF.C.closure(function (obj) {
  2441. //防止拖动图标即打开了桌面应用
  2442. U.MD.D.click(this, obj);
  2443. }, [_x010503StudentDeskIconInfo[i]])
  2444. }, _frag); //
  2445. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2446. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2447. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2448. }
  2449. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2450. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2451. _content = $$("div", {
  2452. className: "U_MD_D_KO",
  2453. "onmousedown": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_x010504StudentDeskIconInfo[i]]),
  2457. "onclick": U.UF.C.closure(function (obj) {
  2458. //防止拖动图标即打开了桌面应用
  2459. U.MD.D.click(this, obj);
  2460. }, [_x010504StudentDeskIconInfo[i]])
  2461. }, _frag); //
  2462. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2463. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2464. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2465. }
  2466. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2467. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2468. _content = $$("div", {
  2469. className: "U_MD_D_KO",
  2470. "onmousedown": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_x010204StudentDeskIconInfo[i]]),
  2474. "onclick": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_x010204StudentDeskIconInfo[i]])
  2478. }, _frag); //
  2479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2482. }
  2483. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2484. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2485. _content = $$("div", {
  2486. className: "U_MD_D_KO",
  2487. "onmousedown": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_trailStudentDeskIconInfo[i]]),
  2491. "onclick": U.UF.C.closure(function (obj) {
  2492. //防止拖动图标即打开了桌面应用
  2493. U.MD.D.click(this, obj);
  2494. }, [_trailStudentDeskIconInfo[i]])
  2495. }, _frag); //
  2496. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2497. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2498. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2499. }
  2500. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2501. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2502. _content = $$("div", {
  2503. className: "U_MD_D_KO",
  2504. "onmousedown": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2508. "onclick": U.UF.C.closure(function (obj) {
  2509. //防止拖动图标即打开了桌面应用
  2510. U.MD.D.click(this, obj);
  2511. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2512. }, _frag); //
  2513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2516. }
  2517. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2518. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2519. _content = $$("div", {
  2520. className: "U_MD_D_KO",
  2521. "onmousedown": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_x010608StudentDeskIconInfo[i]]),
  2525. "onclick": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_x010608StudentDeskIconInfo[i]])
  2529. }, _frag); //
  2530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2533. }
  2534. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2535. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2536. _content = $$("div", {
  2537. className: "U_MD_D_KO",
  2538. "onmousedown": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_x010611StudentDeskIconInfo[i]]),
  2542. "onclick": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_x010611StudentDeskIconInfo[i]])
  2546. }, _frag); //
  2547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2550. }
  2551. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2552. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2553. _content = $$("div", {
  2554. className: "U_MD_D_KO",
  2555. "onmousedown": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_tianyuantudentDeskIconInfo[i]]),
  2559. "onclick": U.UF.C.closure(function (obj) {
  2560. //防止拖动图标即打开了桌面应用
  2561. U.MD.D.click(this, obj);
  2562. }, [_tianyuantudentDeskIconInfo[i]])
  2563. }, _frag); //
  2564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2567. }
  2568. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2569. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2570. _content = $$("div", {
  2571. className: "U_MD_D_KO",
  2572. "onmousedown": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_siesStudentDeskIconInfo[i]]),
  2576. "onclick": U.UF.C.closure(function (obj) {
  2577. //防止拖动图标即打开了桌面应用
  2578. U.MD.D.click(this, obj);
  2579. }, [_siesStudentDeskIconInfo[i]])
  2580. }, _frag); //
  2581. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2582. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2583. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2584. }
  2585. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2586. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2587. _content = $$("div", {
  2588. className: "U_MD_D_KO",
  2589. "onmousedown": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_guzmsStudentDeskIconInfo[i]]),
  2593. "onclick": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_guzmsStudentDeskIconInfo[i]])
  2597. }, _frag); //
  2598. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2599. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2600. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2601. }
  2602. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2603. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2604. _content = $$("div", {
  2605. className: "U_MD_D_KO",
  2606. "onmousedown": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_hkStudentDeskIconInfo[i]]),
  2610. "onclick": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_hkStudentDeskIconInfo[i]])
  2614. }, _frag); //
  2615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2618. }
  2619. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2620. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2621. _content = $$("div", {
  2622. className: "U_MD_D_KO",
  2623. "onmousedown": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_hkaceStudentDeskIconInfo[i]]),
  2627. "onclick": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_hkaceStudentDeskIconInfo[i]])
  2631. }, _frag); //
  2632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2635. }
  2636. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2637. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2638. _content = $$("div", {
  2639. className: "U_MD_D_KO",
  2640. "onmousedown": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2644. "onclick": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_BSDNSstudentDesktopIconInfo[i]])
  2648. }, _frag); //
  2649. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2650. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2651. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2652. }
  2653. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2654. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2655. _content = $$("div", {
  2656. className: "U_MD_D_KO",
  2657. "onmousedown": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_cocobizStudentDeskIconInfo[i]]),
  2661. "onclick": U.UF.C.closure(function (obj) {
  2662. //防止拖动图标即打开了桌面应用
  2663. U.MD.D.click(this, obj);
  2664. }, [_cocobizStudentDeskIconInfo[i]])
  2665. }, _frag); //
  2666. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2667. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2668. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2669. }
  2670. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2671. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2672. _content = $$("div", {
  2673. className: "U_MD_D_KO",
  2674. "onmousedown": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2678. "onclick": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_xxzjkyStudentDeskIconInfo[i]])
  2682. }, _frag); //
  2683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2686. }
  2687. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2688. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2689. _content = $$("div", {
  2690. className: "U_MD_D_KO",
  2691. "onmousedown": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_studentDesktopIconInfo[i]]),
  2695. "onclick": U.UF.C.closure(function (obj) {
  2696. //防止拖动图标即打开了桌面应用
  2697. U.MD.D.click(this, obj);
  2698. }, [_studentDesktopIconInfo[i]])
  2699. }, _frag); //
  2700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2703. }
  2704. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2705. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2706. _content = $$("div", {
  2707. className: "U_MD_D_KO",
  2708. "onmousedown": U.UF.C.closure(function (obj) {
  2709. //防止拖动图标即打开了桌面应用
  2710. U.MD.D.click(this, obj);
  2711. }, [_tcStudentDeskIconInfo[i]]),
  2712. "onclick": U.UF.C.closure(function (obj) {
  2713. //防止拖动图标即打开了桌面应用
  2714. U.MD.D.click(this, obj);
  2715. }, [_tcStudentDeskIconInfo[i]])
  2716. }, _frag); //
  2717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2720. }
  2721. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2722. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2723. _content = $$("div", {
  2724. className: "U_MD_D_KO",
  2725. "onmousedown": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_szscStudentDeskIconInfo[i]]),
  2729. "onclick": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_szscStudentDeskIconInfo[i]])
  2733. }, _frag); //
  2734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2737. }
  2738. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2739. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2740. _content = $$("div", {
  2741. className: "U_MD_D_KO",
  2742. "onmousedown": U.UF.C.closure(function (obj) {
  2743. //防止拖动图标即打开了桌面应用
  2744. U.MD.D.click(this, obj);
  2745. }, [_studentDesktopIconInfo3[i]]),
  2746. "onclick": U.UF.C.closure(function (obj) {
  2747. //防止拖动图标即打开了桌面应用
  2748. U.MD.D.click(this, obj);
  2749. }, [_studentDesktopIconInfo3[i]])
  2750. }, _frag); //
  2751. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2752. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2753. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2754. }
  2755. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2756. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2757. _content = $$("div", {
  2758. className: "U_MD_D_KO",
  2759. "onmousedown": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_studentDesktopIconInfo2[i]]),
  2763. "onclick": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_studentDesktopIconInfo2[i]])
  2767. }, _frag); //
  2768. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2769. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2770. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2771. }
  2772. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2773. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2774. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2775. continue
  2776. }
  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. }, [_wanketeacherDesktopIconInfo[i]]),
  2783. "onclick": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_wanketeacherDesktopIconInfo[i]])
  2787. }, _frag); //
  2788. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2789. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2790. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2791. }
  2792. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2793. for (i = 0; i < _wankeAdminDesktopIconInfo.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. }, [_wankeAdminDesktopIconInfo[i]]),
  2800. "onclick": U.UF.C.closure(function (obj) {
  2801. //防止拖动图标即打开了桌面应用
  2802. U.MD.D.click(this, obj);
  2803. }, [_wankeAdminDesktopIconInfo[i]])
  2804. }, _frag); //
  2805. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2806. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2807. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2808. }
  2809. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2810. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2811. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2812. continue
  2813. }
  2814. _content = $$("div", {
  2815. className: "U_MD_D_KO",
  2816. "onmousedown": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2820. "onclick": U.UF.C.closure(function (obj) {
  2821. //防止拖动图标即打开了桌面应用
  2822. U.MD.D.click(this, obj);
  2823. }, [_scnuaiTeacherDeskIconInfo[i]])
  2824. }, _frag); //
  2825. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2826. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2827. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2828. }
  2829. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2830. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2831. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2832. continue
  2833. }
  2834. _content = $$("div", {
  2835. className: "U_MD_D_KO",
  2836. "onmousedown": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2840. "onclick": U.UF.C.closure(function (obj) {
  2841. //防止拖动图标即打开了桌面应用
  2842. U.MD.D.click(this, obj);
  2843. }, [_BSDNSteacherDesktopIconInfo[i]])
  2844. }, _frag); //
  2845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2848. }
  2849. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2850. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2851. _content = $$("div", {
  2852. className: "U_MD_D_KO",
  2853. "onmousedown": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_scnuaiAdminDeskIconInfo[i]]),
  2857. "onclick": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_scnuaiAdminDeskIconInfo[i]])
  2861. }, _frag); //
  2862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2865. }
  2866. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2867. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2868. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2869. continue
  2870. }
  2871. _content = $$("div", {
  2872. className: "U_MD_D_KO",
  2873. "onmousedown": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_jccssylTeacherDeskIconInfo[i]]),
  2877. "onclick": U.UF.C.closure(function (obj) {
  2878. //防止拖动图标即打开了桌面应用
  2879. U.MD.D.click(this, obj);
  2880. }, [_jccssylTeacherDeskIconInfo[i]])
  2881. }, _frag); //
  2882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2885. }
  2886. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2887. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2888. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2889. continue
  2890. }
  2891. _content = $$("div", {
  2892. className: "U_MD_D_KO",
  2893. "onmousedown": U.UF.C.closure(function (obj) {
  2894. //防止拖动图标即打开了桌面应用
  2895. U.MD.D.click(this, obj);
  2896. }, [_caleTeacherDeskIconInfo[i]]),
  2897. "onclick": U.UF.C.closure(function (obj) {
  2898. //防止拖动图标即打开了桌面应用
  2899. U.MD.D.click(this, obj);
  2900. }, [_caleTeacherDeskIconInfo[i]])
  2901. }, _frag); //
  2902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2905. }
  2906. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2907. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2908. _content = $$("div", {
  2909. className: "U_MD_D_KO",
  2910. "onmousedown": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_tpcOrganizerDeskIconInfo[i]]),
  2914. "onclick": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_tpcOrganizerDeskIconInfo[i]])
  2918. }, _frag); //
  2919. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2920. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2921. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2922. }
  2923. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2924. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2925. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2926. continue
  2927. }
  2928. _content = $$("div", {
  2929. className: "U_MD_D_KO",
  2930. "onmousedown": U.UF.C.closure(function (obj) {
  2931. //防止拖动图标即打开了桌面应用
  2932. U.MD.D.click(this, obj);
  2933. }, [_tpcTeacherDeskIconInfo[i]]),
  2934. "onclick": U.UF.C.closure(function (obj) {
  2935. //防止拖动图标即打开了桌面应用
  2936. U.MD.D.click(this, obj);
  2937. }, [_tpcTeacherDeskIconInfo[i]])
  2938. }, _frag); //
  2939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2942. }
  2943. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2944. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2945. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2946. continue
  2947. }
  2948. _content = $$("div", {
  2949. className: "U_MD_D_KO",
  2950. "onmousedown": U.UF.C.closure(function (obj) {
  2951. //防止拖动图标即打开了桌面应用
  2952. U.MD.D.click(this, obj);
  2953. }, [_teacherDesktopIconInfo2[i]]),
  2954. "onclick": U.UF.C.closure(function (obj) {
  2955. //防止拖动图标即打开了桌面应用
  2956. U.MD.D.click(this, obj);
  2957. }, [_teacherDesktopIconInfo2[i]])
  2958. }, _frag); //
  2959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2962. }
  2963. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2964. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2965. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2966. continue
  2967. }
  2968. _content = $$("div", {
  2969. className: "U_MD_D_KO",
  2970. "onmousedown": U.UF.C.closure(function (obj) {
  2971. //防止拖动图标即打开了桌面应用
  2972. U.MD.D.click(this, obj);
  2973. }, [_thuioeTeacherDeskIconInfo[i]]),
  2974. "onclick": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_thuioeTeacherDeskIconInfo[i]])
  2978. }, _frag); //
  2979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2982. }
  2983. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2984. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2985. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2986. continue
  2987. }
  2988. _content = $$("div", {
  2989. className: "U_MD_D_KO",
  2990. "onmousedown": U.UF.C.closure(function (obj) {
  2991. //防止拖动图标即打开了桌面应用
  2992. U.MD.D.click(this, obj);
  2993. }, [_lotechTeacherDeskIconInfo[i]]),
  2994. "onclick": U.UF.C.closure(function (obj) {
  2995. //防止拖动图标即打开了桌面应用
  2996. U.MD.D.click(this, obj);
  2997. }, [_lotechTeacherDeskIconInfo[i]])
  2998. }, _frag); //
  2999. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3000. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3001. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3002. }//
  3003. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3004. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3005. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3006. continue
  3007. }
  3008. _content = $$("div", {
  3009. className: "U_MD_D_KO",
  3010. "onmousedown": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3014. "onclick": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3018. }, _frag); //
  3019. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3020. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3021. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3022. }
  3023. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3024. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3025. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3026. continue
  3027. }
  3028. _content = $$("div", {
  3029. className: "U_MD_D_KO",
  3030. "onmousedown": U.UF.C.closure(function (obj) {
  3031. //防止拖动图标即打开了桌面应用
  3032. U.MD.D.click(this, obj);
  3033. }, [_siesTeacherDeskIconInfo[i]]),
  3034. "onclick": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_siesTeacherDeskIconInfo[i]])
  3038. }, _frag); //
  3039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3042. }
  3043. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3044. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3045. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3046. continue
  3047. }
  3048. _content = $$("div", {
  3049. className: "U_MD_D_KO",
  3050. "onmousedown": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_guzmsTeacherDeskIconInfo[i]]),
  3054. "onclick": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_guzmsTeacherDeskIconInfo[i]])
  3058. }, _frag); //
  3059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3062. }
  3063. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3064. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3065. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3066. continue
  3067. }
  3068. _content = $$("div", {
  3069. className: "U_MD_D_KO",
  3070. "onmousedown": U.UF.C.closure(function (obj) {
  3071. //防止拖动图标即打开了桌面应用
  3072. U.MD.D.click(this, obj);
  3073. }, [_longhuaTeacherDeskIconInfo[i]]),
  3074. "onclick": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_longhuaTeacherDeskIconInfo[i]])
  3078. }, _frag); //
  3079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3082. }
  3083. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3084. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3085. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3086. continue
  3087. }
  3088. _content = $$("div", {
  3089. className: "U_MD_D_KO",
  3090. "onmousedown": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_ytyTeacherDeskIconInfo[i]]),
  3094. "onclick": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_ytyTeacherDeskIconInfo[i]])
  3098. }, _frag); //
  3099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3102. }
  3103. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3104. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3105. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3106. continue
  3107. }
  3108. _content = $$("div", {
  3109. className: "U_MD_D_KO",
  3110. "onmousedown": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3114. "onclick": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_yunhaiTeacherDeskIconInfo[i]])
  3118. }, _frag); //
  3119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3122. } //_hkStudentDeskIconInfo
  3123. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3124. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3125. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3126. continue
  3127. }
  3128. _content = $$("div", {
  3129. className: "U_MD_D_KO",
  3130. "onmousedown": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3134. "onclick": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3138. }, _frag); //
  3139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3142. }
  3143. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3144. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3145. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3146. continue
  3147. }
  3148. _content = $$("div", {
  3149. className: "U_MD_D_KO",
  3150. "onmousedown": U.UF.C.closure(function (obj) {
  3151. //防止拖动图标即打开了桌面应用
  3152. U.MD.D.click(this, obj);
  3153. }, [_hkTeacherDeskIconInfo[i]]),
  3154. "onclick": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_hkTeacherDeskIconInfo[i]])
  3158. }, _frag); //
  3159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3162. }
  3163. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3164. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3165. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3166. continue
  3167. }
  3168. _content = $$("div", {
  3169. className: "U_MD_D_KO",
  3170. "onmousedown": U.UF.C.closure(function (obj) {
  3171. //防止拖动图标即打开了桌面应用
  3172. U.MD.D.click(this, obj);
  3173. }, [_hkaceTeacherDeskIconInfo[i]]),
  3174. "onclick": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_hkaceTeacherDeskIconInfo[i]])
  3178. }, _frag); //
  3179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3182. }
  3183. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3184. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3185. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3186. continue
  3187. }
  3188. _content = $$("div", {
  3189. className: "U_MD_D_KO",
  3190. "onmousedown": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_cocobizTeacherDeskIconInfo[i]]),
  3194. "onclick": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_cocobizTeacherDeskIconInfo[i]])
  3198. }, _frag); //
  3199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3202. }
  3203. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3204. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3205. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3206. continue
  3207. }
  3208. _content = $$("div", {
  3209. className: "U_MD_D_KO",
  3210. "onmousedown": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3214. "onclick": U.UF.C.closure(function (obj) {
  3215. //防止拖动图标即打开了桌面应用
  3216. U.MD.D.click(this, obj);
  3217. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3218. }, _frag); //
  3219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3222. }
  3223. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3224. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3225. _content = $$("div", {
  3226. className: "U_MD_D_KO",
  3227. "onmousedown": U.UF.C.closure(function (obj) {
  3228. //防止拖动图标即打开了桌面应用
  3229. U.MD.D.click(this, obj);
  3230. }, [_gdjgAdminDeskIconInfo[i]]),
  3231. "onclick": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_gdjgAdminDeskIconInfo[i]])
  3235. }, _frag); //
  3236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3239. }
  3240. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3241. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3242. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3243. continue
  3244. }
  3245. _content = $$("div", {
  3246. className: "U_MD_D_KO",
  3247. "onmousedown": U.UF.C.closure(function (obj) {
  3248. //防止拖动图标即打开了桌面应用
  3249. U.MD.D.click(this, obj);
  3250. }, [_gdjgTeacherDeskIconInfo[i]]),
  3251. "onclick": U.UF.C.closure(function (obj) {
  3252. //防止拖动图标即打开了桌面应用
  3253. U.MD.D.click(this, obj);
  3254. }, [_gdjgTeacherDeskIconInfo[i]])
  3255. }, _frag); //
  3256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3259. }
  3260. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3261. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3262. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3263. continue
  3264. }
  3265. _content = $$("div", {
  3266. className: "U_MD_D_KO",
  3267. "onmousedown": U.UF.C.closure(function (obj) {
  3268. //防止拖动图标即打开了桌面应用
  3269. U.MD.D.click(this, obj);
  3270. }, [_szherTeacherDeskIconInfo[i]]),
  3271. "onclick": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_szherTeacherDeskIconInfo[i]])
  3275. }, _frag); //
  3276. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3277. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3278. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3279. }
  3280. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3281. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3282. _content = $$("div", {
  3283. className: "U_MD_D_KO",
  3284. "onmousedown": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_heyuannAdminDeskIconInfo[i]]),
  3288. "onclick": U.UF.C.closure(function (obj) {
  3289. //防止拖动图标即打开了桌面应用
  3290. U.MD.D.click(this, obj);
  3291. }, [_heyuannAdminDeskIconInfo[i]])
  3292. }, _frag); //
  3293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3296. }
  3297. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3298. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3299. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3300. continue
  3301. }
  3302. _content = $$("div", {
  3303. className: "U_MD_D_KO",
  3304. "onmousedown": U.UF.C.closure(function (obj) {
  3305. //防止拖动图标即打开了桌面应用
  3306. U.MD.D.click(this, obj);
  3307. }, [_heyuanTeacherDeskIconInfo[i]]),
  3308. "onclick": U.UF.C.closure(function (obj) {
  3309. //防止拖动图标即打开了桌面应用
  3310. U.MD.D.click(this, obj);
  3311. }, [_heyuanTeacherDeskIconInfo[i]])
  3312. }, _frag); //
  3313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3316. } //
  3317. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3318. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3319. _content = $$("div", {
  3320. className: "U_MD_D_KO",
  3321. "onmousedown": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_dseiAdminDeskIconInfo[i]]),
  3325. "onclick": U.UF.C.closure(function (obj) {
  3326. //防止拖动图标即打开了桌面应用
  3327. U.MD.D.click(this, obj);
  3328. }, [_dseiAdminDeskIconInfo[i]])
  3329. }, _frag); //
  3330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3333. }
  3334. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3335. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3336. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3337. continue
  3338. }
  3339. _content = $$("div", {
  3340. className: "U_MD_D_KO",
  3341. "onmousedown": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_dseiTeacherDeskIconInfo[i]]),
  3345. "onclick": U.UF.C.closure(function (obj) {
  3346. //防止拖动图标即打开了桌面应用
  3347. U.MD.D.click(this, obj);
  3348. }, [_dseiTeacherDeskIconInfo[i]])
  3349. }, _frag); //
  3350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3353. } //
  3354. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3355. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3356. _content = $$("div", {
  3357. className: "U_MD_D_KO",
  3358. "onmousedown": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_chjyjAdminDeskIconInfo[i]]),
  3362. "onclick": U.UF.C.closure(function (obj) {
  3363. //防止拖动图标即打开了桌面应用
  3364. U.MD.D.click(this, obj);
  3365. }, [_chjyjAdminDeskIconInfo[i]])
  3366. }, _frag); //
  3367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3370. }//
  3371. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3372. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3373. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3374. continue
  3375. }
  3376. _content = $$("div", {
  3377. className: "U_MD_D_KO",
  3378. "onmousedown": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_chjyjTeacherDeskIconInfo[i]]),
  3382. "onclick": U.UF.C.closure(function (obj) {
  3383. //防止拖动图标即打开了桌面应用
  3384. U.MD.D.click(this, obj);
  3385. }, [_chjyjTeacherDeskIconInfo[i]])
  3386. }, _frag); //
  3387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3390. }
  3391. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3392. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3393. _content = $$("div", {
  3394. className: "U_MD_D_KO",
  3395. "onmousedown": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_szjkyAdminDeskIconInfo[i]]),
  3399. "onclick": U.UF.C.closure(function (obj) {
  3400. //防止拖动图标即打开了桌面应用
  3401. U.MD.D.click(this, obj);
  3402. }, [_szjkyAdminDeskIconInfo[i]])
  3403. }, _frag); //
  3404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3407. }//
  3408. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3409. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3410. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3411. continue
  3412. }
  3413. _content = $$("div", {
  3414. className: "U_MD_D_KO",
  3415. "onmousedown": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_szjkyTeacherDeskIconInfo[i]]),
  3419. "onclick": U.UF.C.closure(function (obj) {
  3420. //防止拖动图标即打开了桌面应用
  3421. U.MD.D.click(this, obj);
  3422. }, [_szjkyTeacherDeskIconInfo[i]])
  3423. }, _frag); //
  3424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3427. }
  3428. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3429. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3430. _content = $$("div", {
  3431. className: "U_MD_D_KO",
  3432. "onmousedown": U.UF.C.closure(function (obj) {
  3433. //防止拖动图标即打开了桌面应用
  3434. U.MD.D.click(this, obj);
  3435. }, [_x020201AdminDeskIconInfo[i]]),
  3436. "onclick": U.UF.C.closure(function (obj) {
  3437. //防止拖动图标即打开了桌面应用
  3438. U.MD.D.click(this, obj);
  3439. }, [_x020201AdminDeskIconInfo[i]])
  3440. }, _frag); //
  3441. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3442. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3443. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3444. }//
  3445. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3446. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3447. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3448. continue
  3449. }
  3450. _content = $$("div", {
  3451. className: "U_MD_D_KO",
  3452. "onmousedown": U.UF.C.closure(function (obj) {
  3453. //防止拖动图标即打开了桌面应用
  3454. U.MD.D.click(this, obj);
  3455. }, [_x020201TeacherDeskIconInfo[i]]),
  3456. "onclick": U.UF.C.closure(function (obj) {
  3457. //防止拖动图标即打开了桌面应用
  3458. U.MD.D.click(this, obj);
  3459. }, [_x020201TeacherDeskIconInfo[i]])
  3460. }, _frag); //
  3461. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3462. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3463. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3464. }
  3465. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3466. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3467. _content = $$("div", {
  3468. className: "U_MD_D_KO",
  3469. "onmousedown": U.UF.C.closure(function (obj) {
  3470. //防止拖动图标即打开了桌面应用
  3471. U.MD.D.click(this, obj);
  3472. }, [_SCNUETAdminDeskIconInfo[i]]),
  3473. "onclick": U.UF.C.closure(function (obj) {
  3474. //防止拖动图标即打开了桌面应用
  3475. U.MD.D.click(this, obj);
  3476. }, [_SCNUETAdminDeskIconInfo[i]])
  3477. }, _frag); //
  3478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3481. }//
  3482. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3483. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3484. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3485. continue
  3486. }
  3487. _content = $$("div", {
  3488. className: "U_MD_D_KO",
  3489. "onmousedown": U.UF.C.closure(function (obj) {
  3490. //防止拖动图标即打开了桌面应用
  3491. U.MD.D.click(this, obj);
  3492. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3493. "onclick": U.UF.C.closure(function (obj) {
  3494. //防止拖动图标即打开了桌面应用
  3495. U.MD.D.click(this, obj);
  3496. }, [_SCNUETTeacherDeskIconInfo[i]])
  3497. }, _frag); //
  3498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3501. }
  3502. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3503. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3504. _content = $$("div", {
  3505. className: "U_MD_D_KO",
  3506. "onmousedown": U.UF.C.closure(function (obj) {
  3507. //防止拖动图标即打开了桌面应用
  3508. U.MD.D.click(this, obj);
  3509. }, [_futianAdminDeskIconInfo[i]]),
  3510. "onclick": U.UF.C.closure(function (obj) {
  3511. //防止拖动图标即打开了桌面应用
  3512. U.MD.D.click(this, obj);
  3513. }, [_futianAdminDeskIconInfo[i]])
  3514. }, _frag); //
  3515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3518. }
  3519. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3520. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3521. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3522. continue
  3523. }
  3524. _content = $$("div", {
  3525. className: "U_MD_D_KO",
  3526. "onmousedown": U.UF.C.closure(function (obj) {
  3527. //防止拖动图标即打开了桌面应用
  3528. U.MD.D.click(this, obj);
  3529. }, [_futianTeacherDeskIconInfo[i]]),
  3530. "onclick": U.UF.C.closure(function (obj) {
  3531. //防止拖动图标即打开了桌面应用
  3532. U.MD.D.click(this, obj);
  3533. }, [_futianTeacherDeskIconInfo[i]])
  3534. }, _frag); //
  3535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3538. }
  3539. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3540. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3541. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3542. continue
  3543. }
  3544. _content = $$("div", {
  3545. className: "U_MD_D_KO",
  3546. "onmousedown": U.UF.C.closure(function (obj) {
  3547. //防止拖动图标即打开了桌面应用
  3548. U.MD.D.click(this, obj);
  3549. }, [_MingdeTeacherDeskIcon[i]]),
  3550. "onclick": U.UF.C.closure(function (obj) {
  3551. //防止拖动图标即打开了桌面应用
  3552. U.MD.D.click(this, obj);
  3553. }, [_MingdeTeacherDeskIcon[i]])
  3554. }, _frag); //
  3555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3558. }
  3559. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3560. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3561. _content = $$("div", {
  3562. className: "U_MD_D_KO",
  3563. "onmousedown": U.UF.C.closure(function (obj) {
  3564. //防止拖动图标即打开了桌面应用
  3565. U.MD.D.click(this, obj);
  3566. }, [_lhsAdminDesktopIconInfo[i]]),
  3567. "onclick": U.UF.C.closure(function (obj) {
  3568. //防止拖动图标即打开了桌面应用
  3569. U.MD.D.click(this, obj);
  3570. }, [_lhsAdminDesktopIconInfo[i]])
  3571. }, _frag); //
  3572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3575. }
  3576. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3577. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3578. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3579. continue
  3580. }
  3581. _content = $$("div", {
  3582. className: "U_MD_D_KO",
  3583. "onmousedown": U.UF.C.closure(function (obj) {
  3584. //防止拖动图标即打开了桌面应用
  3585. U.MD.D.click(this, obj);
  3586. }, [_lhsteacherDesktopIconInfo[i]]),
  3587. "onclick": U.UF.C.closure(function (obj) {
  3588. //防止拖动图标即打开了桌面应用
  3589. U.MD.D.click(this, obj);
  3590. }, [_lhsteacherDesktopIconInfo[i]])
  3591. }, _frag); //
  3592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3595. }
  3596. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3597. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3598. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3599. continue
  3600. }
  3601. _content = $$("div", {
  3602. className: "U_MD_D_KO",
  3603. "onmousedown": U.UF.C.closure(function (obj) {
  3604. //防止拖动图标即打开了桌面应用
  3605. U.MD.D.click(this, obj);
  3606. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3607. "onclick": U.UF.C.closure(function (obj) {
  3608. //防止拖动图标即打开了桌面应用
  3609. U.MD.D.click(this, obj);
  3610. }, [_zhoujiateacherDesktopIconInfo[i]])
  3611. }, _frag); //
  3612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3615. }
  3616. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3617. for (i = 0; i < _hanDeskIcon.length; i++) {
  3618. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3619. continue
  3620. }
  3621. _content = $$("div", {
  3622. className: "U_MD_D_KO",
  3623. "onmousedown": U.UF.C.closure(function (obj) {
  3624. //防止拖动图标即打开了桌面应用
  3625. U.MD.D.click(this, obj);
  3626. }, [_hanDeskIcon[i]]),
  3627. "onclick": U.UF.C.closure(function (obj) {
  3628. //防止拖动图标即打开了桌面应用
  3629. U.MD.D.click(this, obj);
  3630. }, [_hanDeskIcon[i]])
  3631. }, _frag); //
  3632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3635. }
  3636. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3637. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3638. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3639. continue
  3640. }
  3641. _content = $$("div", {
  3642. className: "U_MD_D_KO",
  3643. "onmousedown": U.UF.C.closure(function (obj) {
  3644. //防止拖动图标即打开了桌面应用
  3645. U.MD.D.click(this, obj);
  3646. }, [_orgStemDeskIcon[i]]),
  3647. "onclick": U.UF.C.closure(function (obj) {
  3648. //防止拖动图标即打开了桌面应用
  3649. U.MD.D.click(this, obj);
  3650. }, [_orgStemDeskIcon[i]])
  3651. }, _frag); //
  3652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3655. }
  3656. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3657. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3658. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3659. continue
  3660. }
  3661. _content = $$("div", {
  3662. className: "U_MD_D_KO",
  3663. "onmousedown": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_szulsDeskIcon[i]]),
  3667. "onclick": U.UF.C.closure(function (obj) {
  3668. //防止拖动图标即打开了桌面应用
  3669. U.MD.D.click(this, obj);
  3670. }, [_szulsDeskIcon[i]])
  3671. }, _frag); //
  3672. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3673. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3674. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3675. }
  3676. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3677. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3678. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3679. continue
  3680. }
  3681. _content = $$("div", {
  3682. className: "U_MD_D_KO",
  3683. "onmousedown": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_orgDesktopIconInfo[i]]),
  3687. "onclick": U.UF.C.closure(function (obj) {
  3688. //防止拖动图标即打开了桌面应用
  3689. U.MD.D.click(this, obj);
  3690. }, [_orgDesktopIconInfo[i]])
  3691. }, _frag); //
  3692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3695. }
  3696. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3697. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3698. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3699. continue
  3700. }
  3701. _content = $$("div", {
  3702. className: "U_MD_D_KO",
  3703. "onmousedown": U.UF.C.closure(function (obj) {
  3704. //防止拖动图标即打开了桌面应用
  3705. U.MD.D.click(this, obj);
  3706. }, [_schoolDesktopIconInfo[i]]),
  3707. "onclick": U.UF.C.closure(function (obj) {
  3708. //防止拖动图标即打开了桌面应用
  3709. U.MD.D.click(this, obj);
  3710. }, [_schoolDesktopIconInfo[i]])
  3711. }, _frag); //
  3712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3715. }
  3716. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3717. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3718. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3719. continue
  3720. }
  3721. _content = $$("div", {
  3722. className: "U_MD_D_KO",
  3723. "onmousedown": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_GMteacherDesktopIconInfo[i]]),
  3727. "onclick": U.UF.C.closure(function (obj) {
  3728. //防止拖动图标即打开了桌面应用
  3729. U.MD.D.click(this, obj);
  3730. }, [_GMteacherDesktopIconInfo[i]])
  3731. }, _frag); //
  3732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3735. }
  3736. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3737. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3738. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3739. continue
  3740. }
  3741. _content = $$("div", {
  3742. className: "U_MD_D_KO",
  3743. "onmousedown": U.UF.C.closure(function (obj) {
  3744. //防止拖动图标即打开了桌面应用
  3745. U.MD.D.click(this, obj);
  3746. }, [_SONGteacherDesktopIconInfo[i]]),
  3747. "onclick": U.UF.C.closure(function (obj) {
  3748. //防止拖动图标即打开了桌面应用
  3749. U.MD.D.click(this, obj);
  3750. }, [_SONGteacherDesktopIconInfo[i]])
  3751. }, _frag); //
  3752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3755. }
  3756. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3757. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3758. _content = $$("div", {
  3759. className: "U_MD_D_KO",
  3760. "onmousedown": U.UF.C.closure(function (obj) {
  3761. //防止拖动图标即打开了桌面应用
  3762. U.MD.D.click(this, obj);
  3763. }, [_GMstudentDesktopIconInfo[i]]),
  3764. "onclick": U.UF.C.closure(function (obj) {
  3765. //防止拖动图标即打开了桌面应用
  3766. U.MD.D.click(this, obj);
  3767. }, [_GMstudentDesktopIconInfo[i]])
  3768. }, _frag); //
  3769. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3770. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3771. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3772. }
  3773. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3774. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3775. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3776. continue
  3777. }
  3778. _content = $$("div", {
  3779. className: "U_MD_D_KO",
  3780. "onmousedown": U.UF.C.closure(function (obj) {
  3781. //防止拖动图标即打开了桌面应用
  3782. U.MD.D.click(this, obj);
  3783. }, [_tcTeacherDeskIconInfo[i]]),
  3784. "onclick": U.UF.C.closure(function (obj) {
  3785. //防止拖动图标即打开了桌面应用
  3786. U.MD.D.click(this, obj);
  3787. }, [_tcTeacherDeskIconInfo[i]])
  3788. }, _frag); //
  3789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3792. }
  3793. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3794. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3795. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3796. continue
  3797. }
  3798. _content = $$("div", {
  3799. className: "U_MD_D_KO",
  3800. "onmousedown": U.UF.C.closure(function (obj) {
  3801. //防止拖动图标即打开了桌面应用
  3802. U.MD.D.click(this, obj);
  3803. }, [_tcOrganizerDeskIconInfo[i]]),
  3804. "onclick": U.UF.C.closure(function (obj) {
  3805. //防止拖动图标即打开了桌面应用
  3806. U.MD.D.click(this, obj);
  3807. }, [_tcOrganizerDeskIconInfo[i]])
  3808. }, _frag); //
  3809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3812. }
  3813. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3814. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3815. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3816. continue
  3817. }
  3818. _content = $$("div", {
  3819. className: "U_MD_D_KO",
  3820. "onmousedown": U.UF.C.closure(function (obj) {
  3821. //防止拖动图标即打开了桌面应用
  3822. U.MD.D.click(this, obj);
  3823. }, [_szscTeacherDeskIconInfo[i]]),
  3824. "onclick": U.UF.C.closure(function (obj) {
  3825. //防止拖动图标即打开了桌面应用
  3826. U.MD.D.click(this, obj);
  3827. }, [_szscTeacherDeskIconInfo[i]])
  3828. }, _frag); //
  3829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3832. }
  3833. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3834. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3835. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3836. continue
  3837. }
  3838. _content = $$("div", {
  3839. className: "U_MD_D_KO",
  3840. "onmousedown": U.UF.C.closure(function (obj) {
  3841. //防止拖动图标即打开了桌面应用
  3842. U.MD.D.click(this, obj);
  3843. }, [_szscOrganizerDeskIconInfo[i]]),
  3844. "onclick": U.UF.C.closure(function (obj) {
  3845. //防止拖动图标即打开了桌面应用
  3846. U.MD.D.click(this, obj);
  3847. }, [_szscOrganizerDeskIconInfo[i]])
  3848. }, _frag); //
  3849. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3850. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3851. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3852. }
  3853. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3854. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3855. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3856. continue
  3857. }
  3858. _content = $$("div", {
  3859. className: "U_MD_D_KO",
  3860. "onmousedown": U.UF.C.closure(function (obj) {
  3861. //防止拖动图标即打开了桌面应用
  3862. U.MD.D.click(this, obj);
  3863. }, [_nsfxTeacherDeskIconInfo[i]]),
  3864. "onclick": U.UF.C.closure(function (obj) {
  3865. //防止拖动图标即打开了桌面应用
  3866. U.MD.D.click(this, obj);
  3867. }, [_nsfxTeacherDeskIconInfo[i]])
  3868. }, _frag); //
  3869. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3870. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3871. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3872. }
  3873. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3874. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3875. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3876. continue
  3877. }
  3878. _content = $$("div", {
  3879. className: "U_MD_D_KO",
  3880. "onmousedown": U.UF.C.closure(function (obj) {
  3881. //防止拖动图标即打开了桌面应用
  3882. U.MD.D.click(this, obj);
  3883. }, [_stiaTeacherDeskIconInfo[i]]),
  3884. "onclick": U.UF.C.closure(function (obj) {
  3885. //防止拖动图标即打开了桌面应用
  3886. U.MD.D.click(this, obj);
  3887. }, [_stiaTeacherDeskIconInfo[i]])
  3888. }, _frag); //
  3889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3892. }
  3893. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3894. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3895. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3896. continue
  3897. }
  3898. _content = $$("div", {
  3899. className: "U_MD_D_KO",
  3900. "onmousedown": U.UF.C.closure(function (obj) {
  3901. //防止拖动图标即打开了桌面应用
  3902. U.MD.D.click(this, obj);
  3903. }, [_szdjgTeacherDeskIconInfo[i]]),
  3904. "onclick": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_szdjgTeacherDeskIconInfo[i]])
  3908. }, _frag); //
  3909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3912. }
  3913. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3914. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3915. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3916. continue
  3917. }
  3918. _content = $$("div", {
  3919. className: "U_MD_D_KO",
  3920. "onmousedown": U.UF.C.closure(function (obj) {
  3921. //防止拖动图标即打开了桌面应用
  3922. U.MD.D.click(this, obj);
  3923. }, [_x010607TeacherDeskIconInfo[i]]),
  3924. "onclick": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_x010607TeacherDeskIconInfo[i]])
  3928. }, _frag); //
  3929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3932. }
  3933. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3934. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3935. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3936. continue
  3937. }
  3938. _content = $$("div", {
  3939. className: "U_MD_D_KO",
  3940. "onmousedown": U.UF.C.closure(function (obj) {
  3941. //防止拖动图标即打开了桌面应用
  3942. U.MD.D.click(this, obj);
  3943. }, [_xhlyTeacherDeskIconInfo[i]]),
  3944. "onclick": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_xhlyTeacherDeskIconInfo[i]])
  3948. }, _frag); //
  3949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3952. }
  3953. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3954. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3955. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3956. continue
  3957. }
  3958. _content = $$("div", {
  3959. className: "U_MD_D_KO",
  3960. "onmousedown": U.UF.C.closure(function (obj) {
  3961. //防止拖动图标即打开了桌面应用
  3962. U.MD.D.click(this, obj);
  3963. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3964. "onclick": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3968. }, _frag); //
  3969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3972. }
  3973. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3974. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3975. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3976. continue
  3977. }
  3978. _content = $$("div", {
  3979. className: "U_MD_D_KO",
  3980. "onmousedown": U.UF.C.closure(function (obj) {
  3981. //防止拖动图标即打开了桌面应用
  3982. U.MD.D.click(this, obj);
  3983. }, [_x010503TeacherDeskIconInfo[i]]),
  3984. "onclick": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_x010503TeacherDeskIconInfo[i]])
  3988. }, _frag); //
  3989. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3990. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3991. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3992. }
  3993. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3994. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3995. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3996. continue
  3997. }
  3998. _content = $$("div", {
  3999. className: "U_MD_D_KO",
  4000. "onmousedown": U.UF.C.closure(function (obj) {
  4001. //防止拖动图标即打开了桌面应用
  4002. U.MD.D.click(this, obj);
  4003. }, [_x010504TeacherDeskIconInfo[i]]),
  4004. "onclick": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_x010504TeacherDeskIconInfo[i]])
  4008. }, _frag); //
  4009. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4010. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4011. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4012. }
  4013. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4014. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4015. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4016. continue
  4017. }
  4018. _content = $$("div", {
  4019. className: "U_MD_D_KO",
  4020. "onmousedown": U.UF.C.closure(function (obj) {
  4021. //防止拖动图标即打开了桌面应用
  4022. U.MD.D.click(this, obj);
  4023. }, [_x010204TeacherDeskIconInfo[i]]),
  4024. "onclick": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_x010204TeacherDeskIconInfo[i]])
  4028. }, _frag); //
  4029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4032. }
  4033. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4034. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4035. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4036. continue
  4037. }
  4038. _content = $$("div", {
  4039. className: "U_MD_D_KO",
  4040. "onmousedown": U.UF.C.closure(function (obj) {
  4041. //防止拖动图标即打开了桌面应用
  4042. U.MD.D.click(this, obj);
  4043. }, [_trailTeacherDeskIconInfo[i]]),
  4044. "onclick": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_trailTeacherDeskIconInfo[i]])
  4048. }, _frag); //
  4049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4052. }
  4053. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4054. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4055. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4056. continue
  4057. }
  4058. _content = $$("div", {
  4059. className: "U_MD_D_KO",
  4060. "onmousedown": U.UF.C.closure(function (obj) {
  4061. //防止拖动图标即打开了桌面应用
  4062. U.MD.D.click(this, obj);
  4063. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4064. "onclick": U.UF.C.closure(function (obj) {
  4065. //防止拖动图标即打开了桌面应用
  4066. U.MD.D.click(this, obj);
  4067. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4068. }, _frag); //
  4069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4072. }
  4073. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4074. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4075. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4076. continue
  4077. }
  4078. _content = $$("div", {
  4079. className: "U_MD_D_KO",
  4080. "onmousedown": U.UF.C.closure(function (obj) {
  4081. //防止拖动图标即打开了桌面应用
  4082. U.MD.D.click(this, obj);
  4083. }, [_x010608TeacherDeskIconInfo[i]]),
  4084. "onclick": U.UF.C.closure(function (obj) {
  4085. //防止拖动图标即打开了桌面应用
  4086. U.MD.D.click(this, obj);
  4087. }, [_x010608TeacherDeskIconInfo[i]])
  4088. }, _frag); //
  4089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4092. }
  4093. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4094. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4095. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4096. continue
  4097. }
  4098. _content = $$("div", {
  4099. className: "U_MD_D_KO",
  4100. "onmousedown": U.UF.C.closure(function (obj) {
  4101. //防止拖动图标即打开了桌面应用
  4102. U.MD.D.click(this, obj);
  4103. }, [_x010611TeacherDeskIconInfo[i]]),
  4104. "onclick": U.UF.C.closure(function (obj) {
  4105. //防止拖动图标即打开了桌面应用
  4106. U.MD.D.click(this, obj);
  4107. }, [_x010611TeacherDeskIconInfo[i]])
  4108. }, _frag); //
  4109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4112. }
  4113. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4114. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4115. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4116. continue
  4117. }
  4118. _content = $$("div", {
  4119. className: "U_MD_D_KO",
  4120. "onmousedown": U.UF.C.closure(function (obj) {
  4121. //防止拖动图标即打开了桌面应用
  4122. U.MD.D.click(this, obj);
  4123. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4124. "onclick": U.UF.C.closure(function (obj) {
  4125. //防止拖动图标即打开了桌面应用
  4126. U.MD.D.click(this, obj);
  4127. }, [_tianyuanTeacherDeskIconInfo[i]])
  4128. }, _frag); //
  4129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4132. }
  4133. } else {
  4134. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4135. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4136. continue
  4137. }
  4138. _content = $$("div", {
  4139. className: "U_MD_D_KO",
  4140. "onmousedown": U.UF.C.closure(function (obj) {
  4141. //防止拖动图标即打开了桌面应用
  4142. U.MD.D.click(this, obj);
  4143. }, [_teacherDesktopIconInfo[i]]),
  4144. "onclick": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_teacherDesktopIconInfo[i]])
  4148. }, _frag); //
  4149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4152. }
  4153. }
  4154. } else {
  4155. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4156. _content = $$("div", {
  4157. className: "U_MD_D_KO",
  4158. style: { 'width': '124px', 'height': '145px' },
  4159. "onmousedown": U.UF.C.closure(function (obj) {
  4160. //防止拖动图标即打开了桌面应用
  4161. U.MD.D.click(this, obj);
  4162. }, [_easyDesktopIconInfo[i]]),
  4163. "onclick": U.UF.C.closure(function (obj) {
  4164. //防止拖动图标即打开了桌面应用
  4165. U.MD.D.click(this, obj);
  4166. }, [_easyDesktopIconInfo[i]])
  4167. }, _frag); //
  4168. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4171. }
  4172. }
  4173. if (type == 1) {
  4174. //加载好后给图标定位
  4175. U.MD.D.iconPostion($(_frag).Child());
  4176. } else {
  4177. //加载好后给图标定位
  4178. U.MD.D.iconPostion2($(_frag).Child());
  4179. }
  4180. //把图标加载到页面
  4181. el.appendChild(_frag);
  4182. }
  4183. /**
  4184. * 显示任务栏
  4185. *
  4186. * @param {element} 桌面元素
  4187. */
  4188. U.MD.D.I.displayTaskbar = function (el) {
  4189. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4190. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4191. //任务栏位置变化
  4192. U.selectEl(el).css({ "bottom": "0px" });
  4193. //桌面位置变话
  4194. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4195. }
  4196. }
  4197. //#region 桌面图标拖动逻辑
  4198. /**
  4199. * 桌面排列图标
  4200. *
  4201. * @param {element} 桌面元素
  4202. * @param {object} 上下相距的距离
  4203. * @param {object} 左右相距的距离
  4204. * @return {object} 命名空间
  4205. */
  4206. U.MD.D.iconPostion = function (childs, top, left) {
  4207. var i; //用于循环处理
  4208. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4209. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4210. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4211. for (i = 0; i < childs.length; i++) {
  4212. //如果竖排top超过了范围处理
  4213. if (top + 95 > US.height - 10) {
  4214. //left超过了页面范围处理,则向上重叠打印处理
  4215. if ((left + 180) > US.width) {
  4216. top -= 110;
  4217. left -= 90;
  4218. }
  4219. //没有超过范围,那么left+90添加到下一个竖排打印
  4220. else {
  4221. left += 90;
  4222. top = 15;
  4223. };
  4224. }
  4225. //给图标的位置赋值
  4226. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4227. if (i < childs.length - 1) {
  4228. //页面图标每次向下加95
  4229. top += 95;
  4230. }
  4231. }
  4232. //返回最后调用的图标的位置
  4233. return [top, left];
  4234. }
  4235. /**
  4236. * 桌面排列图标
  4237. *
  4238. * @param {element} 桌面元素
  4239. * @param {object} 上下相距的距离
  4240. * @param {object} 左右相距的距离
  4241. * @return {object} 命名空间
  4242. */
  4243. U.MD.D.iconPostion2 = function (childs, top, left) {
  4244. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4245. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4246. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4247. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4248. for (i = 0; i < childs.length; i++) {
  4249. //如果竖排top超过了范围处理
  4250. if (left + 150 > US.width - 10) {
  4251. //left超过了页面范围处理,则向上重叠打印处理
  4252. if ((top + 180) > US.Height) {
  4253. top -= 150;
  4254. left -= 150;
  4255. }
  4256. //没有超过范围,那么left+90添加到下一个竖排打印
  4257. else {
  4258. top += 150;
  4259. left = ol;
  4260. };
  4261. }
  4262. //给图标的位置赋值
  4263. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4264. if (i < childs.length - 1) {
  4265. //页面图标每次向下加95
  4266. left += 150;
  4267. }
  4268. }
  4269. //返回最后调用的图标的位置
  4270. return [top, left];
  4271. }
  4272. /**
  4273. * 桌面点击事件逻辑
  4274. *
  4275. * @param {element} 桌面元素
  4276. * @param {object} 上下相距的距离
  4277. * @param {object} 左右相距的距离
  4278. * @return {object} 命名空间
  4279. */
  4280. U.MD.D.click = function (el, obj) {
  4281. var _buttonnumber = event.button; //点击的按钮的事件值
  4282. var _userinfo = US.userInfo;
  4283. U.UF.EV.stopBubble(); //阻止向上冒泡
  4284. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4285. if (_buttonnumber < 2) {
  4286. //如果是click事件的处理
  4287. if (event.type == "click") {
  4288. //如果元素在mousemove事件中没有移动则出发click事件
  4289. if (!U.MD.D.I.IsDrag) {
  4290. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4291. U.alert("请先登录您的账号!");
  4292. setTimeout(() => {
  4293. U.MD.U.L.login();
  4294. }, 2000);
  4295. } else {
  4296. //打开应用处理
  4297. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4298. }
  4299. }
  4300. }
  4301. //如果是mouse事件的处理
  4302. else {
  4303. if (US.Config.type == '1') {
  4304. //拖动处理,添加拖动和拖动结束事件
  4305. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4306. }
  4307. }
  4308. U.MD.D.I.IsDrag = false;
  4309. }
  4310. }
  4311. /**
  4312. * 拖动的处理
  4313. *
  4314. */
  4315. U.MD.D.iconMove = function () {
  4316. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4317. U.MD.D.I.IsDrag = true;
  4318. }
  4319. /**
  4320. * 拖动结束后,这里是定位处理,以网状的形式定位
  4321. *
  4322. * @param {element} 拖动的元素
  4323. * @return {object} 命名空间
  4324. */
  4325. U.MD.D.iconUp = function (el) {
  4326. var _top = 15,
  4327. _left = 20,
  4328. _margin,
  4329. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4330. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4331. if (_positioninfo["OT"] > 15) {
  4332. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4333. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4334. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4335. }
  4336. if (_positioninfo["OL"] > 20) {
  4337. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4338. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4339. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4340. }
  4341. //while循环判断么一个重叠的元素
  4342. do {
  4343. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4344. _top = _positioninfo[0] + 95; //得到定位后的top
  4345. _left = _positioninfo[1]; //得到定位后的left
  4346. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4347. }
  4348. /**
  4349. * 判断拖动后图标是否重叠
  4350. *
  4351. * @param {element} 拖动的元素
  4352. * @param {element} 桌面所有的元素
  4353. * @param {array} 拖动元素的位置
  4354. ----------[0] 上 top
  4355. ----------[1] 左 left
  4356. * @return {object} 命名空间
  4357. */
  4358. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4359. //循环所有的图标
  4360. for (var i = 0; i < childs.length; i++) {
  4361. //判断有没有和该图标诶子重叠的元素
  4362. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4363. return childs[i]; //如果有返回
  4364. }
  4365. }
  4366. }
  4367. //#endregion
  4368. //#endregion
  4369. //#region 桌面应用
  4370. /**
  4371. * 打开应用
  4372. *
  4373. * @param {string} 类型
  4374. -----------------Disk 网盘系统
  4375. -----------------PDisk 学习系统网盘
  4376. -----------------Poto 图片
  4377. -----------------Video 视频
  4378. -----------------Music 音乐
  4379. -----------------Word word
  4380. -----------------Excel excel
  4381. -----------------Txt 记事本
  4382. -----------------PB 学习系统
  4383. -----------------Blog 朋友圈系统
  4384. -----------------FTP ftp系统
  4385. -----------------Group 好友群
  4386. -----------------SY 首页系统
  4387. -----------------Set 个人设置
  4388. -----------------XSet 系统设置
  4389. -----------------App 我们所有的app
  4390. -----------------BC c.1473.cn 平台
  4391. -----------------CWeb d.1473.cn 变成平台
  4392. -----------------其他的外联系统 我们统一用iframe打开
  4393. * @param {array} 类型
  4394. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4395. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4396. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4397. 如果第一个参数为其他,则无第二个参数
  4398. * @returns {array}
  4399. */
  4400. window.addEventListener('message', function (e) { // 监听 message 事件
  4401. // alert(e.data.type);
  4402. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4403. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4404. //3是展示全部阶段 2学生 1老师 4专家
  4405. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4406. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4407. //3是展示全部阶段 2学生 1老师 4专家
  4408. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4409. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4410. //3是展示全部阶段 2学生 1老师 4专家
  4411. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4412. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4413. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4414. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4415. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4416. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4417. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4418. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4419. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4420. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4421. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4422. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4423. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4424. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4425. //3是展示全部阶段 2学生 1老师 4专家
  4426. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4427. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4428. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4429. U.MD.D.I.selectUser();
  4430. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4431. var _formel = document.getElementById("study");
  4432. U.UF.F.windowZooming(_formel);
  4433. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4434. var _formel = document.getElementById("studyDetail");
  4435. U.UF.F.windowZooming(_formel);
  4436. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4437. var _formel = document.getElementById("studyDetail");
  4438. U.UF.F.windowZooming(_formel);
  4439. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4440. var _formel = document.getElementById("studentStudy");
  4441. U.UF.F.windowZooming(_formel);
  4442. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4443. // var _formel = document.getElementById("study");
  4444. //如果最大化了,那么就把他缩小
  4445. // if (_formel.ismaximize) {
  4446. // return;
  4447. // }
  4448. // U.UF.F.windowZooming(_formel);
  4449. // U.UF.F.topWindow(_formel);
  4450. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4451. // var _formel = document.getElementById("studyDetail");
  4452. //如果最大化了,那么就把他缩小
  4453. // if (_formel.ismaximize) {
  4454. // return;
  4455. // }
  4456. // U.UF.F.windowZooming(_formel);
  4457. // U.UF.F.topWindow(_formel);
  4458. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4459. // var _formel = document.getElementById("studentStudy");
  4460. // if (_formel.ismaximize) {
  4461. // return;
  4462. // }
  4463. // U.UF.F.windowZooming(_formel);
  4464. // U.UF.F.topWindow(_formel);
  4465. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4466. var _formel = document.getElementById("study");
  4467. // if (_formel.ismaximize) {
  4468. // return;
  4469. // }
  4470. // U.UF.F.windowZooming(_formel);
  4471. U.UF.F.topWindow(_formel);
  4472. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4473. var _formel = document.getElementById("studentIndex");
  4474. U.UF.F.windowZooming(_formel);
  4475. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4476. var _formel = document.getElementById("studyDetailS");
  4477. U.UF.F.windowZooming(_formel);
  4478. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4479. var _formel = document.getElementById("studioIndex");
  4480. U.UF.F.windowZooming(_formel);
  4481. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4482. var _formel = document.getElementById("studyDetailStudio");
  4483. U.UF.F.windowZooming(_formel);
  4484. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4485. var _formel = document.getElementById("studyDetailStudio");
  4486. U.UF.F.windowZooming(_formel);
  4487. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4488. var _formel = document.getElementById("studyDetailNT");
  4489. U.UF.F.windowZooming(_formel);
  4490. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4491. var _formel = document.getElementById("studyDetailS");
  4492. U.UF.F.windowZooming(_formel);
  4493. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4494. var _formel = document.getElementById("studyDetailS");
  4495. U.UF.F.topWindow(_formel);
  4496. } else if (e.data.tools && e.data.tools == "1") {
  4497. // U.MD.D.I.openApplication("whiteboard")
  4498. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4499. } else if (e.data.tools && e.data.tools == "2") {
  4500. U.MD.D.I.openApplication("note")
  4501. } else if (e.data.tools && e.data.tools == "3") {
  4502. // U.MD.D.I.openApplication("mind")
  4503. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4504. } else if (e.data.tools && e.data.tools == "4") {
  4505. U.MD.D.I.openApplication("investigation")
  4506. } else if (e.data.tools && e.data.tools == "6") {
  4507. // U.MD.D.I.openApplication("doc")
  4508. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4509. } else if (e.data.tools && e.data.tools == "7") {
  4510. // U.MD.D.I.openApplication("mindNetwork")
  4511. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4512. } else if (e.data.tools && e.data.tools == "8") {
  4513. U.MD.D.I.openApplication("library")
  4514. } else if (e.data.tools && e.data.tools == "17") {
  4515. U.MD.D.I.openApplication("stuLibrary")
  4516. } else if (e.data.tools && e.data.tools == "18") {
  4517. U.MD.D.I.openApplication("train")
  4518. } else if (e.data.tools && e.data.tools == "21") {
  4519. U.MD.D.I.openApplication("program")
  4520. } else if (e.data.tools && e.data.tools == "22") {
  4521. U.MD.D.I.openApplication("AIprogram2")
  4522. } else if (e.data.tools && e.data.tools == "23") {
  4523. U.MD.D.I.openApplication("Pythonprogram")
  4524. } else if (e.data.tools && e.data.tools == "24") {
  4525. U.MD.D.I.openApplication("AIprogram")
  4526. } else if (e.data.tools && e.data.tools == "25") {
  4527. U.MD.D.I.openApplication("sys")
  4528. } else if (e.data.tools && e.data.tools == "26") {
  4529. // U.MD.D.I.openApplication("courseDesign")
  4530. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4531. } else if (e.data.tools && e.data.tools == "31") {
  4532. U.MD.D.I.openApplication("netWorkPanel")
  4533. } else if (e.data.tools && e.data.tools == "32") {
  4534. U.MD.D.I.openApplication("codeEdit")
  4535. } else if (e.data.tools && e.data.tools == "57") {
  4536. U.MD.D.I.openApplication("CocoPi")
  4537. } else if (e.data.tools && e.data.tools == "63") {
  4538. U.MD.D.I.openApplication("Wood")
  4539. } else if (e.data.tools && e.data.tools == "58") {
  4540. U.MD.D.I.openApplication("car")
  4541. } else if (e.data.tools && e.data.tools == "59") {
  4542. U.MD.D.I.openApplication("lineSearch")
  4543. } else if (e.data.tools && e.data.tools == "60") {
  4544. U.MD.D.I.openApplication("deepLearning")
  4545. } else if (e.data.tools && e.data.tools == "61") {
  4546. U.MD.D.I.openApplication("allHistory")
  4547. } else if (e.data.tools && e.data.tools == "28") {
  4548. U.MD.D.I.openApplication("translation")
  4549. } else if (e.data.tools && e.data.tools == "37") {
  4550. U.MD.D.I.openApplication("mohe")
  4551. } else if (e.data.tools && e.data.tools == "38") {
  4552. U.MD.D.I.openApplication("24game")
  4553. } else if (e.data.tools && e.data.tools == "39") {
  4554. U.MD.D.I.openApplication("GeoGebra")
  4555. } else if (e.data.tools && e.data.tools == "43") {
  4556. U.MD.D.I.openApplication("studentEvaluate")
  4557. } else if (e.data.tools && e.data.tools == "44") {
  4558. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4559. } else if (e.data.tools && e.data.tools == "46") {
  4560. U.MD.D.I.openApplication("project")
  4561. } else if (e.data.tools && e.data.tools == "71") {
  4562. U.MD.D.I.openApplication("aigptCourse")
  4563. } else if (e.data.tools && e.data.tools == "1s") {
  4564. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4565. } else if (e.data.tools && e.data.tools == "3s") {
  4566. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4567. } else if (e.data.tools && e.data.tools == "6s") {
  4568. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4569. } else if (e.data.tools && e.data.tools == "1studio") {
  4570. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4571. } else if (e.data.tools && e.data.tools == "3studio") {
  4572. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4573. } else if (e.data.tools && e.data.tools == "6studio") {
  4574. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4575. } else if (e.data.tools && e.data.tools == "3y") {
  4576. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4577. } else if (e.data.tools && e.data.tools == "1y") {
  4578. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4579. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4580. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4581. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4582. U.MD.D.I.openApplication("AIAnalyse")
  4583. } else if (e.data.tools && e.data.tools == "1teacher") {
  4584. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4585. } else if (e.data.tools && e.data.tools == "3teacher") {
  4586. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4587. } else if (e.data.tools && e.data.tools == "7teacher") {
  4588. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4589. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4590. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4591. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4592. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4593. } else if (e.data.tools && e.data.tools == "1E") {
  4594. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4595. } else if (e.data.tools && e.data.tools == "3E") {
  4596. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4597. } else if (e.data.tools && e.data.tools == "57y") {
  4598. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4599. } else if (e.data.tools && e.data.tools == "57u") {
  4600. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4601. } else if (e.data.tools && e.data.tools == "57teacher") {
  4602. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4603. } else if (e.data.tools && e.data.tools == "64") {
  4604. U.MD.D.I.openApplication("AIChat")
  4605. } else if (e.data.tools && e.data.tools == "66") {
  4606. U.MD.D.I.openApplication("formulaEdi")
  4607. } else if (e.data.tools && e.data.tools == "67") {
  4608. U.MD.D.I.openApplication("molStr")
  4609. } else if (e.data.tools && e.data.tools == "68") {
  4610. U.MD.D.I.openApplication("timeAxis")
  4611. } else if (e.data.tools && e.data.tools == "openCourse") {
  4612. let _data = {
  4613. typea: e.data.typea || '',
  4614. typeb: e.data.typeb || '',
  4615. typed: e.data.typed || '',
  4616. }
  4617. U.MD.D.I.openInApplication("index", _data)
  4618. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4619. let _data = {
  4620. classid: e.data.classid || '',
  4621. }
  4622. U.MD.D.I.openInApplication("dataClass", _data)
  4623. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4624. let _data = {
  4625. cid: e.data.cid || '',
  4626. gid: e.data.gid || '',
  4627. }
  4628. U.MD.D.I.openInApplication("opencCscl", _data)
  4629. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4630. U.MD.D.I.openApplication("dataBoardTest")
  4631. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4632. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4633. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4634. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4635. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4636. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4637. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4638. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4639. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4640. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4641. }else if (e.data.tools && e.data.tools == "loginSz") {
  4642. U.MD.D.I.openInApplication("loginSz")
  4643. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4644. if($('#classroom_observation_board')[0]){
  4645. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4646. }
  4647. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4648. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4649. if($('#classroom_observation_ob_comment')[0]){
  4650. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4651. }
  4652. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4653. }
  4654. });
  4655. U.MD.D.I.selectUser = function () {
  4656. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4657. if (res.value[0].length > 0) {
  4658. US.userInfo = res.value[0][0];
  4659. $(".userName")[0].innerHTML = US.userInfo.username;
  4660. }
  4661. }, [], { "type": "GET", "withCredentials": true });
  4662. }
  4663. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4664. var _userinfo = US.userInfo, //登录用户信息
  4665. _userid = US.userInfo.userid, //登录用户id
  4666. _oid = _userinfo.organizeid,
  4667. _type = US.userInfo.type,
  4668. _org = US.userInfo.org,
  4669. _role = US.userInfo.role,
  4670. _classId = US.userInfo.classid;
  4671. if (_type == 4) {
  4672. tType = 4
  4673. }
  4674. switch (str) {
  4675. case "studyDetailNT": //无终端模式
  4676. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4677. setTimeout(() => {
  4678. U.MD.U.L.login();
  4679. }, 2000);
  4680. } else {
  4681. _formdiv = new U.UF.UI.form(
  4682. "课程详情",
  4683. $$("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 }), {
  4684. "id": "studyDetailNT",
  4685. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4686. "onresize": function () { }
  4687. }, {
  4688. closecallback: function () { }
  4689. }, { "style": { "height": "36px" } }).form; //创建窗体
  4690. _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); } }
  4691. break;
  4692. }
  4693. case "studyDetail":
  4694. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4695. setTimeout(() => {
  4696. U.MD.U.L.login();
  4697. }, 2000);
  4698. } else {
  4699. _formdiv = new U.UF.UI.form(
  4700. "课程详情",
  4701. $$("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 }), {
  4702. "id": "studyDetail",
  4703. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4704. "onresize": function () { }
  4705. }, {
  4706. closecallback: function () { }
  4707. }, { "style": { "height": "36px" } }).form; //创建窗体
  4708. _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); } }
  4709. break;
  4710. }
  4711. case "studyDetailTrain":
  4712. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4713. setTimeout(() => {
  4714. U.MD.U.L.login();
  4715. }, 2000);
  4716. } else {
  4717. _formdiv = new U.UF.UI.form(
  4718. "培训详情",
  4719. $$("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 }), {
  4720. "id": "studyDetailTrain",
  4721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4722. "onresize": function () { }
  4723. }, {
  4724. closecallback: function () { }
  4725. }, { "style": { "height": "36px" } }).form; //创建窗体
  4726. _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); } }
  4727. break;
  4728. }
  4729. case "studyDetailS":
  4730. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4731. setTimeout(() => {
  4732. U.MD.U.L.login();
  4733. }, 2000);
  4734. } else {
  4735. _formdiv = new U.UF.UI.form(
  4736. "项目详情",
  4737. $$("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 }), {
  4738. "id": "studyDetailS",
  4739. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4740. "onresize": function () { }
  4741. }, {
  4742. closecallback: function () { }
  4743. }, { "style": { "height": "36px" } }).form; //创建窗体
  4744. _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); } }
  4745. break;
  4746. }
  4747. case "studyDetailStudio":
  4748. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4749. setTimeout(() => {
  4750. U.MD.U.L.login();
  4751. }, 2000);
  4752. } else {
  4753. _formdiv = new U.UF.UI.form(
  4754. "工作详情",
  4755. $$("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 }), {
  4756. "id": "studyDetailStudio",
  4757. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4758. "onresize": function () { }
  4759. }, {
  4760. closecallback: function () { }
  4761. }, { "style": { "height": "36px" } }).form; //创建窗体
  4762. _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); } }
  4763. break;
  4764. }
  4765. case "studyDetailS5":
  4766. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4767. setTimeout(() => {
  4768. U.MD.U.L.login();
  4769. }, 2000);
  4770. } else {
  4771. _formdiv = new U.UF.UI.form(
  4772. "项目详情",
  4773. $$("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 }), {
  4774. "id": "studyDetailS",
  4775. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4776. "onresize": function () { }
  4777. }, {
  4778. closecallback: function () { }
  4779. }, { "style": { "height": "36px" } }).form; //创建窗体
  4780. _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); } }
  4781. break;
  4782. }
  4783. case "studyDetailGM":
  4784. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4785. setTimeout(() => {
  4786. U.MD.U.L.login();
  4787. }, 2000);
  4788. } else {
  4789. _formdiv = new U.UF.UI.form(
  4790. "课程详情",
  4791. $$("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 }), {
  4792. "id": "studyDetail",
  4793. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4794. "onresize": function () { }
  4795. }, {
  4796. closecallback: function () { }
  4797. }, { "style": { "height": "36px" } }).form; //创建窗体
  4798. _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); } }
  4799. break;
  4800. }
  4801. case "hanUrl":
  4802. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4803. setTimeout(() => {
  4804. U.MD.U.L.login();
  4805. }, 2000);
  4806. } else {
  4807. _formdiv = new U.UF.UI.form(
  4808. "汉字宫",
  4809. $$("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" }), {
  4810. "id": "hanUrl",
  4811. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4812. "onresize": function () { }
  4813. }, {
  4814. closecallback: function () { }
  4815. }, { "style": { "height": "36px" } }).form; //创建窗体
  4816. _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); } }
  4817. break;
  4818. }
  4819. case "index":
  4820. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4821. setTimeout(() => {
  4822. U.MD.U.L.login();
  4823. }, 2000);
  4824. } else {
  4825. _formdiv = new U.UF.UI.form(
  4826. "课程中心",
  4827. $$("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 }), {
  4828. "id": "study",
  4829. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4830. "onresize": function () { }
  4831. }, {
  4832. closecallback: function () { }
  4833. }, { "style": { "height": "36px" } }).form; //创建窗体
  4834. _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); } }
  4835. break;
  4836. }
  4837. case "dataClass":
  4838. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4839. setTimeout(() => {
  4840. U.MD.U.L.login();
  4841. }, 2000);
  4842. } else {
  4843. _formdiv = new U.UF.UI.form(
  4844. "数据报告",
  4845. $$("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 }), {
  4846. "id": "dataClass",
  4847. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4848. "onresize": function () { }
  4849. }, {
  4850. closecallback: function () { }
  4851. }, { "style": { "height": "36px" } }).form; //创建窗体
  4852. _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); } }
  4853. break;
  4854. }
  4855. case "opencCscl":
  4856. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4857. setTimeout(() => {
  4858. U.MD.U.L.login();
  4859. }, 2000);
  4860. } else {
  4861. _formdiv = new U.UF.UI.form(
  4862. "协同建构",
  4863. $$("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 }), {
  4864. "id": "futureClass",
  4865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4866. "onresize": function () { }
  4867. }, {
  4868. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4869. }, { "style": { "height": "36px" } }).form; //创建窗体
  4870. _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); } }
  4871. break;
  4872. }
  4873. case "openCourseUpdate":
  4874. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4875. setTimeout(() => {
  4876. U.MD.U.L.login();
  4877. }, 2000);
  4878. } else {
  4879. _formdiv = new U.UF.UI.form(
  4880. "课程管理",
  4881. $$("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 }), {
  4882. "id": "openCourseUpdate",
  4883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4884. "onresize": function () { }
  4885. }, {
  4886. closecallback: function () { }
  4887. }, { "style": { "height": "36px" } }).form; //创建窗体
  4888. break;
  4889. }
  4890. case "openNewCourseUpdate":
  4891. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4892. setTimeout(() => {
  4893. U.MD.U.L.login();
  4894. }, 2000);
  4895. } else {
  4896. _formdiv = new U.UF.UI.form(
  4897. "课程管理",
  4898. $$("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 }), {
  4899. "id": "openCourseUpdate",
  4900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4901. "onresize": function () { }
  4902. }, {
  4903. closecallback: function () { }
  4904. }, { "style": { "height": "36px" } }).form; //创建窗体
  4905. break;
  4906. }
  4907. case "openCourseEUpdate":
  4908. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4909. setTimeout(() => {
  4910. U.MD.U.L.login();
  4911. }, 2000);
  4912. } else {
  4913. _formdiv = new U.UF.UI.form(
  4914. "课程管理",
  4915. $$("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 }), {
  4916. "id": "openCourseUpdate",
  4917. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4918. "onresize": function () { }
  4919. }, {
  4920. closecallback: function () { }
  4921. }, { "style": { "height": "36px" } }).form; //创建窗体
  4922. break;
  4923. }
  4924. case "openCourseAiUpdate":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4933. "id": "openCourseUpdate",
  4934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4935. "onresize": function () { }
  4936. }, {
  4937. closecallback: function () { }
  4938. }, { "style": { "height": "36px" } }).form; //创建窗体
  4939. break;
  4940. }
  4941. case "openCourseNewUpdate":
  4942. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4943. setTimeout(() => {
  4944. U.MD.U.L.login();
  4945. }, 2000);
  4946. } else {
  4947. _formdiv = new U.UF.UI.form(
  4948. "课程管理",
  4949. $$("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 }), {
  4950. "id": "openCourseUpdate",
  4951. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4952. "onresize": function () { }
  4953. }, {
  4954. closecallback: function () { }
  4955. }, { "style": { "height": "36px" } }).form; //创建窗体
  4956. break;
  4957. }
  4958. case "inviteLoginSz":
  4959. _formdiv = new U.UF.UI.form(
  4960. "随机码登录",
  4961. $$("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 }), {
  4962. "id": "loginSz",
  4963. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4964. "onresize": function () { }
  4965. }, {
  4966. closecallback: function () { }
  4967. }, { "style": { "height": "36px" } }).form; //创建窗体
  4968. break;
  4969. case "loginSz":
  4970. _formdiv = new U.UF.UI.form(
  4971. "教师登录",
  4972. $$("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" }), {
  4973. "id": "loginSz",
  4974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4975. "onresize": function () { }
  4976. }, {
  4977. closecallback: function () { }
  4978. }, { "style": { "height": "36px" } }).form; //创建窗体
  4979. break;
  4980. case "teacher":
  4981. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4982. setTimeout(() => {
  4983. U.MD.U.L.login();
  4984. }, 2000);
  4985. } else {
  4986. _formdiv = new U.UF.UI.form(
  4987. "教师管理",
  4988. $$("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 }), {
  4989. "id": "teacher",
  4990. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4991. "onresize": function () { }
  4992. }, {
  4993. closecallback: function () { }
  4994. }, { "style": { "height": "36px" } }).form; //创建窗体
  4995. break;
  4996. }
  4997. case "dataBoardSZArea":
  4998. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4999. setTimeout(() => {
  5000. U.MD.U.L.login();
  5001. }, 2000);
  5002. } else {
  5003. _formdiv = new U.UF.UI.form(
  5004. "综合数据看板",
  5005. $$("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 }), {
  5006. "id": "dataBoardSZArea",
  5007. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5008. "onresize": function () { }
  5009. }, {
  5010. closecallback: function () { }
  5011. }, { "style": { "height": "36px" } }).form; //创建窗体
  5012. break;
  5013. }
  5014. case "dataBoardSZCity":
  5015. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5016. setTimeout(() => {
  5017. U.MD.U.L.login();
  5018. }, 2000);
  5019. } else {
  5020. _formdiv = new U.UF.UI.form(
  5021. "综合数据看板",
  5022. $$("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 }), {
  5023. "id": "dataBoardSZCity",
  5024. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5025. "onresize": function () { }
  5026. }, {
  5027. closecallback: function () { }
  5028. }, { "style": { "height": "36px" } }).form; //创建窗体
  5029. break;
  5030. }
  5031. case "classroom_observation_board":
  5032. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5033. setTimeout(() => {
  5034. U.MD.U.L.login();
  5035. }, 2000);
  5036. } else {
  5037. _formdiv = new U.UF.UI.form(
  5038. "课堂观察",
  5039. $$("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 }), {
  5040. "id": "classroom_observation_board",
  5041. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5042. "onresize": function () { }
  5043. }, {
  5044. closecallback: function () { }
  5045. }, { "style": { "height": "36px" } }).form; //创建窗体
  5046. break;
  5047. }
  5048. case "classroom_observation_ob_comment":
  5049. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5050. setTimeout(() => {
  5051. U.MD.U.L.login();
  5052. }, 2000);
  5053. } else {
  5054. _formdiv = new U.UF.UI.form(
  5055. "课堂审核",
  5056. $$("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 }), {
  5057. "id": "classroom_observation_ob_comment",
  5058. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5059. "onresize": function () { }
  5060. }, {
  5061. closecallback: function () { }
  5062. }, { "style": { "height": "36px" } }).form; //创建窗体
  5063. break;
  5064. }
  5065. }
  5066. }
  5067. U.MD.D.I.openApplication = function (str, obj, info) {
  5068. obj = obj || {};
  5069. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5070. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5071. _userinfo = US.userInfo, //登录用户信息
  5072. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5073. _oid = obj.organizeid || _userinfo.organizeid,
  5074. _type = US.userInfo.type,
  5075. _org = US.userInfo.org,
  5076. _role = US.userInfo.role,
  5077. _classId = US.userInfo.classid,
  5078. _TscreenType = 1
  5079. _screenType = 2,
  5080. _SscreenType = 3;
  5081. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5082. return;
  5083. }
  5084. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5085. switch (str) {
  5086. case "studnetProject": //好友打开
  5087. _formdiv = new U.UF.UI.form(
  5088. "我的项目",
  5089. $$("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 }), {
  5090. "id": "studnetProject",
  5091. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5092. "onresize": function () { }
  5093. }, {
  5094. closecallback: function () { }
  5095. }, { "style": { "height": "36px" } }).form; //创建窗体
  5096. _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); } }
  5097. break;
  5098. case "studentEvaluate": //好友打开
  5099. _formdiv = new U.UF.UI.form(
  5100. "我的评价",
  5101. $$("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 }), {
  5102. "id": "studentEvaluate",
  5103. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. _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); } }
  5109. break;
  5110. case "my":
  5111. _formdiv = new U.UF.UI.form(
  5112. "我的资料",
  5113. $$("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 }), {
  5114. "id": "my",
  5115. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5116. "onresize": function () { }
  5117. }, {
  5118. closecallback: function () { }
  5119. }, { "style": { "height": "36px" } }).form; //创建窗体
  5120. _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); } }
  5121. break;
  5122. case "program":
  5123. _formdiv = new U.UF.UI.form(
  5124. "编程平台",
  5125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5126. "id": "program",
  5127. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5128. "onresize": function () { }
  5129. }, {
  5130. closecallback: function () { }
  5131. }, { "style": { "height": "36px" } }).form; //创建窗体
  5132. _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); } }
  5133. break;
  5134. case "library":
  5135. _formdiv = new U.UF.UI.form(
  5136. "素材库",
  5137. $$("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 }), {
  5138. "id": "library",
  5139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. case "whiteboard":
  5147. _formdiv = new U.UF.UI.form(
  5148. "电子白板",
  5149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5150. "id": "whiteboard",
  5151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5152. "onresize": function () { }
  5153. }, {
  5154. closecallback: function () { }
  5155. }, { "style": { "height": "36px" } }).form; //创建窗体
  5156. _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); } }
  5157. break;
  5158. case "investigation":
  5159. _formdiv = new U.UF.UI.form(
  5160. "问卷调查",
  5161. $$("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 }), {
  5162. "id": "investigation",
  5163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. _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); } }
  5169. break;
  5170. case "note":
  5171. _formdiv = new U.UF.UI.form(
  5172. "便签分类",
  5173. $$("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 }), {
  5174. "id": "note",
  5175. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. // case "score":
  5183. // _formdiv = new U.UF.UI.form(
  5184. // "量规评分",
  5185. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5186. // "id": "score",
  5187. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. // "onresize": function() {}
  5189. // }, {
  5190. // closecallback: function() {}
  5191. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. // _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); } }
  5193. // break;
  5194. case "mind":
  5195. _formdiv = new U.UF.UI.form(
  5196. "思维导图",
  5197. $$("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"
  5198. "id": "mind",
  5199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. _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); } }
  5205. break;
  5206. case "doc":
  5207. // U.MD.D.I.isRoom();
  5208. _formdiv = new U.UF.UI.form(
  5209. "协同文档",
  5210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5211. "id": "doc",
  5212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //创建窗体
  5217. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5218. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5219. // })
  5220. _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); } }
  5221. break;
  5222. case "studentStudy":
  5223. _formdiv = new U.UF.UI.form(
  5224. "课程中心",
  5225. $$("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
  5226. "id": "studentStudy",
  5227. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5228. "onresize": function () { }
  5229. }, {
  5230. closecallback: function () { }
  5231. }, { "style": { "height": "36px" } }).form; //创建窗体
  5232. _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); } }
  5233. break;
  5234. case "train": //好友打开
  5235. _formdiv = new U.UF.UI.form(
  5236. "训练平台",
  5237. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5238. "id": "train",
  5239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5240. "onresize": function () { }
  5241. }, {
  5242. closecallback: function () { }
  5243. }, { "style": { "height": "36px" } }).form; //创建窗体
  5244. _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); } }
  5245. break;
  5246. case "mindNetwork": //好友打开
  5247. _formdiv = new U.UF.UI.form(
  5248. "思维网格",
  5249. $$("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 }), {
  5250. "id": "mindNetwork",
  5251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5252. "onresize": function () { }
  5253. }, {
  5254. closecallback: function () { }
  5255. }, { "style": { "height": "36px" } }).form; //创建窗体
  5256. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5257. break;
  5258. case "studentClassRoom": //好友打开
  5259. _formdiv = new U.UF.UI.form(
  5260. "实时课堂",
  5261. $$("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 }), {
  5262. "id": "studentClassRoom",
  5263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. _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); } }
  5269. setTimeout(() => {
  5270. U.UF.F.windowZooming(_formdiv)
  5271. }, 0);
  5272. break;
  5273. }
  5274. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5275. switch (str) {
  5276. case "studnetProject": //好友打开
  5277. _formdiv = new U.UF.UI.form(
  5278. "我的项目",
  5279. $$("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 }), {
  5280. "id": "studnetProject",
  5281. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _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); } }
  5287. break;
  5288. case "studentEvaluate": //好友打开
  5289. _formdiv = new U.UF.UI.form(
  5290. "我的评价",
  5291. $$("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 }), {
  5292. "id": "studentEvaluate",
  5293. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5294. "onresize": function () { }
  5295. }, {
  5296. closecallback: function () { }
  5297. }, { "style": { "height": "36px" } }).form; //创建窗体
  5298. _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); } }
  5299. break;
  5300. case "my":
  5301. _formdiv = new U.UF.UI.form(
  5302. "我的资料",
  5303. $$("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 }), {
  5304. "id": "my",
  5305. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5306. "onresize": function () { }
  5307. }, {
  5308. closecallback: function () { }
  5309. }, { "style": { "height": "36px" } }).form; //创建窗体
  5310. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5311. break;
  5312. case "program":
  5313. _formdiv = new U.UF.UI.form(
  5314. "编程平台",
  5315. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5316. "id": "program",
  5317. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5318. "onresize": function () { }
  5319. }, {
  5320. closecallback: function () { }
  5321. }, { "style": { "height": "36px" } }).form; //创建窗体
  5322. _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); } }
  5323. break;
  5324. case "library":
  5325. _formdiv = new U.UF.UI.form(
  5326. "素材库",
  5327. $$("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 }), {
  5328. "id": "library",
  5329. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5330. "onresize": function () { }
  5331. }, {
  5332. closecallback: function () { }
  5333. }, { "style": { "height": "36px" } }).form; //创建窗体
  5334. _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); } }
  5335. break;
  5336. case "whiteboard":
  5337. _formdiv = new U.UF.UI.form(
  5338. "电子白板",
  5339. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5340. "id": "whiteboard",
  5341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5342. "onresize": function () { }
  5343. }, {
  5344. closecallback: function () { }
  5345. }, { "style": { "height": "36px" } }).form; //创建窗体
  5346. _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); } }
  5347. break;
  5348. case "investigation":
  5349. _formdiv = new U.UF.UI.form(
  5350. "问卷调查",
  5351. $$("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 }), {
  5352. "id": "investigation",
  5353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5354. "onresize": function () { }
  5355. }, {
  5356. closecallback: function () { }
  5357. }, { "style": { "height": "36px" } }).form; //创建窗体
  5358. _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); } }
  5359. break;
  5360. case "note":
  5361. _formdiv = new U.UF.UI.form(
  5362. "便签分类",
  5363. $$("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 }), {
  5364. "id": "note",
  5365. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5366. "onresize": function () { }
  5367. }, {
  5368. closecallback: function () { }
  5369. }, { "style": { "height": "36px" } }).form; //创建窗体
  5370. _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); } }
  5371. break;
  5372. // case "score":
  5373. // _formdiv = new U.UF.UI.form(
  5374. // "量规评分",
  5375. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5376. // "id": "score",
  5377. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5378. // "onresize": function() {}
  5379. // }, {
  5380. // closecallback: function() {}
  5381. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5382. // _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); } }
  5383. // break;
  5384. case "mind":
  5385. _formdiv = new U.UF.UI.form(
  5386. "思维导图",
  5387. $$("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"
  5388. "id": "mind",
  5389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5390. "onresize": function () { }
  5391. }, {
  5392. closecallback: function () { }
  5393. }, { "style": { "height": "36px" } }).form; //创建窗体
  5394. _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); } }
  5395. break;
  5396. case "doc":
  5397. // U.MD.D.I.isRoom();
  5398. _formdiv = new U.UF.UI.form(
  5399. "协同文档",
  5400. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5401. "id": "doc",
  5402. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5403. "onresize": function () { }
  5404. }, {
  5405. closecallback: function () { }
  5406. }, { "style": { "height": "36px" } }).form; //创建窗体
  5407. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5408. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5409. })
  5410. _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); } }
  5411. break;
  5412. case "train": //好友打开
  5413. _formdiv = new U.UF.UI.form(
  5414. "训练平台",
  5415. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5416. "id": "train",
  5417. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5418. "onresize": function () { }
  5419. }, {
  5420. closecallback: function () { }
  5421. }, { "style": { "height": "36px" } }).form; //创建窗体
  5422. _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); } }
  5423. break;
  5424. case "studentStudy":
  5425. _formdiv = new U.UF.UI.form(
  5426. "课程中心",
  5427. $$("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
  5428. "id": "studentStudy",
  5429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. _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); } }
  5435. break;
  5436. case "mindNetwork": //好友打开
  5437. _formdiv = new U.UF.UI.form(
  5438. "思维网格",
  5439. $$("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 }), {
  5440. "id": "mindNetwork",
  5441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5442. "onresize": function () { }
  5443. }, {
  5444. closecallback: function () { }
  5445. }, { "style": { "height": "36px" } }).form; //创建窗体
  5446. _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); } }
  5447. break;
  5448. case "studentClassRoom": //好友打开
  5449. _formdiv = new U.UF.UI.form(
  5450. "实时课堂",
  5451. $$("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 }), {
  5452. "id": "studentClassRoom",
  5453. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5454. "onresize": function () { }
  5455. }, {
  5456. closecallback: function () { }
  5457. }, { "style": { "height": "36px" } }).form; //创建窗体
  5458. _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); } }
  5459. setTimeout(() => {
  5460. U.UF.F.windowZooming(_formdiv)
  5461. }, 0);
  5462. break;
  5463. }
  5464. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5465. //选择应用处理
  5466. switch (str) {
  5467. case "project": //好友打开
  5468. _formdiv = new U.UF.UI.form(
  5469. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5470. $$("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 }), {
  5471. "id": "project",
  5472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5473. "onresize": function () { }
  5474. }, {
  5475. closecallback: function () { }
  5476. }, { "style": { "height": "36px" } }).form; //创建窗体
  5477. _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); } }
  5478. break;
  5479. case "student":
  5480. _formdiv = new U.UF.UI.form(
  5481. "学生管理",
  5482. $$("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 }), {
  5483. "id": "student",
  5484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5485. "onresize": function () { }
  5486. }, {
  5487. closecallback: function () { }
  5488. }, { "style": { "height": "36px" } }).form; //创建窗体
  5489. _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); } }
  5490. break;
  5491. case "evaluate":
  5492. _formdiv = new U.UF.UI.form(
  5493. "学生评价",
  5494. $$("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 }), {
  5495. "id": "evaluate",
  5496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5497. "onresize": function () { }
  5498. }, {
  5499. closecallback: function () { }
  5500. }, { "style": { "height": "36px" } }).form; //创建窗体
  5501. _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); } }
  5502. break;
  5503. case "sys":
  5504. _formdiv = new U.UF.UI.form(
  5505. "目标管理",
  5506. $$("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 }), {
  5507. "id": "sys",
  5508. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. _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); } }
  5514. break;
  5515. case "courseDesign":
  5516. _formdiv = new U.UF.UI.form(
  5517. "项目设计",
  5518. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5519. "id": "courseDesign",
  5520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5521. "onresize": function () { }
  5522. }, {
  5523. closecallback: function () { }
  5524. }, { "style": { "height": "36px" } }).form; //创建窗体
  5525. _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); } }
  5526. break;
  5527. case "program":
  5528. _formdiv = new U.UF.UI.form(
  5529. "编程平台",
  5530. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5531. "id": "program",
  5532. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. _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); } }
  5538. break;
  5539. case "class":
  5540. _formdiv = new U.UF.UI.form(
  5541. "班级管理",
  5542. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5543. "id": "class",
  5544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5550. break;
  5551. case "Grade":
  5552. _formdiv = new U.UF.UI.form(
  5553. "年级管理",
  5554. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5555. "id": "Grade",
  5556. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5557. "onresize": function () { }
  5558. }, {
  5559. closecallback: function () { }
  5560. }, { "style": { "height": "36px" } }).form; //创建窗体
  5561. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5562. break;
  5563. case "teacherOffice":
  5564. _formdiv = new U.UF.UI.form(
  5565. "教研室",
  5566. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5567. "id": "teacherOffice",
  5568. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5569. "onresize": function () { }
  5570. }, {
  5571. closecallback: function () { }
  5572. }, { "style": { "height": "36px" } }).form; //创建窗体
  5573. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5574. break;
  5575. case "my":
  5576. _formdiv = new U.UF.UI.form(
  5577. "我的资料",
  5578. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5579. "id": "my",
  5580. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5586. break;
  5587. case "notice":
  5588. _formdiv = new U.UF.UI.form(
  5589. "通知公告",
  5590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5591. "id": "notice",
  5592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5593. "onresize": function () { }
  5594. }, {
  5595. closecallback: function () { }
  5596. }, { "style": { "height": "36px" } }).form; //创建窗体
  5597. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5598. break;
  5599. case "library":
  5600. _formdiv = new U.UF.UI.form(
  5601. "素材库",
  5602. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5603. "id": "library",
  5604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5610. break;
  5611. case "whiteboard":
  5612. _formdiv = new U.UF.UI.form(
  5613. "电子白板",
  5614. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5615. "id": "whiteboard",
  5616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { }
  5620. }, { "style": { "height": "36px" } }).form; //创建窗体
  5621. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5622. break;
  5623. case "investigation":
  5624. _formdiv = new U.UF.UI.form(
  5625. "问卷调查",
  5626. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5627. "id": "investigation",
  5628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5629. "onresize": function () { }
  5630. }, {
  5631. closecallback: function () { }
  5632. }, { "style": { "height": "36px" } }).form; //创建窗体
  5633. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5634. break;
  5635. case "note":
  5636. _formdiv = new U.UF.UI.form(
  5637. "便签分类",
  5638. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5639. "id": "note",
  5640. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5641. "onresize": function () { }
  5642. }, {
  5643. closecallback: function () { }
  5644. }, { "style": { "height": "36px" } }).form; //创建窗体
  5645. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5646. break;
  5647. // case "score":
  5648. // _formdiv = new U.UF.UI.form(
  5649. // "量规评分",
  5650. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5651. // "id": "score",
  5652. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5653. // "onresize": function() {}
  5654. // }, {
  5655. // closecallback: function() {}
  5656. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5657. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5658. // break;
  5659. case "mind":
  5660. _formdiv = new U.UF.UI.form(
  5661. "思维导图",
  5662. $$("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"
  5663. "id": "mind",
  5664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5665. "onresize": function () { }
  5666. }, {
  5667. closecallback: function () { }
  5668. }, { "style": { "height": "36px" } }).form; //创建窗体
  5669. _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); } }
  5670. break;
  5671. case "doc":
  5672. // U.MD.D.I.isRoom();
  5673. _formdiv = new U.UF.UI.form(
  5674. "协同文档",
  5675. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5676. "id": "doc",
  5677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5678. "onresize": function () { }
  5679. }, {
  5680. closecallback: function () { }
  5681. }, { "style": { "height": "36px" } }).form; //创建窗体
  5682. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5683. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5684. })
  5685. _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); } }
  5686. break;
  5687. case "study":
  5688. _formdiv = new U.UF.UI.form(
  5689. "课程中心",
  5690. $$("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
  5691. "id": "study",
  5692. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5693. "onresize": function () { }
  5694. }, {
  5695. closecallback: function () { }
  5696. }, { "style": { "height": "36px" } }).form; //创建窗体
  5697. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5698. break;
  5699. case "mindNetwork": //好友打开
  5700. _formdiv = new U.UF.UI.form(
  5701. "思维网格",
  5702. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5703. "id": "mindNetwork",
  5704. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5705. "onresize": function () { }
  5706. }, {
  5707. closecallback: function () { }
  5708. }, { "style": { "height": "36px" } }).form; //创建窗体
  5709. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5710. break;
  5711. case "train": //好友打开
  5712. _formdiv = new U.UF.UI.form(
  5713. "训练平台",
  5714. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5715. "id": "mindNetwork",
  5716. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5722. break;
  5723. case "teacherClassRoom": //好友打开
  5724. _formdiv = new U.UF.UI.form(
  5725. "实时课堂",
  5726. $$("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 }), {
  5727. "id": "teacherClassRoom",
  5728. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5729. "onresize": function () { }
  5730. }, {
  5731. closecallback: function () { }
  5732. }, { "style": { "height": "36px" } }).form; //创建窗体
  5733. _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); } }
  5734. setTimeout(() => {
  5735. U.UF.F.windowZooming(_formdiv)
  5736. }, 0);
  5737. break;
  5738. }
  5739. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5740. switch (str) {
  5741. case "project": //好友打开
  5742. _formdiv = new U.UF.UI.form(
  5743. "课程管理",
  5744. $$("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 }), {
  5745. "id": "project",
  5746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //创建窗体
  5751. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5752. break;
  5753. case "evaluate":
  5754. _formdiv = new U.UF.UI.form(
  5755. "学生评价",
  5756. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5757. "id": "evaluate",
  5758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5759. "onresize": function () { }
  5760. }, {
  5761. closecallback: function () { }
  5762. }, { "style": { "height": "36px" } }).form; //创建窗体
  5763. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5764. break;
  5765. case "notice":
  5766. _formdiv = new U.UF.UI.form(
  5767. "通知公告",
  5768. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5769. "id": "notice",
  5770. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5776. break;
  5777. case "stuLibrary":
  5778. _formdiv = new U.UF.UI.form(
  5779. "学习资料",
  5780. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  5781. "id": "stuLibrary",
  5782. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5783. "onresize": function () { }
  5784. }, {
  5785. closecallback: function () { }
  5786. }, { "style": { "height": "36px" } }).form; //创建窗体
  5787. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5788. break;
  5789. case "program":
  5790. _formdiv = new U.UF.UI.form(
  5791. "编程平台",
  5792. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5793. "id": "program",
  5794. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5795. "onresize": function () { }
  5796. }, {
  5797. closecallback: function () { }
  5798. }, { "style": { "height": "36px" } }).form; //创建窗体
  5799. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5800. break;
  5801. case "whiteboard":
  5802. _formdiv = new U.UF.UI.form(
  5803. "电子白板",
  5804. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5805. "id": "whiteboard",
  5806. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //创建窗体
  5811. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5812. break;
  5813. case "investigation":
  5814. _formdiv = new U.UF.UI.form(
  5815. "问卷调查",
  5816. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5817. "id": "investigation",
  5818. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5819. "onresize": function () { }
  5820. }, {
  5821. closecallback: function () { }
  5822. }, { "style": { "height": "36px" } }).form; //创建窗体
  5823. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5824. break;
  5825. case "mind":
  5826. _formdiv = new U.UF.UI.form(
  5827. "思维导图",
  5828. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5829. "id": "mind",
  5830. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5831. "onresize": function () { }
  5832. }, {
  5833. closecallback: function () { }
  5834. }, { "style": { "height": "36px" } }).form; //创建窗体
  5835. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5836. break;
  5837. case "doc":
  5838. // U.MD.D.I.isRoom();
  5839. _formdiv = new U.UF.UI.form(
  5840. "协同文档",
  5841. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5842. "id": "doc",
  5843. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5844. "onresize": function () { }
  5845. }, {
  5846. closecallback: function () { }
  5847. }, { "style": { "height": "36px" } }).form; //创建窗体
  5848. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5849. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5850. })
  5851. _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); } }
  5852. break;
  5853. case "study":
  5854. _formdiv = new U.UF.UI.form(
  5855. "课程中心",
  5856. $$("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
  5857. "id": "study",
  5858. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5859. "onresize": function () { }
  5860. }, {
  5861. closecallback: function () { }
  5862. }, { "style": { "height": "36px" } }).form; //创建窗体
  5863. _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); } }
  5864. break;
  5865. case "mindNetwork": //好友打开
  5866. _formdiv = new U.UF.UI.form(
  5867. "思维网格",
  5868. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5869. "id": "mindNetwork",
  5870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5871. "onresize": function () { }
  5872. }, {
  5873. closecallback: function () { }
  5874. }, { "style": { "height": "36px" } }).form; //创建窗体
  5875. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5876. break;
  5877. case "train": //好友打开
  5878. _formdiv = new U.UF.UI.form(
  5879. "训练平台",
  5880. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5881. "id": "train",
  5882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5883. "onresize": function () { }
  5884. }, {
  5885. closecallback: function () { }
  5886. }, { "style": { "height": "36px" } }).form; //创建窗体
  5887. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5888. break;
  5889. case "sys":
  5890. _formdiv = new U.UF.UI.form(
  5891. "目标管理",
  5892. $$("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 }), {
  5893. "id": "sys",
  5894. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5900. break;
  5901. case "courseDesign":
  5902. _formdiv = new U.UF.UI.form(
  5903. "项目设计",
  5904. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5905. "id": "courseDesign",
  5906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5907. "onresize": function () { }
  5908. }, {
  5909. closecallback: function () { }
  5910. }, { "style": { "height": "36px" } }).form; //创建窗体
  5911. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5912. break;
  5913. }
  5914. } else if (!_type) {
  5915. switch (str) {
  5916. case "my":
  5917. _formdiv = new U.UF.UI.form(
  5918. "我的资料",
  5919. $$("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 }), {
  5920. "id": "my",
  5921. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5922. "onresize": function () { }
  5923. }, {
  5924. closecallback: function () { }
  5925. }, { "style": { "height": "36px" } }).form; //创建窗体
  5926. _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); } }
  5927. break;
  5928. }
  5929. }
  5930. switch (str) {
  5931. // AIprogram2 AI体验 aihub.cocorobo.cn
  5932. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5933. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5934. case "formulaEdi": //公式编辑
  5935. _formdiv = new U.UF.UI.form(
  5936. "公式编辑",
  5937. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5938. "id": "formulaEdi",
  5939. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5940. "onresize": function () { }
  5941. }, {
  5942. closecallback: function () { }
  5943. }, { "style": { "height": "36px" } }).form; //创建窗体
  5944. _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); } }
  5945. break;
  5946. case "molStr": //分子结构
  5947. _formdiv = new U.UF.UI.form(
  5948. "分子结构",
  5949. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5950. "id": "molStr",
  5951. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5952. "onresize": function () { }
  5953. }, {
  5954. closecallback: function () { }
  5955. }, { "style": { "height": "36px" } }).form; //创建窗体
  5956. _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); } }
  5957. break;
  5958. case "timeAxis": //时间轴
  5959. _formdiv = new U.UF.UI.form(
  5960. "时间轴",
  5961. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5962. "id": "timeAxis",
  5963. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5964. "onresize": function () { }
  5965. }, {
  5966. closecallback: function () { }
  5967. }, { "style": { "height": "36px" } }).form; //创建窗体
  5968. _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); } }
  5969. break;
  5970. case "AIprogram2": //AI体验
  5971. _formdiv = new U.UF.UI.form(
  5972. "AI体验",
  5973. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5974. "id": "AIprogram2",
  5975. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //创建窗体
  5980. _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); } }
  5981. break;
  5982. case "Pythonprogram": //python编程
  5983. _formdiv = new U.UF.UI.form(
  5984. "Python编程",
  5985. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5986. "id": "Pythonprogram",
  5987. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5988. "onresize": function () { }
  5989. }, {
  5990. closecallback: function () { }
  5991. }, { "style": { "height": "36px" } }).form; //创建窗体
  5992. _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); } }
  5993. break;
  5994. case "AIprogram": //ai编程
  5995. _formdiv = new U.UF.UI.form(
  5996. "AI编程平台",
  5997. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5998. "id": "AIprogram",
  5999. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6000. "onresize": function () { }
  6001. }, {
  6002. closecallback: function () { }
  6003. }, { "style": { "height": "36px" } }).form; //创建窗体
  6004. _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); } }
  6005. break;
  6006. case "CocoPi": //CocoPi
  6007. _formdiv = new U.UF.UI.form(
  6008. "CocoPi",
  6009. $$("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" }), {
  6010. "id": "CocoPi",
  6011. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6012. "onresize": function () { }
  6013. }, {
  6014. closecallback: function () { }
  6015. }, { "style": { "height": "36px" } }).form; //创建窗体
  6016. _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); } }
  6017. break;
  6018. case "Wood": //Wood
  6019. _formdiv = new U.UF.UI.form(
  6020. "海龟编程",
  6021. $$("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/" }), {
  6022. "id": "Wood",
  6023. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6024. "onresize": function () { }
  6025. }, {
  6026. closecallback: function () { }
  6027. }, { "style": { "height": "36px" } }).form; //创建窗体
  6028. _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); } }
  6029. break;
  6030. case "car": //模拟驾驶
  6031. _formdiv = new U.UF.UI.form(
  6032. "模拟驾驶",
  6033. $$("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/" }), {
  6034. "id": "car",
  6035. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. _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); } }
  6041. break;
  6042. case "lineSearch": //路径搜索
  6043. _formdiv = new U.UF.UI.form(
  6044. "路径搜索",
  6045. $$("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/" }), {
  6046. "id": "lineSearch",
  6047. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //创建窗体
  6052. _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); } }
  6053. break;
  6054. case "deepLearning": //深度学习
  6055. _formdiv = new U.UF.UI.form(
  6056. "深度学习",
  6057. $$("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/#" }), {
  6058. "id": "deepLearning",
  6059. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. _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); } }
  6065. break;
  6066. case "allHistory": //深度学习
  6067. _formdiv = new U.UF.UI.form(
  6068. "全历史",
  6069. $$("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/" }), {
  6070. "id": "allHistory",
  6071. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6072. "onresize": function () { }
  6073. }, {
  6074. closecallback: function () { }
  6075. }, { "style": { "height": "36px" } }).form; //创建窗体
  6076. _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); } }
  6077. break;
  6078. case "chatPDF": //ai编程
  6079. _formdiv = new U.UF.UI.form(
  6080. "chatPDF",
  6081. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6082. "id": "chatPDF",
  6083. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6084. "onresize": function () { }
  6085. }, {
  6086. closecallback: function () { }
  6087. }, { "style": { "height": "36px" } }).form; //创建窗体
  6088. _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); } }
  6089. break;
  6090. case "resources": //国家教育
  6091. _formdiv = new U.UF.UI.form(
  6092. "国家教育",
  6093. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6094. "id": "resources",
  6095. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6096. "onresize": function () { }
  6097. }, {
  6098. closecallback: function () { }
  6099. }, { "style": { "height": "36px" } }).form; //创建窗体
  6100. _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); } }
  6101. break;
  6102. case "codeEdit": //源码编辑
  6103. _formdiv = new U.UF.UI.form(
  6104. "源码编辑",
  6105. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6106. "id": "codeEdit",
  6107. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6108. "onresize": function () { }
  6109. }, {
  6110. closecallback: function () { }
  6111. }, { "style": { "height": "36px" } }).form; //创建窗体
  6112. _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); } }
  6113. break; //
  6114. case "MindMap": //MindMap
  6115. _formdiv = new U.UF.UI.form(
  6116. "MindMap",
  6117. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6118. "id": "MindMap",
  6119. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6120. "onresize": function () { }
  6121. }, {
  6122. closecallback: function () { }
  6123. }, { "style": { "height": "36px" } }).form; //创建窗体
  6124. _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); } }
  6125. break;
  6126. case "netWorkPanel": //netWorkPanel
  6127. _formdiv = new U.UF.UI.form(
  6128. "netWorkPanel",
  6129. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6130. "id": "netWorkPanel",
  6131. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6132. "onresize": function () { }
  6133. }, {
  6134. closecallback: function () { }
  6135. }, { "style": { "height": "36px" } }).form; //创建窗体
  6136. _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); } }
  6137. break;
  6138. case "GeoGebra": //GeoGebra
  6139. _formdiv = new U.UF.UI.form(
  6140. "GeoGebra",
  6141. $$("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" }), {
  6142. "id": "GeoGebra",
  6143. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6144. "onresize": function () { }
  6145. }, {
  6146. closecallback: function () { }
  6147. }, { "style": { "height": "36px" } }).form; //创建窗体
  6148. _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); } }
  6149. break;
  6150. case "translation": //翻译
  6151. _formdiv = new U.UF.UI.form(
  6152. "翻译",
  6153. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6154. "id": "translation",
  6155. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6156. "onresize": function () { }
  6157. }, {
  6158. closecallback: function () { }
  6159. }, { "style": { "height": "36px" } }).form; //创建窗体
  6160. _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); } }
  6161. break;
  6162. case "mohe": //魔盒
  6163. _formdiv = new U.UF.UI.form(
  6164. "魔盒识字",
  6165. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6166. "id": "mohe",
  6167. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6168. "onresize": function () { }
  6169. }, {
  6170. closecallback: function () { }
  6171. }, { "style": { "height": "36px" } }).form; //创建窗体
  6172. _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); } }
  6173. break;
  6174. case "24game": //24点
  6175. _formdiv = new U.UF.UI.form(
  6176. "24点",
  6177. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6178. "id": "24game",
  6179. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6180. "onresize": function () { }
  6181. }, {
  6182. closecallback: function () { }
  6183. }, { "style": { "height": "36px" } }).form; //创建窗体
  6184. _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); } }
  6185. break;
  6186. case "case":
  6187. _formdiv = new U.UF.UI.form(
  6188. "课程进展",
  6189. $$("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 }), {
  6190. "id": "case",
  6191. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6192. "onresize": function () { }
  6193. }, {
  6194. closecallback: function () { }
  6195. }, { "style": { "height": "36px" } }).form; //创建窗体
  6196. _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); } }
  6197. break;
  6198. case "snf":
  6199. _formdiv = new U.UF.UI.form(
  6200. "赛诺梵",
  6201. $$("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" }), {
  6202. "id": "snf",
  6203. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6204. "onresize": function () { }
  6205. }, {
  6206. closecallback: function () { }
  6207. }, { "style": { "height": "36px" } }).form; //创建窗体
  6208. _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); } }
  6209. break;
  6210. case "hanFamily":
  6211. _formdiv = new U.UF.UI.form(
  6212. "汉字家族",
  6213. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6214. "id": "hanFamily",
  6215. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6216. "onresize": function () { }
  6217. }, {
  6218. closecallback: function () { }
  6219. }, { "style": { "height": "36px" } }).form; //创建窗体
  6220. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6221. break;
  6222. case "hanClassics":
  6223. _formdiv = new U.UF.UI.form(
  6224. "国学经典",
  6225. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6226. "id": "hanClassics",
  6227. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //创建窗体
  6232. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6233. break;
  6234. case "hanTraining":
  6235. _formdiv = new U.UF.UI.form(
  6236. "笔画训练",
  6237. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6238. "id": "hanTraining",
  6239. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6240. "onresize": function () { }
  6241. }, {
  6242. closecallback: function () { }
  6243. }, { "style": { "height": "36px" } }).form; //创建窗体
  6244. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6245. break;
  6246. case "hanClass":
  6247. _formdiv = new U.UF.UI.form(
  6248. "书法课堂",
  6249. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6250. "id": "hanClass",
  6251. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //创建窗体
  6256. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6257. break;
  6258. case "han":
  6259. _formdiv = new U.UF.UI.form(
  6260. "汉字宫",
  6261. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6262. "id": "han",
  6263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6264. "onresize": function () { }
  6265. }, {
  6266. closecallback: function () { }
  6267. }, { "style": { "height": "36px" } }).form; //创建窗体
  6268. _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); } }
  6269. break;
  6270. case "projectGM": //课程管理
  6271. _formdiv = new U.UF.UI.form(
  6272. "课程管理",
  6273. $$("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 }), {
  6274. "id": "projectGM",
  6275. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6276. "onresize": function () { }
  6277. }, {
  6278. closecallback: function () { }
  6279. }, { "style": { "height": "36px" } }).form; //创建窗体
  6280. _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); } }
  6281. break;
  6282. case "studyGM": //课程中心
  6283. _formdiv = new U.UF.UI.form(
  6284. "课程中心",
  6285. $$("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
  6286. "id": "study",
  6287. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6288. "onresize": function () { }
  6289. }, {
  6290. closecallback: function () { }
  6291. }, { "style": { "height": "36px" } }).form; //创建窗体
  6292. _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); } }
  6293. break;
  6294. // studentGM
  6295. case "studentGM": //学生管理
  6296. _formdiv = new U.UF.UI.form(
  6297. "学生管理",
  6298. $$("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 }), {
  6299. "id": "studentGM",
  6300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6301. "onresize": function () { }
  6302. }, {
  6303. closecallback: function () { }
  6304. }, { "style": { "height": "36px" } }).form; //创建窗体
  6305. _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); } }
  6306. break;
  6307. case "evaluateGM": //学生评价
  6308. _formdiv = new U.UF.UI.form(
  6309. "学生评价",
  6310. $$("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 }), {
  6311. "id": "evaluateGM",
  6312. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6313. "onresize": function () { }
  6314. }, {
  6315. closecallback: function () { }
  6316. }, { "style": { "height": "36px" } }).form; //创建窗体
  6317. _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); } }
  6318. break;
  6319. // classGM
  6320. case "classGM": //班级管理
  6321. _formdiv = new U.UF.UI.form(
  6322. "班级管理",
  6323. $$("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 }), {
  6324. "id": "classGM",
  6325. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6326. "onresize": function () { }
  6327. }, {
  6328. closecallback: function () { }
  6329. }, { "style": { "height": "36px" } }).form; //创建窗体
  6330. _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); } }
  6331. break;
  6332. // dataGM
  6333. case "dataGM":
  6334. _formdiv = new U.UF.UI.form(
  6335. "我的资料",
  6336. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6337. "id": "dataGM",
  6338. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6339. "onresize": function () { }
  6340. }, {
  6341. closecallback: function () { }
  6342. }, { "style": { "height": "36px" } }).form; //创建窗体
  6343. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6344. break;
  6345. // caseGM
  6346. case "caseGM": //课程进展
  6347. _formdiv = new U.UF.UI.form(
  6348. "课程进展",
  6349. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6350. "id": "caseGM",
  6351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6352. "onresize": function () { }
  6353. }, {
  6354. closecallback: function () { }
  6355. }, { "style": { "height": "36px" } }).form; //创建窗体
  6356. _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); } }
  6357. break;
  6358. // meterialGM
  6359. case "meterialGM": //素材库
  6360. _formdiv = new U.UF.UI.form(
  6361. "素材库",
  6362. $$("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 }), {
  6363. "id": "meterialGM",
  6364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6365. "onresize": function () { }
  6366. }, {
  6367. closecallback: function () { }
  6368. }, { "style": { "height": "36px" } }).form; //创建窗体
  6369. _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); } }
  6370. break;
  6371. // evaluateSGM
  6372. case "evaluateSGM": //我的评价
  6373. _formdiv = new U.UF.UI.form(
  6374. "我的评价",
  6375. $$("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 }), {
  6376. "id": "evaluateSGM",
  6377. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6378. "onresize": function () { }
  6379. }, {
  6380. closecallback: function () { }
  6381. }, { "style": { "height": "36px" } }).form; //创建窗体
  6382. _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); } }
  6383. break;
  6384. case "jupyter": //jupyter
  6385. _formdiv = new U.UF.UI.form(
  6386. "jupyter",
  6387. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6388. "id": "jupyter",
  6389. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6390. "onresize": function () { }
  6391. }, {
  6392. closecallback: function () { }
  6393. }, { "style": { "height": "36px" } }).form; //创建窗体
  6394. _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); } }
  6395. break;
  6396. case "number": //数字实验室
  6397. _formdiv = new U.UF.UI.form(
  6398. "数字实验室",
  6399. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6400. "id": "number",
  6401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6402. "onresize": function () { }
  6403. }, {
  6404. closecallback: function () { }
  6405. }, { "style": { "height": "36px" } }).form; //创建窗体
  6406. _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); } }
  6407. break;
  6408. case "studentCourse": //项目管理 学生
  6409. _formdiv = new U.UF.UI.form(
  6410. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6411. $$("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 }), {
  6412. "id": "studentCourse",
  6413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6414. "onresize": function () { }
  6415. }, {
  6416. closecallback: function () { }
  6417. }, { "style": { "height": "36px" } }).form; //创建窗体
  6418. _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); } }
  6419. break;
  6420. case "studentCourseS": //项目管理 老师
  6421. _formdiv = new U.UF.UI.form(
  6422. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6423. $$("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 }), {
  6424. "id": "studentCourseS",
  6425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6426. "onresize": function () { }
  6427. }, {
  6428. closecallback: function () { }
  6429. }, { "style": { "height": "36px" } }).form; //创建窗体
  6430. _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); } }
  6431. break;
  6432. case "studentIndex": //项目中心
  6433. _formdiv = new U.UF.UI.form(
  6434. "项目中心",
  6435. $$("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 }), {
  6436. "id": "studentIndex",
  6437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6438. "onresize": function () { }
  6439. }, {
  6440. closecallback: function () { }
  6441. }, { "style": { "height": "36px" } }).form; //创建窗体
  6442. _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); } }
  6443. break;
  6444. case "CaseDesignS":
  6445. _formdiv = new U.UF.UI.form(
  6446. "项目进展",
  6447. $$("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 }), {
  6448. "id": "case",
  6449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6450. "onresize": function () { }
  6451. }, {
  6452. closecallback: function () { }
  6453. }, { "style": { "height": "36px" } }).form; //创建窗体
  6454. _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); } }
  6455. break;
  6456. case "tcStudent": //腾讯学生管理
  6457. _formdiv = new U.UF.UI.form(
  6458. "学生管理",
  6459. $$("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 }), {
  6460. "id": "tcStudent",
  6461. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6462. "onresize": function () { }
  6463. }, {
  6464. closecallback: function () { }
  6465. }, { "style": { "height": "36px" } }).form; //创建窗体
  6466. _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); } }
  6467. break;
  6468. case "tcSchool": //腾讯学校管理
  6469. _formdiv = new U.UF.UI.form(
  6470. "学校管理",
  6471. $$("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 }), {
  6472. "id": "tcSchool",
  6473. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6474. "onresize": function () { }
  6475. }, {
  6476. closecallback: function () { }
  6477. }, { "style": { "height": "36px" } }).form; //创建窗体
  6478. _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); } }
  6479. break;
  6480. case "tcTeacher": //腾讯学校管理
  6481. _formdiv = new U.UF.UI.form(
  6482. "教师管理",
  6483. $$("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 }), {
  6484. "id": "tcTeacher",
  6485. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6486. "onresize": function () { }
  6487. }, {
  6488. closecallback: function () { }
  6489. }, { "style": { "height": "36px" } }).form; //创建窗体
  6490. _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); } }
  6491. break;
  6492. case "teacher":
  6493. _formdiv = new U.UF.UI.form(
  6494. "教师管理",
  6495. $$("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 }), {
  6496. "id": "teacher",
  6497. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6498. "onresize": function () { }
  6499. }, {
  6500. closecallback: function () { }
  6501. }, { "style": { "height": "36px" } }).form; //创建窗体
  6502. _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); } }
  6503. break;
  6504. case "tcData": //腾讯我的资料
  6505. _formdiv = new U.UF.UI.form(
  6506. "我的资料",
  6507. $$("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 }), {
  6508. "id": "tcData",
  6509. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6510. "onresize": function () { }
  6511. }, {
  6512. closecallback: function () { }
  6513. }, { "style": { "height": "36px" } }).form; //创建窗体
  6514. _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); } }
  6515. break;
  6516. case "tcNotice": //腾讯消息通知
  6517. _formdiv = new U.UF.UI.form(
  6518. "消息通知",
  6519. $$("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 }), {
  6520. "id": "tcNotice",
  6521. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6522. "onresize": function () { }
  6523. }, {
  6524. closecallback: function () { }
  6525. }, { "style": { "height": "36px" } }).form; //创建窗体
  6526. _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); } }
  6527. break;
  6528. case "myReport": //好友打开
  6529. _formdiv = new U.UF.UI.form(
  6530. "我的评价",
  6531. $$("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 }), {
  6532. "id": "myReport",
  6533. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6534. "onresize": function () { }
  6535. }, {
  6536. closecallback: function () { }
  6537. }, { "style": { "height": "36px" } }).form; //创建窗体
  6538. _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); } }
  6539. break;
  6540. case "learnAna": //好友打开
  6541. _formdiv = new U.UF.UI.form(
  6542. "学习分析",
  6543. $$("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 }), {
  6544. "id": "learnAna",
  6545. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6546. "onresize": function () { }
  6547. }, {
  6548. closecallback: function () { }
  6549. }, { "style": { "height": "36px" } }).form; //创建窗体
  6550. _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); } }
  6551. break;
  6552. case "AIChat": //AI共创
  6553. _formdiv = new U.UF.UI.form(
  6554. "AI共创",
  6555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6556. "id": "AIChat",
  6557. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6558. "onresize": function () { }
  6559. }, {
  6560. istop: true,
  6561. closecallback: function () { $("#aichat_icon").remove(); },
  6562. narrowcallback: function () {
  6563. if (!$("#aichat_icon")[0]) {
  6564. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6565. }
  6566. },
  6567. }, { "style": { "height": "36px" } }).form; //创建窗体
  6568. _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); } }
  6569. break;
  6570. case "ainew": //AI共创
  6571. _formdiv = new U.UF.UI.form(
  6572. "AI协同",
  6573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6574. "id": "ainew",
  6575. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, { "style": { "height": "36px" } }).form; //创建窗体
  6580. _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); } }
  6581. break;
  6582. case "gpt4": //gpt4
  6583. _formdiv = new U.UF.UI.form(
  6584. "AI助手",
  6585. $$("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 }), {
  6586. "id": "gpt4",
  6587. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6588. "onresize": function () { }
  6589. }, {
  6590. closecallback: function () { }
  6591. }, { "style": { "height": "36px" } }).form; //创建窗体
  6592. _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); } }
  6593. break;
  6594. case "aigpt": //gpt4
  6595. _formdiv = new U.UF.UI.form(
  6596. "AI助手+",
  6597. $$("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 }), {
  6598. "id": "aigpt",
  6599. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6600. "onresize": function () { }
  6601. }, {
  6602. closecallback: function () {
  6603. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6604. }
  6605. }, { "style": { "height": "36px" } }).form; //创建窗体
  6606. _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); } }
  6607. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6608. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6609. })
  6610. break;
  6611. case "aiKnowledge": //aiKnowledge
  6612. _formdiv = new U.UF.UI.form(
  6613. "知识建构",
  6614. $$("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://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6615. "id": "aiKnowledge",
  6616. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //创建窗体
  6621. _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); } }
  6622. break;
  6623. case "futureClass": //AI共创
  6624. _formdiv = new U.UF.UI.form(
  6625. "协同建构",
  6626. $$("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
  6627. "id": "synergyCourse",
  6628. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () {
  6632. $("iframe", _formdiv)[0].contentWindow.loginout();
  6633. }
  6634. }, { "style": { "height": "36px" } }).form; //创建窗体
  6635. _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); } }
  6636. break;
  6637. case "aiagent": //ai agent
  6638. _formdiv = new U.UF.UI.form(
  6639. "AI Agent",
  6640. $$("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" }), {
  6641. "id": "AIAgent",
  6642. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6643. "onresize": function () { }
  6644. }, {
  6645. closecallback: function () { }
  6646. }, { "style": { "height": "36px" } }).form; //创建窗体
  6647. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6648. break;
  6649. case "dataBoard": //数据看板
  6650. _formdiv = new U.UF.UI.form(
  6651. "数据看板",
  6652. $$("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 }), {
  6653. "id": "dataBoard",
  6654. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6655. "onresize": function () { }
  6656. }, {
  6657. closecallback: function () { }
  6658. }, { "style": { "height": "36px" } }).form; //创建窗体
  6659. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6660. break;
  6661. case "dataBoardSies": //数据融合
  6662. _formdiv = new U.UF.UI.form(
  6663. "数据融合",
  6664. $$("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 }), {
  6665. "id": "dataBoardSies",
  6666. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6667. "onresize": function () { }
  6668. }, {
  6669. closecallback: function () { }
  6670. }, { "style": { "height": "36px" } }).form; //创建窗体
  6671. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6672. break;
  6673. case "dataBoardNew": //数据看板
  6674. _formdiv = new U.UF.UI.form(
  6675. "综合看板",
  6676. $$("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 }), {
  6677. "id": "dataBoardNew",
  6678. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6679. "onresize": function () { }
  6680. }, {
  6681. closecallback: function () { }
  6682. }, { "style": { "height": "36px" } }).form; //创建窗体
  6683. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6684. break;
  6685. case "dataBoardTest": //数据看板
  6686. _formdiv = new U.UF.UI.form(
  6687. "评测看板",
  6688. $$("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 }), {
  6689. "id": "dataBoardTest",
  6690. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6691. "onresize": function () { }
  6692. }, {
  6693. closecallback: function () { }
  6694. }, { "style": { "height": "36px" } }).form; //创建窗体
  6695. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6696. break;
  6697. case "AIAnalyse": //AI共创
  6698. _formdiv = new U.UF.UI.form(
  6699. "AI分析",
  6700. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6701. "id": "AIAnalyse",
  6702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6703. "onresize": function () { }
  6704. }, {
  6705. closecallback: function () { }
  6706. }, { "style": { "height": "36px" } }).form; //创建窗体
  6707. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6708. break;
  6709. case "studioCourse": //AI共创
  6710. _formdiv = new U.UF.UI.form(
  6711. "工作管理",
  6712. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6713. "id": "studioCourse",
  6714. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //创建窗体
  6719. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6720. break;
  6721. case "studioIndex": //AI共创
  6722. _formdiv = new U.UF.UI.form(
  6723. "工作中心",
  6724. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6725. "id": "studioIndex",
  6726. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //创建窗体
  6731. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6732. break;
  6733. case "source":
  6734. _formdiv = new U.UF.UI.form(
  6735. "教学资源",
  6736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6737. "id": "source",
  6738. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6739. "onresize": function () { }
  6740. }, {
  6741. closecallback: function () { }
  6742. }, { "style": { "height": "36px" } }).form; //创建窗体
  6743. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6744. break;
  6745. case "testTeacher":
  6746. _formdiv = new U.UF.UI.form(
  6747. "教师管理",
  6748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6749. "id": "testTeacher",
  6750. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6751. "onresize": function () { }
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //创建窗体
  6755. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6756. break;
  6757. case "testStudent":
  6758. _formdiv = new U.UF.UI.form(
  6759. "教师中心",
  6760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6761. "id": "testStudent",
  6762. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //创建窗体
  6767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6768. break;
  6769. case "testTeacherSies":
  6770. _formdiv = new U.UF.UI.form(
  6771. "教师管理",
  6772. $$("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 }), {
  6773. "id": "testTeacherSies",
  6774. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6775. "onresize": function () { }
  6776. }, {
  6777. closecallback: function () { }
  6778. }, { "style": { "height": "36px" } }).form; //创建窗体
  6779. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6780. break;
  6781. case "testStudentSies":
  6782. _formdiv = new U.UF.UI.form(
  6783. "教师中心",
  6784. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6785. "id": "testStudentSies",
  6786. "style": { "width": "80%", "height": "80%", "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/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6792. break;
  6793. case "ytpbl": //消息通知
  6794. _formdiv = new U.UF.UI.form(
  6795. "案例征集",
  6796. $$("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 }), {
  6797. "id": "ytpbl",
  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/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6804. // 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");
  6805. break;
  6806. case "aiCourseResource": //人工智能窗体
  6807. _formdiv = new U.UF.UI.form(
  6808. false,
  6809. $$("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 }), {
  6810. "id": "aiCourseResource",
  6811. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6812. "onresize": function () { },
  6813. "isdrag": false,
  6814. }, {
  6815. closecallback: function () { }
  6816. }, { "style": { "height": "36px" } }).form; //创建窗体
  6817. _taskbar = ''
  6818. break;
  6819. case "szdjgCocooroboX": //图形化编程
  6820. _formdiv = new U.UF.UI.form(
  6821. "图形化编程",
  6822. $$("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" }), {
  6823. "id": "szdjgCocooroboX",
  6824. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6825. "onresize": function () { }
  6826. }, {
  6827. closecallback: function () { }
  6828. }, { "style": { "height": "36px" } }).form; //创建窗体
  6829. _taskbar = ''
  6830. break;
  6831. case "szdjgPython": //python编程
  6832. _formdiv = new U.UF.UI.form(
  6833. "Python编程",
  6834. $$("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" }), {
  6835. "id": "szdjgPython",
  6836. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, { "style": { "height": "36px" } }).form; //创建窗体
  6841. _taskbar = ''
  6842. break;
  6843. case "Record":
  6844. _formdiv = new U.UF.UI.form(
  6845. "观察记录",
  6846. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6847. "id": "Record",
  6848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6849. "onresize": function () { }
  6850. }, {
  6851. closecallback: function () { }
  6852. }, { "style": { "height": "36px" } }).form; //创建窗体
  6853. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6854. break;
  6855. case "aigptCourse":
  6856. _formdiv = new U.UF.UI.form(
  6857. "AI智能体",
  6858. $$("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' }), {
  6859. "id": "aigptCourse",
  6860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6861. "onresize": function () { }
  6862. }, {
  6863. closecallback: function () { }
  6864. }, { "style": { "height": "36px" } }).form; //创建窗体
  6865. _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); } }
  6866. break;
  6867. case "classroomObservation":
  6868. _formdiv = new U.UF.UI.form(
  6869. "课堂观察",
  6870. $$("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 }), {
  6871. "id": "classroomObservation",
  6872. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6873. "onresize": function () { }
  6874. }, {
  6875. closecallback: function () { }
  6876. }, { "style": { "height": "36px" } }).form; //创建窗体
  6877. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6878. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6879. break;
  6880. case "pblCourse":
  6881. _formdiv = new U.UF.UI.form(
  6882. "学生PBL",
  6883. $$("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 }), {
  6884. "id": "pblCourse",
  6885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6886. "onresize": function () { }
  6887. }, {
  6888. closecallback: function () { }
  6889. }, { "style": { "height": "36px" } }).form; //创建窗体
  6890. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6891. break;
  6892. case "appStore":
  6893. _formdiv = new U.UF.UI.form(
  6894. "应用中心",
  6895. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/appStore?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6896. "id": "pblCourse",
  6897. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6898. "onresize": function () { }
  6899. }, {
  6900. closecallback: function () { }
  6901. }, { "style": { "height": "36px" } }).form; //创建窗体
  6902. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "应用中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6903. break;
  6904. }
  6905. //U.MD.D.I.openClick(str);
  6906. //如果有任务栏信息
  6907. if (_taskbar) {
  6908. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6909. }
  6910. }
  6911. // U.MD.D.I.openClick = function(str){
  6912. // var click = '';
  6913. // switch(str){
  6914. // case 'friend':
  6915. // click = '我的好友';
  6916. // break;
  6917. // case 'domain':
  6918. // click = '域名管理';
  6919. // break;
  6920. // case 'disk':
  6921. // click = '我的云盘';
  6922. // break;
  6923. // case 'word':
  6924. // click = 'Word';
  6925. // break;
  6926. // case 'excel':
  6927. // click = 'Execl';
  6928. // break;
  6929. // case 'txt':
  6930. // click = '文本文件';
  6931. // break;
  6932. // case 'lookupFriend':
  6933. // click = '查找好友';
  6934. // break;
  6935. // case 'ftp':
  6936. // click = 'FTP';
  6937. // break;
  6938. // case 'group':
  6939. // click = '群组';
  6940. // break;
  6941. // case 'set':
  6942. // click = '我的设置';
  6943. // break;
  6944. // case 'systemSet':
  6945. // click = '系统设置';
  6946. // break;
  6947. // case 'boomYun':
  6948. // click = '互联办公';
  6949. // break;
  6950. // case 'xz':
  6951. // click = '云端下载';
  6952. // break;
  6953. // case 'client':
  6954. // click = '有思浏览器';
  6955. // break;
  6956. // case 'backEndProgramming':
  6957. // click = '在线后台编程';
  6958. // break;
  6959. // case 'frontEndProgramming':
  6960. // click = '在线前端编程';
  6961. // break;
  6962. // default: break;
  6963. // }
  6964. // if(U.MD.D.I.Ip && click){
  6965. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6966. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6967. // })
  6968. // }
  6969. // }
  6970. /**
  6971. *函数作用:ajax简易函数,使用post格式
  6972. *@param url {data} 后台地址
  6973. *@param data {data} 参数json
  6974. *@param fn {data} 回调函数
  6975. *
  6976. */
  6977. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6978. // var xhr = new XMLHttpRequest();
  6979. // xhr.open("GET",url,true);
  6980. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6981. // xhr.onreadystatechange = function(){
  6982. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6983. // fn.call(this,xhr.responseText);
  6984. // }
  6985. // };
  6986. // xhr.send();
  6987. // }
  6988. /*判断是否是内网IP*/
  6989. // U.MD.D.I.isInnerIPFn = function(str){
  6990. // var curPageUrl = str;
  6991. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6992. // curPageUrl =curPageUrl.replace(reg1,'');
  6993. // // console.log('curPageUrl-1 '+curPageUrl);
  6994. // var reg2 = /\:+/g;//替换冒号为一点
  6995. // curPageUrl =curPageUrl.replace(reg2,'.');
  6996. // // console.log('curPageUrl-2 '+curPageUrl);
  6997. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6998. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6999. // if(curPageUrl[2] != '16'){
  7000. // return ipAddress;
  7001. // }else{
  7002. // return false;
  7003. // }
  7004. // }
  7005. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7006. // //compatibility for firefox and chrome
  7007. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7008. // var pc = new myPeerConnection({
  7009. // iceServers: []
  7010. // }),
  7011. // noop = function() {},
  7012. // localIPs = {},
  7013. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7014. // key;
  7015. // function iterateIP(ip) {
  7016. // if (!localIPs[ip]) onNewIP(ip);
  7017. // localIPs[ip] = true;
  7018. // }
  7019. // //create a bogus data channel
  7020. // pc.createDataChannel("");
  7021. // // create offer and set local description
  7022. // pc.createOffer().then(function(sdp) {
  7023. // sdp.sdp.split('\n').forEach(function(line) {
  7024. // if (line.indexOf('candidate') < 0) return;
  7025. // line.match(ipRegex).forEach(iterateIP);
  7026. // });
  7027. // pc.setLocalDescription(sdp, noop, noop);
  7028. // }).catch(function(reason) {
  7029. // // An error occurred, so handle the failure to connect
  7030. // });
  7031. // //sten for candidate events
  7032. // pc.onicecandidate = function(ice) {
  7033. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7034. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7035. // };
  7036. // }
  7037. // U.MD.D.I.getUserIpBool = function(callback){
  7038. // U.MD.D.I.getUserIP(function(ip){
  7039. // alert("Got IP! :" + ip);
  7040. // });
  7041. //}
  7042. //#endregion
  7043. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7044. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7045. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7046. _userinfo = US.userInfo, //登录用户信息
  7047. _userid = US.userInfo.userid //登录用户id
  7048. let _iframe;
  7049. let _cid = cid,
  7050. _stage = stage,
  7051. _task = task,
  7052. _tool = tool;
  7053. var _jie = $$("div", {
  7054. "style": {
  7055. "position": "absolute",
  7056. "bottom": "50px",
  7057. "right": "50px",
  7058. "zIndex": "9999",
  7059. "backgroundColor": "#2268bc",
  7060. "color": "#fff",
  7061. "padding": "12px 20px",
  7062. "cursor": "pointer",
  7063. "borderRadius": "4px",
  7064. },
  7065. "innerHTML": "提交作业"
  7066. })
  7067. let aTool = ''
  7068. let _loading = document.createElement('div')
  7069. _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;"
  7070. // _loading.id = "";
  7071. let _lchild = document.createElement('div')
  7072. let _limg = document.createElement('img')
  7073. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7074. _limg.style = "width: 26px;margin-right: 10px;"
  7075. _lchild.appendChild(_limg)
  7076. let _lspan = document.createElement('span')
  7077. _lspan.innerHTML = "上传中..."
  7078. _lchild.appendChild(_lspan)
  7079. _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%);"
  7080. _loading.appendChild(_lchild)
  7081. var _box = $$('div', {
  7082. "style": {
  7083. "position": "relative",
  7084. "width": "100%",
  7085. "height": "100%",
  7086. },
  7087. })
  7088. _box.appendChild(_loading)
  7089. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7090. switch (str) {
  7091. case "whiteboard":
  7092. aTool = 1;
  7093. _iframe = $$("iframe", {
  7094. "frameborder": "no",
  7095. "border": "0",
  7096. "scrolling ": "no",
  7097. "style": {
  7098. "cssText": "border:0;width:100%;height:100%"
  7099. },
  7100. "src": "https://beta.iwb.cocorobo.cn/"
  7101. })
  7102. _box.appendChild(_iframe);
  7103. _box.appendChild(_jie);
  7104. _formdiv = new U.UF.UI.form(
  7105. "电子白板",
  7106. _box, {
  7107. "id": "whiteboard" + cid + stage + task + tool,
  7108. "style": {
  7109. "width": "90%",
  7110. "height": "90%",
  7111. "overflow": 'hidden'
  7112. },
  7113. "onresize": function () { }
  7114. }, {
  7115. closecallback: function () { }
  7116. }, {
  7117. "style": {
  7118. "height": "36px"
  7119. }
  7120. }).form; //创建窗体
  7121. _taskbar = {
  7122. "id": str + _formdiv.id,
  7123. "style": {
  7124. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7125. },
  7126. "name": "电子白板",
  7127. "forms": _formdiv,
  7128. "click": function () {
  7129. U.MD.D.I.openApplication(str, obj, info);
  7130. }
  7131. }
  7132. break;
  7133. case "mind":
  7134. aTool = 3;
  7135. _iframe = $$("iframe", {
  7136. "frameborder": "no",
  7137. "border": "0",
  7138. "scrolling ": "no",
  7139. "style": {
  7140. "cssText": "border:0;width:100%;height:100%"
  7141. },
  7142. "src": "/kityminder-editor/dist/index.html"
  7143. })
  7144. _box.appendChild(_iframe);
  7145. _box.appendChild(_jie);
  7146. _formdiv = new U.UF.UI.form(
  7147. "思维导图",
  7148. _box, { //"/jsmind/example/demo.html"
  7149. "id": "mind" + cid + stage + task + tool,
  7150. "style": {
  7151. "width": "90%",
  7152. "height": "90%",
  7153. "overflow": 'hidden'
  7154. },
  7155. "onresize": function () { }
  7156. }, {
  7157. closecallback: function () { }
  7158. }, {
  7159. "style": {
  7160. "height": "36px"
  7161. }
  7162. }).form; //创建窗体
  7163. _taskbar = {
  7164. "id": str + _formdiv.id,
  7165. "style": {
  7166. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7167. },
  7168. "name": "思维导图",
  7169. "forms": _formdiv,
  7170. "click": function () {
  7171. U.MD.D.I.openApplication(str, obj, info);
  7172. }
  7173. }
  7174. break;
  7175. case "MindMap":
  7176. aTool = 3;
  7177. _iframe = $$("iframe", {
  7178. "frameborder": "no",
  7179. "border": "0",
  7180. "scrolling ": "no",
  7181. "style": {
  7182. "cssText": "border:0;width:100%;height:100%"
  7183. },
  7184. "src": "//cloud.cocorobo.cn/mind/"
  7185. })
  7186. _box.appendChild(_iframe);
  7187. _box.appendChild(_jie);
  7188. _formdiv = new U.UF.UI.form(
  7189. "思维导图",
  7190. _box, { //"/jsmind/example/demo.html"
  7191. "id": "mind" + cid + stage + task + tool,
  7192. "style": {
  7193. "width": "90%",
  7194. "height": "90%",
  7195. "overflow": 'hidden'
  7196. },
  7197. "onresize": function () { }
  7198. }, {
  7199. closecallback: function () { }
  7200. }, {
  7201. "style": {
  7202. "height": "36px"
  7203. }
  7204. }).form; //创建窗体
  7205. _taskbar = {
  7206. "id": str + _formdiv.id,
  7207. "style": {
  7208. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7209. },
  7210. "name": "思维导图",
  7211. "forms": _formdiv,
  7212. "click": function () {
  7213. U.MD.D.I.openApplication(str, obj, info);
  7214. }
  7215. }
  7216. break;
  7217. case "doc":
  7218. aTool = 6;
  7219. _iframe = $$("iframe", {
  7220. "frameborder": "no",
  7221. "border": "0",
  7222. "scrolling ": "no",
  7223. "style": {
  7224. "cssText": "border:0;width:100%;height:100%"
  7225. },
  7226. "src": "/Office/Word/WordEditArea.htm"
  7227. })
  7228. _box.appendChild(_iframe);
  7229. _box.appendChild(_jie);
  7230. _formdiv = new U.UF.UI.form(
  7231. "协同文档",
  7232. _box, {
  7233. "id": "doc" + cid + stage + task + tool,
  7234. "style": {
  7235. "width": "90%",
  7236. "height": "90%",
  7237. "overflow": 'hidden'
  7238. },
  7239. "onresize": function () { }
  7240. }, {
  7241. closecallback: function () { }
  7242. }, {
  7243. "style": {
  7244. "height": "36px"
  7245. }
  7246. }).form; //创建窗体
  7247. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7248. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7249. })
  7250. _taskbar = {
  7251. "id": str + _formdiv.id,
  7252. "style": {
  7253. "backgroundImage": "url(/img/icon/doc.png)"
  7254. },
  7255. "name": "协同文档",
  7256. "forms": _formdiv,
  7257. "click": function () {
  7258. U.MD.D.I.openApplication(str, obj, info);
  7259. }
  7260. }
  7261. break;
  7262. case "mindNetwork": //好友打开
  7263. aTool = 7;
  7264. _iframe = $$("iframe", {
  7265. "webkitallowfullscreen": "",
  7266. "mozallowfullscreen": "",
  7267. "allowfullscreen": "",
  7268. "frameborder": "no",
  7269. "border": "0",
  7270. "scrolling ": "no",
  7271. "style": {
  7272. "cssText": "border:0; width:100%; height:100%;"
  7273. },
  7274. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7275. })
  7276. _box.appendChild(_iframe);
  7277. _box.appendChild(_jie);
  7278. _formdiv = new U.UF.UI.form(
  7279. "思维网格",
  7280. _box, {
  7281. "id": "mindNetwork" + cid + stage + task + tool,
  7282. "style": {
  7283. "width": "90%",
  7284. "height": "90%",
  7285. "overflow": 'hidden'
  7286. },
  7287. "onresize": function () { }
  7288. }, {
  7289. closecallback: function () { }
  7290. }, {
  7291. "style": {
  7292. "height": "36px"
  7293. }
  7294. }).form; //创建窗体
  7295. _taskbar = {
  7296. "id": str + _formdiv.id,
  7297. "style": {
  7298. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7299. },
  7300. "name": "思维网格",
  7301. "forms": _formdiv,
  7302. "click": function () {
  7303. U.MD.D.I.openApplication(str, obj, info);
  7304. }
  7305. }
  7306. break;
  7307. case "courseDesign":
  7308. _iframe = $$("iframe", {
  7309. "webkitallowfullscreen": "",
  7310. "mozallowfullscreen": "",
  7311. "allowfullscreen": "",
  7312. "frameborder": "no",
  7313. "border": "0",
  7314. "scrolling ": "no",
  7315. "style": {
  7316. "cssText": "border:0; width:100%; height:100%;"
  7317. },
  7318. "src": "/course-design-vue"
  7319. })
  7320. _box.appendChild(_iframe);
  7321. _box.appendChild(_jie);
  7322. _formdiv = new U.UF.UI.form(
  7323. "项目设计",
  7324. _box, {
  7325. "id": "courseDesign" + cid + stage + task + tool,
  7326. "style": {
  7327. "width": "90%",
  7328. "height": "90%",
  7329. "overflow": 'hidden'
  7330. },
  7331. "onresize": function () { }
  7332. }, {
  7333. closecallback: function () { }
  7334. }, {
  7335. "style": {
  7336. "height": "36px"
  7337. }
  7338. }).form; //创建窗体
  7339. _taskbar = {
  7340. "id": str + _formdiv.id,
  7341. "style": {
  7342. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7343. },
  7344. "name": "项目设计",
  7345. "forms": _formdiv,
  7346. "click": function () {
  7347. U.MD.D.I.openApplication(str, obj, info);
  7348. }
  7349. }
  7350. break;
  7351. }
  7352. const script1 = document.createElement("script");
  7353. script1.type = "text/javascript";
  7354. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7355. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7356. const script2 = document.createElement("script");
  7357. script2.type = "text/javascript";
  7358. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7359. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7360. const script3 = document.createElement("script");
  7361. script3.type = "text/javascript";
  7362. script3.charset = "UTF-8";
  7363. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7364. const script4 = document.createElement("script");
  7365. script4.type = "text/javascript";
  7366. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7367. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7368. if (_iframe) {
  7369. if (str == 'doc') {
  7370. _iframe = _formdiv.querySelector('iframe')
  7371. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7372. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7373. _iframe.contentWindow.document.body.appendChild(script1);
  7374. _iframe.contentWindow.document.body.appendChild(script2);
  7375. // _iframe.contentWindow.document.body.appendChild(script3);
  7376. _iframe.contentWindow.document.body.appendChild(script4);
  7377. })
  7378. if (onloadListener) {
  7379. _iframe.contentDocument.location.reload()
  7380. } else {
  7381. _iframe.contentDocument.location.reload()
  7382. }
  7383. } else if (str == 'courseDesign') {
  7384. U.UF.DL.iframeLoad(_iframe, function () {
  7385. // _iframe.contentWindow.U.MD.O.W.load();
  7386. // _iframe.contentWindow.document.body.appendChild(script1);
  7387. _iframe.contentWindow.document.body.appendChild(script2);
  7388. _iframe.contentWindow.document.body.appendChild(script4);
  7389. })
  7390. } else if (str == 'mind') {
  7391. _iframe = _formdiv.querySelector('iframe')
  7392. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7393. //
  7394. _iframe.contentWindow.document.body.appendChild(script1);
  7395. _iframe.contentWindow.document.body.appendChild(script2);
  7396. _iframe.contentWindow.document.body.appendChild(script4);
  7397. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7398. })
  7399. if (onloadListener) {
  7400. _iframe.contentDocument.location.reload()
  7401. } else {
  7402. _iframe.contentDocument.location.reload()
  7403. }
  7404. } else if (str == 'whiteboard') {
  7405. _iframe = _formdiv.querySelector('iframe')
  7406. let onloadListener = _iframe.onload = () => {
  7407. _iframe.contentWindow.document.body.appendChild(script1);
  7408. _iframe.contentWindow.document.body.appendChild(script2);
  7409. _iframe.contentWindow.document.body.appendChild(script4);
  7410. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7411. };
  7412. // if (onloadListener) {
  7413. // try {
  7414. // _iframe.src += "?cocorobo="+new Date().getTime()
  7415. // _iframe.contentWindow.document.location.reload()
  7416. // } catch (error) {
  7417. // }
  7418. // } else {
  7419. // _iframe.contentDocument.location.reload()
  7420. // }
  7421. } else {
  7422. _iframe.onload = () => {
  7423. _iframe.contentWindow.document.body.appendChild(script1);
  7424. _iframe.contentWindow.document.body.appendChild(script2);
  7425. // _iframe.contentWindow.document.body.appendChild(script3);
  7426. _iframe.contentWindow.document.body.appendChild(script4);
  7427. };
  7428. }
  7429. _jie.onclick = async () => {
  7430. let text = ''
  7431. if (aTool == 1) {
  7432. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7433. } else if (aTool == 6) {
  7434. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7435. } else if (aTool == 3) {
  7436. text = await U.MD.D.I.getEditorContent(_iframe);
  7437. }
  7438. _loading.style.display = 'flex'
  7439. console.log(_loading);
  7440. var _ajs = _iframe.contentWindow.document.createElement("script");
  7441. _ajs.type = "text/javascript";
  7442. _ajs.innerHTML =
  7443. // 'console.log(' + _loading + ');\n' +
  7444. 'var _js = document.createElement("script");\n' +
  7445. '_js.type="text/javascript";\n' +
  7446. '_js.charset="UTF-8";\n' +
  7447. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7448. "_js.onload = function(){\n" +
  7449. ' var a = document.getElementsByTagName("img")\n' +
  7450. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7451. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7452. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7453. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7454. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7455. "beforeUpload_shishi(file," +
  7456. "'" +
  7457. _userid +
  7458. "'" +
  7459. ", " +
  7460. "'" +
  7461. _cid +
  7462. "'" +
  7463. ", " +
  7464. "'" +
  7465. _stage +
  7466. "'" +
  7467. ", " +
  7468. "'" +
  7469. _task +
  7470. "'" +
  7471. ", " +
  7472. "'" +
  7473. _tool +
  7474. "'" +
  7475. ", " +
  7476. "'" +
  7477. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7478. "'" +
  7479. ", " +
  7480. "'" +
  7481. aTool +
  7482. "'" +
  7483. ", " +
  7484. "`" +
  7485. text +
  7486. "`" +
  7487. ")\n" +
  7488. " });\n" +
  7489. "}\n" +
  7490. "document.head.appendChild(_js);\n";
  7491. _iframe.contentWindow.document.head.appendChild(_ajs);
  7492. }
  7493. }
  7494. //U.MD.D.I.openClick(str);
  7495. //如果有任务栏信息
  7496. // if (_taskbar) {
  7497. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7498. // }
  7499. }
  7500. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7501. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7502. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7503. _userinfo = US.userInfo, //登录用户信息
  7504. _userid = US.userInfo.userid //登录用户id
  7505. let _iframe;
  7506. let _cid = cid,
  7507. _stage = stage,
  7508. _task = task,
  7509. _tool = tool;
  7510. var _jie = $$("div", {
  7511. "style": {
  7512. "position": "absolute",
  7513. "bottom": "50px",
  7514. "right": "50px",
  7515. "zIndex": "9999",
  7516. "backgroundColor": "#2268bc",
  7517. "color": "#fff",
  7518. "padding": "12px 20px",
  7519. "cursor": "pointer",
  7520. "borderRadius": "4px",
  7521. },
  7522. "innerHTML": "提交作业"
  7523. })
  7524. let aTool = ''
  7525. let _loading = document.createElement('div')
  7526. _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;"
  7527. // _loading.id = "";
  7528. let _lchild = document.createElement('div')
  7529. let _limg = document.createElement('img')
  7530. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7531. _limg.style = "width: 26px;margin-right: 10px;"
  7532. _lchild.appendChild(_limg)
  7533. let _lspan = document.createElement('span')
  7534. _lspan.innerHTML = "上传中..."
  7535. _lchild.appendChild(_lspan)
  7536. _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%);"
  7537. _loading.appendChild(_lchild)
  7538. let _box = $$('div', {
  7539. "style": {
  7540. "position": "relative",
  7541. "width": "100%",
  7542. "height": "100%",
  7543. },
  7544. })
  7545. _box.appendChild(_loading)
  7546. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7547. switch (str) {
  7548. case "whiteboard":
  7549. aTool = 1;
  7550. _iframe = $$("iframe", {
  7551. "frameborder": "no",
  7552. "border": "0",
  7553. "scrolling ": "no",
  7554. "style": {
  7555. "cssText": "border:0;width:100%;height:100%"
  7556. },
  7557. "src": "https://beta.iwb.cocorobo.cn/"
  7558. })
  7559. _box.appendChild(_iframe);
  7560. _box.appendChild(_jie);
  7561. _formdiv = new U.UF.UI.form(
  7562. "电子白板",
  7563. _box, {
  7564. "id": "whiteboard" + cid + stage + task + tool,
  7565. "style": {
  7566. "width": "90%",
  7567. "height": "90%",
  7568. "overflow": 'hidden'
  7569. },
  7570. "onresize": function () { }
  7571. }, {
  7572. closecallback: function () { }
  7573. }, {
  7574. "style": {
  7575. "height": "36px"
  7576. }
  7577. }).form; //创建窗体
  7578. _taskbar = {
  7579. "id": str + _formdiv.id,
  7580. "style": {
  7581. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7582. },
  7583. "name": "电子白板",
  7584. "forms": _formdiv,
  7585. "click": function () {
  7586. U.MD.D.I.openApplication(str, obj, info);
  7587. }
  7588. }
  7589. break;
  7590. case "mind":
  7591. aTool = 3;
  7592. _iframe = $$("iframe", {
  7593. "frameborder": "no",
  7594. "border": "0",
  7595. "scrolling ": "no",
  7596. "style": {
  7597. "cssText": "border:0;width:100%;height:100%"
  7598. },
  7599. "src": "/kityminder-editor/dist/index.html"
  7600. })
  7601. _box.appendChild(_iframe);
  7602. _box.appendChild(_jie);
  7603. _formdiv = new U.UF.UI.form(
  7604. "思维导图",
  7605. _box, { //"/jsmind/example/demo.html"
  7606. "id": "mind" + cid + stage + task + tool,
  7607. "style": {
  7608. "width": "90%",
  7609. "height": "90%",
  7610. "overflow": 'hidden'
  7611. },
  7612. "onresize": function () { }
  7613. }, {
  7614. closecallback: function () { }
  7615. }, {
  7616. "style": {
  7617. "height": "36px"
  7618. }
  7619. }).form; //创建窗体
  7620. _taskbar = {
  7621. "id": str + _formdiv.id,
  7622. "style": {
  7623. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7624. },
  7625. "name": "思维导图",
  7626. "forms": _formdiv,
  7627. "click": function () {
  7628. U.MD.D.I.openApplication(str, obj, info);
  7629. }
  7630. }
  7631. break;
  7632. case "MindMap":
  7633. aTool = 3;
  7634. _iframe = $$("iframe", {
  7635. "frameborder": "no",
  7636. "border": "0",
  7637. "scrolling ": "no",
  7638. "style": {
  7639. "cssText": "border:0;width:100%;height:100%"
  7640. },
  7641. "src": "//cloud.cocorobo.cn/mind/"
  7642. })
  7643. _box.appendChild(_iframe);
  7644. _box.appendChild(_jie);
  7645. _formdiv = new U.UF.UI.form(
  7646. "思维导图",
  7647. _box, { //"/jsmind/example/demo.html"
  7648. "id": "mind" + cid + stage + task + tool,
  7649. "style": {
  7650. "width": "90%",
  7651. "height": "90%",
  7652. "overflow": 'hidden'
  7653. },
  7654. "onresize": function () { }
  7655. }, {
  7656. closecallback: function () { }
  7657. }, {
  7658. "style": {
  7659. "height": "36px"
  7660. }
  7661. }).form; //创建窗体
  7662. _taskbar = {
  7663. "id": str + _formdiv.id,
  7664. "style": {
  7665. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7666. },
  7667. "name": "思维导图",
  7668. "forms": _formdiv,
  7669. "click": function () {
  7670. U.MD.D.I.openApplication(str, obj, info);
  7671. }
  7672. }
  7673. break;
  7674. case "doc":
  7675. aTool = 6;
  7676. _iframe = $$("iframe", {
  7677. "frameborder": "no",
  7678. "border": "0",
  7679. "scrolling ": "no",
  7680. "style": {
  7681. "cssText": "border:0;width:100%;height:100%"
  7682. },
  7683. "src": "/Office/Word/WordEditArea.htm"
  7684. })
  7685. _box.appendChild(_iframe);
  7686. _box.appendChild(_jie);
  7687. _formdiv = new U.UF.UI.form(
  7688. "协同文档",
  7689. _box, {
  7690. "id": "doc" + cid + stage + task + tool,
  7691. "style": {
  7692. "width": "90%",
  7693. "height": "90%",
  7694. "overflow": 'hidden'
  7695. },
  7696. "onresize": function () { }
  7697. }, {
  7698. closecallback: function () { }
  7699. }, {
  7700. "style": {
  7701. "height": "36px"
  7702. }
  7703. }).form; //创建窗体
  7704. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7705. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7706. })
  7707. _taskbar = {
  7708. "id": str + _formdiv.id,
  7709. "style": {
  7710. "backgroundImage": "url(/img/icon/doc.png)"
  7711. },
  7712. "name": "协同文档",
  7713. "forms": _formdiv,
  7714. "click": function () {
  7715. U.MD.D.I.openApplication(str, obj, info);
  7716. }
  7717. }
  7718. break;
  7719. case "mindNetwork": //好友打开
  7720. aTool = 7;
  7721. _iframe = $$("iframe", {
  7722. "webkitallowfullscreen": "",
  7723. "mozallowfullscreen": "",
  7724. "allowfullscreen": "",
  7725. "frameborder": "no",
  7726. "border": "0",
  7727. "scrolling ": "no",
  7728. "style": {
  7729. "cssText": "border:0; width:100%; height:100%;"
  7730. },
  7731. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7732. })
  7733. _box.appendChild(_iframe);
  7734. _box.appendChild(_jie);
  7735. _formdiv = new U.UF.UI.form(
  7736. "思维网格",
  7737. _box, {
  7738. "id": "mindNetwork" + cid + stage + task + tool,
  7739. "style": {
  7740. "width": "90%",
  7741. "height": "90%",
  7742. "overflow": 'hidden'
  7743. },
  7744. "onresize": function () { }
  7745. }, {
  7746. closecallback: function () { }
  7747. }, {
  7748. "style": {
  7749. "height": "36px"
  7750. }
  7751. }).form; //创建窗体
  7752. _taskbar = {
  7753. "id": str + _formdiv.id,
  7754. "style": {
  7755. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7756. },
  7757. "name": "思维网格",
  7758. "forms": _formdiv,
  7759. "click": function () {
  7760. U.MD.D.I.openApplication(str, obj, info);
  7761. }
  7762. }
  7763. break;
  7764. case "courseDesign":
  7765. _iframe = $$("iframe", {
  7766. "webkitallowfullscreen": "",
  7767. "mozallowfullscreen": "",
  7768. "allowfullscreen": "",
  7769. "frameborder": "no",
  7770. "border": "0",
  7771. "scrolling ": "no",
  7772. "style": {
  7773. "cssText": "border:0; width:100%; height:100%;"
  7774. },
  7775. "src": "/course-design-vue"
  7776. })
  7777. _box.appendChild(_iframe);
  7778. _box.appendChild(_jie);
  7779. _formdiv = new U.UF.UI.form(
  7780. "项目设计",
  7781. _box, {
  7782. "id": "courseDesign" + cid + stage + task + tool,
  7783. "style": {
  7784. "width": "90%",
  7785. "height": "90%",
  7786. "overflow": 'hidden'
  7787. },
  7788. "onresize": function () { }
  7789. }, {
  7790. closecallback: function () { }
  7791. }, {
  7792. "style": {
  7793. "height": "36px"
  7794. }
  7795. }).form; //创建窗体
  7796. _taskbar = {
  7797. "id": str + _formdiv.id,
  7798. "style": {
  7799. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7800. },
  7801. "name": "项目设计",
  7802. "forms": _formdiv,
  7803. "click": function () {
  7804. U.MD.D.I.openApplication(str, obj, info);
  7805. }
  7806. }
  7807. break;
  7808. }
  7809. const script1 = document.createElement("script");
  7810. script1.type = "text/javascript";
  7811. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7812. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7813. const script2 = document.createElement("script");
  7814. script2.type = "text/javascript";
  7815. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7816. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7817. const script3 = document.createElement("script");
  7818. script3.type = "text/javascript";
  7819. script3.charset = "UTF-8";
  7820. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7821. const script4 = document.createElement("script");
  7822. script4.type = "text/javascript";
  7823. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7824. script4.src = window.origin + "/js/Common/jietu2E.js";
  7825. if (_iframe) {
  7826. if (str == 'doc') {
  7827. _iframe = _formdiv.querySelector('iframe')
  7828. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7829. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7830. _iframe.contentWindow.document.body.appendChild(script1);
  7831. _iframe.contentWindow.document.body.appendChild(script2);
  7832. // _iframe.contentWindow.document.body.appendChild(script3);
  7833. _iframe.contentWindow.document.body.appendChild(script4);
  7834. })
  7835. if (onloadListener) {
  7836. _iframe.contentDocument.location.reload()
  7837. } else {
  7838. _iframe.contentDocument.location.reload()
  7839. }
  7840. } else if (str == 'courseDesign') {
  7841. U.UF.DL.iframeLoad(_iframe, function () {
  7842. // _iframe.contentWindow.U.MD.O.W.load();
  7843. // _iframe.contentWindow.document.body.appendChild(script1);
  7844. _iframe.contentWindow.document.body.appendChild(script2);
  7845. _iframe.contentWindow.document.body.appendChild(script4);
  7846. })
  7847. } else if (str == 'mind') {
  7848. _iframe = _formdiv.querySelector('iframe')
  7849. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7850. //
  7851. _iframe.contentWindow.document.body.appendChild(script1);
  7852. _iframe.contentWindow.document.body.appendChild(script2);
  7853. _iframe.contentWindow.document.body.appendChild(script4);
  7854. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7855. })
  7856. if (onloadListener) {
  7857. _iframe.contentDocument.location.reload()
  7858. } else {
  7859. _iframe.contentDocument.location.reload()
  7860. }
  7861. } else if (str == 'whiteboard') {
  7862. _iframe = _formdiv.querySelector('iframe')
  7863. let onloadListener = _iframe.onload = () => {
  7864. _iframe.contentWindow.document.body.appendChild(script1);
  7865. _iframe.contentWindow.document.body.appendChild(script2);
  7866. _iframe.contentWindow.document.body.appendChild(script4);
  7867. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7868. };
  7869. // if (onloadListener) {
  7870. // try {
  7871. // _iframe.src += "?cocorobo="+new Date().getTime()
  7872. // _iframe.contentWindow.document.location.reload()
  7873. // } catch (error) {
  7874. // }
  7875. // } else {
  7876. // _iframe.contentDocument.location.reload()
  7877. // }
  7878. } else {
  7879. _iframe.onload = () => {
  7880. _iframe.contentWindow.document.body.appendChild(script1);
  7881. _iframe.contentWindow.document.body.appendChild(script2);
  7882. // _iframe.contentWindow.document.body.appendChild(script3);
  7883. _iframe.contentWindow.document.body.appendChild(script4);
  7884. };
  7885. }
  7886. _jie.onclick = async () => {
  7887. let text = ''
  7888. if (aTool == 1) {
  7889. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7890. } else if (aTool == 6) {
  7891. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7892. } else if (aTool == 3) {
  7893. text = await U.MD.D.I.getEditorContent(_iframe);
  7894. }
  7895. _loading.style.display = 'flex'
  7896. console.log(_loading);
  7897. var _ajs = _iframe.contentWindow.document.createElement("script");
  7898. _ajs.type = "text/javascript";
  7899. _ajs.innerHTML =
  7900. // 'console.log(' + _loading + ');\n' +
  7901. 'var _js = document.createElement("script");\n' +
  7902. '_js.type="text/javascript";\n' +
  7903. '_js.charset="UTF-8";\n' +
  7904. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7905. "_js.onload = function(){\n" +
  7906. ' var a = document.getElementsByTagName("img")\n' +
  7907. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7908. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7909. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7910. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7911. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7912. "beforeUpload_shishi(file," +
  7913. "'" +
  7914. _userid +
  7915. "'" +
  7916. ", " +
  7917. "'" +
  7918. _cid +
  7919. "'" +
  7920. ", " +
  7921. "'" +
  7922. _stage +
  7923. "'" +
  7924. ", " +
  7925. "'" +
  7926. _task +
  7927. "'" +
  7928. ", " +
  7929. "'" +
  7930. _tool +
  7931. "'" +
  7932. ", " +
  7933. "'" +
  7934. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7935. "'" +
  7936. ", " +
  7937. "'" +
  7938. aTool +
  7939. "'" +
  7940. ", " +
  7941. "`" +
  7942. text +
  7943. "`" +
  7944. ")\n" +
  7945. " });\n" +
  7946. "}\n" +
  7947. "document.head.appendChild(_js);\n";
  7948. _iframe.contentWindow.document.head.appendChild(_ajs);
  7949. }
  7950. }
  7951. //U.MD.D.I.openClick(str);
  7952. //如果有任务栏信息
  7953. // if (_taskbar) {
  7954. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7955. // }
  7956. }
  7957. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7958. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7959. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7960. _userid = student.userid, //登录用户id
  7961. _username = student.student //用户名字
  7962. let _iframe;
  7963. let _cid = cid,
  7964. _stage = stage,
  7965. _task = task,
  7966. _tool = tool;
  7967. var _jie = $$("div", {
  7968. "style": {
  7969. "position": "absolute",
  7970. "bottom": "50px",
  7971. "right": "50px",
  7972. "zIndex": "9999",
  7973. "backgroundColor": "#2268bc",
  7974. "color": "#fff",
  7975. "padding": "12px 20px",
  7976. "cursor": "pointer",
  7977. "borderRadius": "4px",
  7978. },
  7979. "innerHTML": "提交作业"
  7980. })
  7981. let aTool = ''
  7982. let _loading = document.createElement('div')
  7983. _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;"
  7984. // _loading.id = "";
  7985. let _lchild = document.createElement('div')
  7986. let _limg = document.createElement('img')
  7987. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7988. _limg.style = "width: 26px;margin-right: 10px;"
  7989. _lchild.appendChild(_limg)
  7990. let _lspan = document.createElement('span')
  7991. _lspan.innerHTML = "上传中..."
  7992. _lchild.appendChild(_lspan)
  7993. _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%);"
  7994. _loading.appendChild(_lchild)
  7995. var _box = $$('div', {
  7996. "style": {
  7997. "position": "relative",
  7998. "width": "100%",
  7999. "height": "100%",
  8000. },
  8001. })
  8002. _box.appendChild(_loading)
  8003. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8004. switch (str) {
  8005. case "whiteboard":
  8006. aTool = 1;
  8007. _iframe = $$("iframe", {
  8008. "frameborder": "no",
  8009. "border": "0",
  8010. "scrolling ": "no",
  8011. "style": {
  8012. "cssText": "border:0;width:100%;height:100%"
  8013. },
  8014. "src": "https://beta.iwb.cocorobo.cn/"
  8015. })
  8016. _box.appendChild(_iframe);
  8017. _box.appendChild(_jie);
  8018. _formdiv = new U.UF.UI.form(
  8019. "电子白板-" + _username,
  8020. _box, {
  8021. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8022. "style": {
  8023. "width": "90%",
  8024. "height": "90%",
  8025. "overflow": 'hidden'
  8026. },
  8027. "onresize": function () { }
  8028. }, {
  8029. closecallback: function () { }
  8030. }, {
  8031. "style": {
  8032. "height": "36px"
  8033. }
  8034. }).form; //创建窗体
  8035. _taskbar = {
  8036. "id": str + _formdiv.id,
  8037. "style": {
  8038. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8039. },
  8040. "name": "电子白板",
  8041. "forms": _formdiv,
  8042. "click": function () {
  8043. U.MD.D.I.openApplication(str, obj, info);
  8044. }
  8045. }
  8046. break;
  8047. case "mind":
  8048. aTool = 3;
  8049. _iframe = $$("iframe", {
  8050. "frameborder": "no",
  8051. "border": "0",
  8052. "scrolling ": "no",
  8053. "style": {
  8054. "cssText": "border:0;width:100%;height:100%"
  8055. },
  8056. "src": "/kityminder-editor/dist/index.html"
  8057. })
  8058. _box.appendChild(_iframe);
  8059. _box.appendChild(_jie);
  8060. _formdiv = new U.UF.UI.form(
  8061. "思维导图-" + _username,
  8062. _box, { //"/jsmind/example/demo.html"
  8063. "id": "mind" + cid + stage + task + tool + _userid,
  8064. "style": {
  8065. "width": "90%",
  8066. "height": "90%",
  8067. "overflow": 'hidden'
  8068. },
  8069. "onresize": function () { }
  8070. }, {
  8071. closecallback: function () { }
  8072. }, {
  8073. "style": {
  8074. "height": "36px"
  8075. }
  8076. }).form; //创建窗体
  8077. _taskbar = {
  8078. "id": str + _formdiv.id,
  8079. "style": {
  8080. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8081. },
  8082. "name": "思维导图",
  8083. "forms": _formdiv,
  8084. "click": function () {
  8085. U.MD.D.I.openApplication(str, obj, info);
  8086. }
  8087. }
  8088. break;
  8089. case "MindMap":
  8090. aTool = 3;
  8091. _iframe = $$("iframe", {
  8092. "frameborder": "no",
  8093. "border": "0",
  8094. "scrolling ": "no",
  8095. "style": {
  8096. "cssText": "border:0;width:100%;height:100%"
  8097. },
  8098. "src": "//cloud.cocorobo.cn/mind/"
  8099. })
  8100. _box.appendChild(_iframe);
  8101. _box.appendChild(_jie);
  8102. _formdiv = new U.UF.UI.form(
  8103. "思维导图-" + _username,
  8104. _box, { //"/jsmind/example/demo.html"
  8105. "id": "mind" + cid + stage + task + tool + _userid,
  8106. "style": {
  8107. "width": "90%",
  8108. "height": "90%",
  8109. "overflow": 'hidden'
  8110. },
  8111. "onresize": function () { }
  8112. }, {
  8113. closecallback: function () { }
  8114. }, {
  8115. "style": {
  8116. "height": "36px"
  8117. }
  8118. }).form; //创建窗体
  8119. _taskbar = {
  8120. "id": str + _formdiv.id,
  8121. "style": {
  8122. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8123. },
  8124. "name": "思维导图",
  8125. "forms": _formdiv,
  8126. "click": function () {
  8127. U.MD.D.I.openApplication(str, obj, info);
  8128. }
  8129. }
  8130. break;
  8131. case "doc":
  8132. aTool = 6;
  8133. _iframe = $$("iframe", {
  8134. "frameborder": "no",
  8135. "border": "0",
  8136. "scrolling ": "no",
  8137. "style": {
  8138. "cssText": "border:0;width:100%;height:100%"
  8139. },
  8140. "src": "/Office/Word/WordEditArea.htm"
  8141. })
  8142. _box.appendChild(_iframe);
  8143. _box.appendChild(_jie);
  8144. _formdiv = new U.UF.UI.form(
  8145. "协同文档-" + _username,
  8146. _box, {
  8147. "id": "doc" + cid + stage + task + tool + _userid,
  8148. "style": {
  8149. "width": "90%",
  8150. "height": "90%",
  8151. "overflow": 'hidden'
  8152. },
  8153. "onresize": function () { }
  8154. }, {
  8155. closecallback: function () { }
  8156. }, {
  8157. "style": {
  8158. "height": "36px"
  8159. }
  8160. }).form; //创建窗体
  8161. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8162. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8163. })
  8164. _taskbar = {
  8165. "id": str + _formdiv.id,
  8166. "style": {
  8167. "backgroundImage": "url(/img/icon/doc.png)"
  8168. },
  8169. "name": "协同文档",
  8170. "forms": _formdiv,
  8171. "click": function () {
  8172. U.MD.D.I.openApplication(str, obj, info);
  8173. }
  8174. }
  8175. break;
  8176. case "mindNetwork": //好友打开
  8177. aTool = 7;
  8178. _iframe = $$("iframe", {
  8179. "webkitallowfullscreen": "",
  8180. "mozallowfullscreen": "",
  8181. "allowfullscreen": "",
  8182. "frameborder": "no",
  8183. "border": "0",
  8184. "scrolling ": "no",
  8185. "style": {
  8186. "cssText": "border:0; width:100%; height:100%;"
  8187. },
  8188. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8189. })
  8190. _box.appendChild(_iframe);
  8191. _box.appendChild(_jie);
  8192. _formdiv = new U.UF.UI.form(
  8193. "思维网格-" + _username,
  8194. _box, {
  8195. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8196. "style": {
  8197. "width": "90%",
  8198. "height": "90%",
  8199. "overflow": 'hidden'
  8200. },
  8201. "onresize": function () { }
  8202. }, {
  8203. closecallback: function () { }
  8204. }, {
  8205. "style": {
  8206. "height": "36px"
  8207. }
  8208. }).form; //创建窗体
  8209. _taskbar = {
  8210. "id": str + _formdiv.id,
  8211. "style": {
  8212. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8213. },
  8214. "name": "思维网格",
  8215. "forms": _formdiv,
  8216. "click": function () {
  8217. U.MD.D.I.openApplication(str, obj, info);
  8218. }
  8219. }
  8220. break;
  8221. case "courseDesign":
  8222. _iframe = $$("iframe", {
  8223. "webkitallowfullscreen": "",
  8224. "mozallowfullscreen": "",
  8225. "allowfullscreen": "",
  8226. "frameborder": "no",
  8227. "border": "0",
  8228. "scrolling ": "no",
  8229. "style": {
  8230. "cssText": "border:0; width:100%; height:100%;"
  8231. },
  8232. "src": "/course-design-vue"
  8233. })
  8234. _box.appendChild(_iframe);
  8235. _box.appendChild(_jie);
  8236. _formdiv = new U.UF.UI.form(
  8237. "项目设计-" + _username,
  8238. _box, {
  8239. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8240. "style": {
  8241. "width": "90%",
  8242. "height": "90%",
  8243. "overflow": 'hidden'
  8244. },
  8245. "onresize": function () { }
  8246. }, {
  8247. closecallback: function () { }
  8248. }, {
  8249. "style": {
  8250. "height": "36px"
  8251. }
  8252. }).form; //创建窗体
  8253. _taskbar = {
  8254. "id": str + _formdiv.id,
  8255. "style": {
  8256. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8257. },
  8258. "name": "项目设计",
  8259. "forms": _formdiv,
  8260. "click": function () {
  8261. U.MD.D.I.openApplication(str, obj, info);
  8262. }
  8263. }
  8264. break;
  8265. }
  8266. const script1 = document.createElement("script");
  8267. script1.type = "text/javascript";
  8268. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8269. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8270. const script2 = document.createElement("script");
  8271. script2.type = "text/javascript";
  8272. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8273. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8274. const script3 = document.createElement("script");
  8275. script3.type = "text/javascript";
  8276. script3.charset = "UTF-8";
  8277. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8278. const script4 = document.createElement("script");
  8279. script4.type = "text/javascript";
  8280. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8281. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8282. if (_iframe) {
  8283. if (str == 'doc') {
  8284. _iframe = _formdiv.querySelector('iframe')
  8285. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8286. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8287. _iframe.contentWindow.document.body.appendChild(script1);
  8288. _iframe.contentWindow.document.body.appendChild(script2);
  8289. // _iframe.contentWindow.document.body.appendChild(script3);
  8290. _iframe.contentWindow.document.body.appendChild(script4);
  8291. })
  8292. if (onloadListener) {
  8293. _iframe.contentDocument.location.reload()
  8294. } else {
  8295. _iframe.contentDocument.location.reload()
  8296. }
  8297. } else if (str == 'courseDesign') {
  8298. U.UF.DL.iframeLoad(_iframe, function () {
  8299. // _iframe.contentWindow.U.MD.O.W.load();
  8300. // _iframe.contentWindow.document.body.appendChild(script1);
  8301. _iframe.contentWindow.document.body.appendChild(script2);
  8302. _iframe.contentWindow.document.body.appendChild(script4);
  8303. })
  8304. } else if (str == 'mind') {
  8305. _iframe = _formdiv.querySelector('iframe')
  8306. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8307. //
  8308. _iframe.contentWindow.document.body.appendChild(script1);
  8309. _iframe.contentWindow.document.body.appendChild(script2);
  8310. _iframe.contentWindow.document.body.appendChild(script4);
  8311. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8312. })
  8313. if (onloadListener) {
  8314. _iframe.contentDocument.location.reload()
  8315. } else {
  8316. _iframe.contentDocument.location.reload()
  8317. }
  8318. } else if (str == 'whiteboard') {
  8319. _iframe = _formdiv.querySelector('iframe')
  8320. let onloadListener = _iframe.onload = () => {
  8321. _iframe.contentWindow.document.body.appendChild(script1);
  8322. _iframe.contentWindow.document.body.appendChild(script2);
  8323. _iframe.contentWindow.document.body.appendChild(script4);
  8324. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8325. };
  8326. // if (onloadListener) {
  8327. // try {
  8328. // _iframe.src += "?cocorobo="+new Date().getTime()
  8329. // _iframe.contentWindow.document.location.reload()
  8330. // } catch (error) {
  8331. // }
  8332. // } else {
  8333. // _iframe.contentDocument.location.reload()
  8334. // }
  8335. } else {
  8336. _iframe.onload = () => {
  8337. _iframe.contentWindow.document.body.appendChild(script1);
  8338. _iframe.contentWindow.document.body.appendChild(script2);
  8339. // _iframe.contentWindow.document.body.appendChild(script3);
  8340. _iframe.contentWindow.document.body.appendChild(script4);
  8341. };
  8342. }
  8343. _jie.onclick = async () => {
  8344. let text = ''
  8345. if (aTool == 1) {
  8346. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8347. } else if (aTool == 6) {
  8348. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8349. } else if (aTool == 3) {
  8350. text = await U.MD.D.I.getEditorContent(_iframe);
  8351. }
  8352. _loading.style.display = 'flex'
  8353. console.log(_loading);
  8354. var _ajs = _iframe.contentWindow.document.createElement("script");
  8355. _ajs.type = "text/javascript";
  8356. _ajs.innerHTML =
  8357. // 'console.log(' + _loading + ');\n' +
  8358. 'var _js = document.createElement("script");\n' +
  8359. '_js.type="text/javascript";\n' +
  8360. '_js.charset="UTF-8";\n' +
  8361. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8362. "_js.onload = function(){\n" +
  8363. ' var a = document.getElementsByTagName("img")\n' +
  8364. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8365. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8366. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8367. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8368. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8369. "beforeUpload_shishi(file," +
  8370. "'" +
  8371. _userid +
  8372. "'" +
  8373. ", " +
  8374. "'" +
  8375. _cid +
  8376. "'" +
  8377. ", " +
  8378. "'" +
  8379. _stage +
  8380. "'" +
  8381. ", " +
  8382. "'" +
  8383. _task +
  8384. "'" +
  8385. ", " +
  8386. "'" +
  8387. _tool +
  8388. "'" +
  8389. ", " +
  8390. "'" +
  8391. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8392. "'" +
  8393. ", " +
  8394. "'" +
  8395. aTool +
  8396. "'" +
  8397. ", " +
  8398. "`" +
  8399. text +
  8400. "`" +
  8401. ")\n" +
  8402. " });\n" +
  8403. "}\n" +
  8404. "document.head.appendChild(_js);\n";
  8405. _iframe.contentWindow.document.head.appendChild(_ajs);
  8406. }
  8407. }
  8408. }
  8409. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8410. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8411. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8412. _userid = student.userid, //登录用户id
  8413. _username = student.student //用户名字
  8414. let _iframe;
  8415. let _cid = cid,
  8416. _stage = stage,
  8417. _task = task,
  8418. _tool = tool;
  8419. var _jie = $$("div", {
  8420. "style": {
  8421. "position": "absolute",
  8422. "bottom": "50px",
  8423. "right": "50px",
  8424. "zIndex": "9999",
  8425. "backgroundColor": "#2268bc",
  8426. "color": "#fff",
  8427. "padding": "12px 20px",
  8428. "cursor": "pointer",
  8429. "borderRadius": "4px",
  8430. },
  8431. "innerHTML": "提交作业"
  8432. })
  8433. let aTool = ''
  8434. let _loading = document.createElement('div')
  8435. _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;"
  8436. // _loading.id = "";
  8437. let _lchild = document.createElement('div')
  8438. let _limg = document.createElement('img')
  8439. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8440. _limg.style = "width: 26px;margin-right: 10px;"
  8441. _lchild.appendChild(_limg)
  8442. let _lspan = document.createElement('span')
  8443. _lspan.innerHTML = "上传中..."
  8444. _lchild.appendChild(_lspan)
  8445. _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%);"
  8446. _loading.appendChild(_lchild)
  8447. var _box = $$('div', {
  8448. "style": {
  8449. "position": "relative",
  8450. "width": "100%",
  8451. "height": "100%",
  8452. },
  8453. })
  8454. _box.appendChild(_loading)
  8455. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8456. switch (str) {
  8457. case "whiteboard":
  8458. aTool = 1;
  8459. _iframe = $$("iframe", {
  8460. "frameborder": "no",
  8461. "border": "0",
  8462. "scrolling ": "no",
  8463. "style": {
  8464. "cssText": "border:0;width:100%;height:100%"
  8465. },
  8466. "src": "https://beta.iwb.cocorobo.cn/"
  8467. })
  8468. _box.appendChild(_iframe);
  8469. _box.appendChild(_jie);
  8470. _formdiv = new U.UF.UI.form(
  8471. "电子白板-" + _username,
  8472. _box, {
  8473. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8474. "style": {
  8475. "width": "90%",
  8476. "height": "90%",
  8477. "overflow": 'hidden'
  8478. },
  8479. "onresize": function () { }
  8480. }, {
  8481. closecallback: function () { }
  8482. }, {
  8483. "style": {
  8484. "height": "36px"
  8485. }
  8486. }).form; //创建窗体
  8487. _taskbar = {
  8488. "id": str + _formdiv.id,
  8489. "style": {
  8490. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8491. },
  8492. "name": "电子白板",
  8493. "forms": _formdiv,
  8494. "click": function () {
  8495. U.MD.D.I.openApplication(str, obj, info);
  8496. }
  8497. }
  8498. break;
  8499. case "mind":
  8500. aTool = 3;
  8501. _iframe = $$("iframe", {
  8502. "frameborder": "no",
  8503. "border": "0",
  8504. "scrolling ": "no",
  8505. "style": {
  8506. "cssText": "border:0;width:100%;height:100%"
  8507. },
  8508. "src": "/kityminder-editor/dist/index.html"
  8509. })
  8510. _box.appendChild(_iframe);
  8511. _box.appendChild(_jie);
  8512. _formdiv = new U.UF.UI.form(
  8513. "思维导图-" + _username,
  8514. _box, { //"/jsmind/example/demo.html"
  8515. "id": "mind" + cid + stage + task + tool + _userid,
  8516. "style": {
  8517. "width": "90%",
  8518. "height": "90%",
  8519. "overflow": 'hidden'
  8520. },
  8521. "onresize": function () { }
  8522. }, {
  8523. closecallback: function () { }
  8524. }, {
  8525. "style": {
  8526. "height": "36px"
  8527. }
  8528. }).form; //创建窗体
  8529. _taskbar = {
  8530. "id": str + _formdiv.id,
  8531. "style": {
  8532. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8533. },
  8534. "name": "思维导图",
  8535. "forms": _formdiv,
  8536. "click": function () {
  8537. U.MD.D.I.openApplication(str, obj, info);
  8538. }
  8539. }
  8540. break;
  8541. case "MindMap":
  8542. aTool = 3;
  8543. _iframe = $$("iframe", {
  8544. "frameborder": "no",
  8545. "border": "0",
  8546. "scrolling ": "no",
  8547. "style": {
  8548. "cssText": "border:0;width:100%;height:100%"
  8549. },
  8550. "src": "//cloud.cocorobo.cn/mind/"
  8551. })
  8552. _box.appendChild(_iframe);
  8553. _box.appendChild(_jie);
  8554. _formdiv = new U.UF.UI.form(
  8555. "思维导图-" + _username,
  8556. _box, { //"/jsmind/example/demo.html"
  8557. "id": "mind" + cid + stage + task + tool + _userid,
  8558. "style": {
  8559. "width": "90%",
  8560. "height": "90%",
  8561. "overflow": 'hidden'
  8562. },
  8563. "onresize": function () { }
  8564. }, {
  8565. closecallback: function () { }
  8566. }, {
  8567. "style": {
  8568. "height": "36px"
  8569. }
  8570. }).form; //创建窗体
  8571. _taskbar = {
  8572. "id": str + _formdiv.id,
  8573. "style": {
  8574. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8575. },
  8576. "name": "思维导图",
  8577. "forms": _formdiv,
  8578. "click": function () {
  8579. U.MD.D.I.openApplication(str, obj, info);
  8580. }
  8581. }
  8582. break;
  8583. case "doc":
  8584. aTool = 6;
  8585. _iframe = $$("iframe", {
  8586. "frameborder": "no",
  8587. "border": "0",
  8588. "scrolling ": "no",
  8589. "style": {
  8590. "cssText": "border:0;width:100%;height:100%"
  8591. },
  8592. "src": "/Office/Word/WordEditArea.htm"
  8593. })
  8594. _box.appendChild(_iframe);
  8595. _box.appendChild(_jie);
  8596. _formdiv = new U.UF.UI.form(
  8597. "协同文档-" + _username,
  8598. _box, {
  8599. "id": "doc" + cid + stage + task + tool + _userid,
  8600. "style": {
  8601. "width": "90%",
  8602. "height": "90%",
  8603. "overflow": 'hidden'
  8604. },
  8605. "onresize": function () { }
  8606. }, {
  8607. closecallback: function () { }
  8608. }, {
  8609. "style": {
  8610. "height": "36px"
  8611. }
  8612. }).form; //创建窗体
  8613. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8614. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8615. })
  8616. _taskbar = {
  8617. "id": str + _formdiv.id,
  8618. "style": {
  8619. "backgroundImage": "url(/img/icon/doc.png)"
  8620. },
  8621. "name": "协同文档",
  8622. "forms": _formdiv,
  8623. "click": function () {
  8624. U.MD.D.I.openApplication(str, obj, info);
  8625. }
  8626. }
  8627. break;
  8628. case "mindNetwork": //好友打开
  8629. aTool = 7;
  8630. _iframe = $$("iframe", {
  8631. "webkitallowfullscreen": "",
  8632. "mozallowfullscreen": "",
  8633. "allowfullscreen": "",
  8634. "frameborder": "no",
  8635. "border": "0",
  8636. "scrolling ": "no",
  8637. "style": {
  8638. "cssText": "border:0; width:100%; height:100%;"
  8639. },
  8640. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8641. })
  8642. _box.appendChild(_iframe);
  8643. _box.appendChild(_jie);
  8644. _formdiv = new U.UF.UI.form(
  8645. "思维网格-" + _username,
  8646. _box, {
  8647. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8648. "style": {
  8649. "width": "90%",
  8650. "height": "90%",
  8651. "overflow": 'hidden'
  8652. },
  8653. "onresize": function () { }
  8654. }, {
  8655. closecallback: function () { }
  8656. }, {
  8657. "style": {
  8658. "height": "36px"
  8659. }
  8660. }).form; //创建窗体
  8661. _taskbar = {
  8662. "id": str + _formdiv.id,
  8663. "style": {
  8664. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8665. },
  8666. "name": "思维网格",
  8667. "forms": _formdiv,
  8668. "click": function () {
  8669. U.MD.D.I.openApplication(str, obj, info);
  8670. }
  8671. }
  8672. break;
  8673. case "courseDesign":
  8674. _iframe = $$("iframe", {
  8675. "webkitallowfullscreen": "",
  8676. "mozallowfullscreen": "",
  8677. "allowfullscreen": "",
  8678. "frameborder": "no",
  8679. "border": "0",
  8680. "scrolling ": "no",
  8681. "style": {
  8682. "cssText": "border:0; width:100%; height:100%;"
  8683. },
  8684. "src": "/course-design-vue"
  8685. })
  8686. _box.appendChild(_iframe);
  8687. _box.appendChild(_jie);
  8688. _formdiv = new U.UF.UI.form(
  8689. "项目设计-" + _username,
  8690. _box, {
  8691. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8692. "style": {
  8693. "width": "90%",
  8694. "height": "90%",
  8695. "overflow": 'hidden'
  8696. },
  8697. "onresize": function () { }
  8698. }, {
  8699. closecallback: function () { }
  8700. }, {
  8701. "style": {
  8702. "height": "36px"
  8703. }
  8704. }).form; //创建窗体
  8705. _taskbar = {
  8706. "id": str + _formdiv.id,
  8707. "style": {
  8708. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8709. },
  8710. "name": "项目设计",
  8711. "forms": _formdiv,
  8712. "click": function () {
  8713. U.MD.D.I.openApplication(str, obj, info);
  8714. }
  8715. }
  8716. break;
  8717. }
  8718. const script1 = document.createElement("script");
  8719. script1.type = "text/javascript";
  8720. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8721. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8722. const script2 = document.createElement("script");
  8723. script2.type = "text/javascript";
  8724. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8725. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8726. const script3 = document.createElement("script");
  8727. script3.type = "text/javascript";
  8728. script3.charset = "UTF-8";
  8729. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8730. const script4 = document.createElement("script");
  8731. script4.type = "text/javascript";
  8732. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8733. script4.src = window.origin + "/js/Common/jietu2E.js";
  8734. if (_iframe) {
  8735. if (str == 'doc') {
  8736. _iframe = _formdiv.querySelector('iframe')
  8737. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8738. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8739. _iframe.contentWindow.document.body.appendChild(script1);
  8740. _iframe.contentWindow.document.body.appendChild(script2);
  8741. // _iframe.contentWindow.document.body.appendChild(script3);
  8742. _iframe.contentWindow.document.body.appendChild(script4);
  8743. })
  8744. if (onloadListener) {
  8745. _iframe.contentDocument.location.reload()
  8746. } else {
  8747. _iframe.contentDocument.location.reload()
  8748. }
  8749. } else if (str == 'courseDesign') {
  8750. U.UF.DL.iframeLoad(_iframe, function () {
  8751. // _iframe.contentWindow.U.MD.O.W.load();
  8752. // _iframe.contentWindow.document.body.appendChild(script1);
  8753. _iframe.contentWindow.document.body.appendChild(script2);
  8754. _iframe.contentWindow.document.body.appendChild(script4);
  8755. })
  8756. } else if (str == 'mind') {
  8757. _iframe = _formdiv.querySelector('iframe')
  8758. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8759. //
  8760. _iframe.contentWindow.document.body.appendChild(script1);
  8761. _iframe.contentWindow.document.body.appendChild(script2);
  8762. _iframe.contentWindow.document.body.appendChild(script4);
  8763. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8764. })
  8765. if (onloadListener) {
  8766. _iframe.contentDocument.location.reload()
  8767. } else {
  8768. _iframe.contentDocument.location.reload()
  8769. }
  8770. } else if (str == 'whiteboard') {
  8771. _iframe = _formdiv.querySelector('iframe')
  8772. let onloadListener = _iframe.onload = () => {
  8773. _iframe.contentWindow.document.body.appendChild(script1);
  8774. _iframe.contentWindow.document.body.appendChild(script2);
  8775. _iframe.contentWindow.document.body.appendChild(script4);
  8776. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8777. };
  8778. // if (onloadListener) {
  8779. // try {
  8780. // _iframe.src += "?cocorobo="+new Date().getTime()
  8781. // _iframe.contentWindow.document.location.reload()
  8782. // } catch (error) {
  8783. // }
  8784. // } else {
  8785. // _iframe.contentDocument.location.reload()
  8786. // }
  8787. } else {
  8788. _iframe.onload = () => {
  8789. _iframe.contentWindow.document.body.appendChild(script1);
  8790. _iframe.contentWindow.document.body.appendChild(script2);
  8791. // _iframe.contentWindow.document.body.appendChild(script3);
  8792. _iframe.contentWindow.document.body.appendChild(script4);
  8793. };
  8794. }
  8795. _jie.onclick = async () => {
  8796. let text = ''
  8797. if (aTool == 1) {
  8798. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8799. } else if (aTool == 6) {
  8800. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8801. } else if (aTool == 3) {
  8802. text = await U.MD.D.I.getEditorContent(_iframe);
  8803. }
  8804. _loading.style.display = 'flex'
  8805. console.log(_loading);
  8806. var _ajs = _iframe.contentWindow.document.createElement("script");
  8807. _ajs.type = "text/javascript";
  8808. _ajs.innerHTML =
  8809. // 'console.log(' + _loading + ');\n' +
  8810. 'var _js = document.createElement("script");\n' +
  8811. '_js.type="text/javascript";\n' +
  8812. '_js.charset="UTF-8";\n' +
  8813. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8814. "_js.onload = function(){\n" +
  8815. ' var a = document.getElementsByTagName("img")\n' +
  8816. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8817. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8818. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8819. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8820. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8821. "beforeUpload_shishi(file," +
  8822. "'" +
  8823. _userid +
  8824. "'" +
  8825. ", " +
  8826. "'" +
  8827. _cid +
  8828. "'" +
  8829. ", " +
  8830. "'" +
  8831. _stage +
  8832. "'" +
  8833. ", " +
  8834. "'" +
  8835. _task +
  8836. "'" +
  8837. ", " +
  8838. "'" +
  8839. _tool +
  8840. "'" +
  8841. ", " +
  8842. "'" +
  8843. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8844. "'" +
  8845. ", " +
  8846. "'" +
  8847. aTool +
  8848. "'" +
  8849. ", " +
  8850. "`" +
  8851. text +
  8852. "`" +
  8853. ")\n" +
  8854. " });\n" +
  8855. "}\n" +
  8856. "document.head.appendChild(_js);\n";
  8857. _iframe.contentWindow.document.head.appendChild(_ajs);
  8858. }
  8859. }
  8860. }
  8861. U.MD.D.I.getEditorContent = function (iframe) {
  8862. return new Promise((resolve, reject) => {
  8863. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8864. console.log(content);
  8865. resolve(content)
  8866. });
  8867. });
  8868. }
  8869. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8870. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8871. // if (res.value[0].length > 0) {
  8872. // // resolve(res.value[0][0].text);
  8873. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8874. // $(fileInput).val('');
  8875. // });
  8876. // }
  8877. // }, [], { "type": "GET", "withCredentials": true });
  8878. var xmlhttp;
  8879. var Mac, Sn, DeviceId
  8880. if (window.XMLHttpRequest) {
  8881. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8882. xmlhttp = new XMLHttpRequest();
  8883. } else {
  8884. // IE6, IE5 浏览器执行代码
  8885. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8886. }
  8887. xmlhttp.onreadystatechange = function () {
  8888. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8889. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8890. // resolve(res.value[0][0].text);
  8891. if (type == '2') {
  8892. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8893. } else if (type == '3') {
  8894. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8895. }
  8896. } else {
  8897. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8898. }
  8899. }
  8900. }
  8901. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8902. xmlhttp.send();
  8903. }
  8904. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8905. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8906. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8907. _userinfo = US.userInfo, //登录用户信息
  8908. _userid = US.userInfo.userid //登录用户id
  8909. let _iframe;
  8910. let _cid = cid,
  8911. _stage = stage,
  8912. _task = task,
  8913. _tool = tool;
  8914. var _jie = $$("div", {
  8915. "style": {
  8916. "position": "absolute",
  8917. "bottom": "50px",
  8918. "right": "50px",
  8919. "zIndex": "9999",
  8920. "backgroundColor": "#2268bc",
  8921. "color": "#fff",
  8922. "padding": "12px 20px",
  8923. "cursor": "pointer",
  8924. "borderRadius": "4px",
  8925. },
  8926. "innerHTML": "确认并提交"
  8927. })
  8928. let aTool = ''
  8929. let _loading = document.createElement('div')
  8930. _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;"
  8931. // _loading.id = "";
  8932. let _lchild = document.createElement('div')
  8933. let _limg = document.createElement('img')
  8934. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8935. _limg.style = "width: 26px;margin-right: 10px;"
  8936. _lchild.appendChild(_limg)
  8937. let _lspan = document.createElement('span')
  8938. _lspan.innerHTML = "上传中..."
  8939. _lchild.appendChild(_lspan)
  8940. _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%);"
  8941. _loading.appendChild(_lchild)
  8942. var _box = $$('div', {
  8943. "style": {
  8944. "position": "relative",
  8945. "width": "100%",
  8946. "height": "100%",
  8947. },
  8948. })
  8949. _box.appendChild(_loading)
  8950. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8951. switch (str) {
  8952. case "whiteboard":
  8953. aTool = 1;
  8954. _iframe = $$("iframe", {
  8955. "frameborder": "no",
  8956. "border": "0",
  8957. "scrolling ": "no",
  8958. "style": {
  8959. "cssText": "border:0;width:100%;height:100%"
  8960. },
  8961. "src": "https://beta.iwb.cocorobo.cn/"
  8962. })
  8963. _box.appendChild(_iframe);
  8964. _box.appendChild(_jie);
  8965. _formdiv = new U.UF.UI.form(
  8966. "电子白板",
  8967. _box, {
  8968. "id": "whiteboards" + cid + stage + task + tool,
  8969. "style": {
  8970. "width": "90%",
  8971. "height": "90%",
  8972. "overflow": 'hidden'
  8973. },
  8974. "onresize": function () { }
  8975. }, {
  8976. closecallback: function () { }
  8977. }, {
  8978. "style": {
  8979. "height": "36px"
  8980. }
  8981. }).form; //创建窗体
  8982. _taskbar = {
  8983. "id": str + _formdiv.id,
  8984. "style": {
  8985. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8986. },
  8987. "name": "电子白板",
  8988. "forms": _formdiv,
  8989. "click": function () {
  8990. U.MD.D.I.openApplication(str, obj, info);
  8991. }
  8992. }
  8993. break;
  8994. case "mind":
  8995. aTool = 3;
  8996. _iframe = $$("iframe", {
  8997. "frameborder": "no",
  8998. "border": "0",
  8999. "scrolling ": "no",
  9000. "style": {
  9001. "cssText": "border:0;width:100%;height:100%"
  9002. },
  9003. "src": "/kityminder-editor/dist/index.html"
  9004. });
  9005. _box.appendChild(_iframe);
  9006. _box.appendChild(_jie);
  9007. _formdiv = new U.UF.UI.form(
  9008. "思维导图",
  9009. _box, { //"/jsmind/example/demo.html"
  9010. "id": "minds" + cid + stage + task + tool,
  9011. "style": {
  9012. "width": "90%",
  9013. "height": "90%",
  9014. "overflow": 'hidden'
  9015. },
  9016. "onresize": function () { }
  9017. }, {
  9018. closecallback: function () { }
  9019. }, {
  9020. "style": {
  9021. "height": "36px"
  9022. }
  9023. }).form; //创建窗体
  9024. _taskbar = {
  9025. "id": str + _formdiv.id,
  9026. "style": {
  9027. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9028. },
  9029. "name": "思维导图",
  9030. "forms": _formdiv,
  9031. "click": function () {
  9032. U.MD.D.I.openApplication(str, obj, info);
  9033. }
  9034. }
  9035. break;
  9036. case "doc":
  9037. aTool = 6;
  9038. _iframe = $$("iframe", {
  9039. "frameborder": "no",
  9040. "border": "0",
  9041. "scrolling ": "no",
  9042. "style": {
  9043. "cssText": "border:0;width:100%;height:100%"
  9044. },
  9045. "src": "/Office/Word/WordEditArea.htm"
  9046. })
  9047. _box.appendChild(_iframe);
  9048. _box.appendChild(_jie);
  9049. _formdiv = new U.UF.UI.form(
  9050. "协同文档",
  9051. _box, {
  9052. "id": "docs" + cid + stage + task + tool,
  9053. "style": {
  9054. "width": "90%",
  9055. "height": "90%",
  9056. "overflow": 'hidden'
  9057. },
  9058. "onresize": function () { }
  9059. }, {
  9060. closecallback: function () { }
  9061. }, {
  9062. "style": {
  9063. "height": "36px"
  9064. }
  9065. }).form; //创建窗体
  9066. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9067. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9068. })
  9069. _taskbar = {
  9070. "id": str + _formdiv.id,
  9071. "style": {
  9072. "backgroundImage": "url(/img/icon/doc.png)"
  9073. },
  9074. "name": "协同文档",
  9075. "forms": _formdiv,
  9076. "click": function () {
  9077. U.MD.D.I.openApplication(str, obj, info);
  9078. }
  9079. }
  9080. break;
  9081. }
  9082. const script1 = document.createElement("script");
  9083. script1.type = "text/javascript";
  9084. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9085. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9086. const script2 = document.createElement("script");
  9087. script2.type = "text/javascript";
  9088. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9089. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9090. const script3 = document.createElement("script");
  9091. script3.type = "text/javascript";
  9092. script3.charset = "UTF-8";
  9093. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9094. const script4 = document.createElement("script");
  9095. script4.type = "text/javascript";
  9096. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9097. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9098. if (_iframe) {
  9099. if (str == 'doc') {
  9100. _iframe = _formdiv.querySelector('iframe')
  9101. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9102. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9103. _iframe.contentWindow.document.body.appendChild(script1);
  9104. _iframe.contentWindow.document.body.appendChild(script2);
  9105. // _iframe.contentWindow.document.body.appendChild(script3);
  9106. _iframe.contentWindow.document.body.appendChild(script4);
  9107. })
  9108. if (onloadListener) {
  9109. _iframe.contentDocument.location.reload()
  9110. } else {
  9111. _iframe.contentDocument.location.reload()
  9112. }
  9113. } else if (str == 'mind') {
  9114. _iframe = _formdiv.querySelector('iframe')
  9115. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9116. _iframe.contentWindow.document.body.appendChild(script1);
  9117. _iframe.contentWindow.document.body.appendChild(script2);
  9118. _iframe.contentWindow.document.body.appendChild(script4);
  9119. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9120. })
  9121. if (onloadListener) {
  9122. _iframe.contentDocument.location.reload()
  9123. } else {
  9124. _iframe.contentDocument.location.reload()
  9125. }
  9126. } else {
  9127. _iframe.onload = () => {
  9128. _iframe.contentWindow.document.body.appendChild(script1);
  9129. _iframe.contentWindow.document.body.appendChild(script2);
  9130. // _iframe.contentWindow.document.body.appendChild(script3);
  9131. _iframe.contentWindow.document.body.appendChild(script4);
  9132. };
  9133. }
  9134. _jie.onclick = async () => {
  9135. let text = ''
  9136. if (aTool == 6) {
  9137. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9138. } else if (aTool == 3) {
  9139. text = await U.MD.D.I.getEditorContent(_iframe);
  9140. }
  9141. _loading.style.display = 'flex'
  9142. console.log(_loading);
  9143. var _ajs = _iframe.contentWindow.document.createElement("script");
  9144. _ajs.type = "text/javascript";
  9145. _ajs.innerHTML =
  9146. // 'console.log(' + _loading + ');\n' +
  9147. 'var _js = document.createElement("script");\n' +
  9148. '_js.type="text/javascript";\n' +
  9149. '_js.charset="UTF-8";\n' +
  9150. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9151. "_js.onload = function(){\n" +
  9152. ' var a = document.getElementsByTagName("img")\n' +
  9153. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9154. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9155. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9156. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9157. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9158. "beforeUpload_shishi(file," +
  9159. "'" +
  9160. _userid +
  9161. "'" +
  9162. ", " +
  9163. "'" +
  9164. _cid +
  9165. "'" +
  9166. ", " +
  9167. "'" +
  9168. _stage +
  9169. "'" +
  9170. ", " +
  9171. "'" +
  9172. _task +
  9173. "'" +
  9174. ", " +
  9175. "'" +
  9176. _tool +
  9177. "'" +
  9178. ", " +
  9179. "'" +
  9180. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9181. "'" +
  9182. ", " +
  9183. "'" +
  9184. aTool +
  9185. "'" +
  9186. ", " +
  9187. "`" +
  9188. text +
  9189. "`" +
  9190. ")\n" +
  9191. " });\n" +
  9192. "}\n" +
  9193. "document.head.appendChild(_js);\n";
  9194. _iframe.contentWindow.document.head.appendChild(_ajs);
  9195. }
  9196. }
  9197. //U.MD.D.I.openClick(str);
  9198. //如果有任务栏信息
  9199. // if (_taskbar) {
  9200. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9201. // }
  9202. }
  9203. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9204. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9205. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9206. _userinfo = US.userInfo, //登录用户信息
  9207. _userid = US.userInfo.userid //登录用户id
  9208. let _iframe;
  9209. let _cid = cid,
  9210. _stage = stage,
  9211. _task = task,
  9212. _tool = tool;
  9213. var _jie = $$("div", {
  9214. "style": {
  9215. "position": "absolute",
  9216. "bottom": "50px",
  9217. "right": "50px",
  9218. "zIndex": "9999",
  9219. "backgroundColor": "#2268bc",
  9220. "color": "#fff",
  9221. "padding": "12px 20px",
  9222. "cursor": "pointer",
  9223. "borderRadius": "4px",
  9224. },
  9225. "innerHTML": "确认并提交"
  9226. })
  9227. let aTool = ''
  9228. let _loading = document.createElement('div')
  9229. _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;"
  9230. // _loading.id = "";
  9231. let _lchild = document.createElement('div')
  9232. let _limg = document.createElement('img')
  9233. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9234. _limg.style = "width: 26px;margin-right: 10px;"
  9235. _lchild.appendChild(_limg)
  9236. let _lspan = document.createElement('span')
  9237. _lspan.innerHTML = "上传中..."
  9238. _lchild.appendChild(_lspan)
  9239. _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%);"
  9240. _loading.appendChild(_lchild)
  9241. var _box = $$('div', {
  9242. "style": {
  9243. "position": "relative",
  9244. "width": "100%",
  9245. "height": "100%",
  9246. },
  9247. })
  9248. _box.appendChild(_loading)
  9249. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9250. switch (str) {
  9251. case "whiteboard":
  9252. aTool = 1;
  9253. _iframe = $$("iframe", {
  9254. "frameborder": "no",
  9255. "border": "0",
  9256. "scrolling ": "no",
  9257. "style": {
  9258. "cssText": "border:0;width:100%;height:100%"
  9259. },
  9260. "src": "https://beta.iwb.cocorobo.cn/"
  9261. })
  9262. _box.appendChild(_iframe);
  9263. _box.appendChild(_jie);
  9264. _formdiv = new U.UF.UI.form(
  9265. "电子白板",
  9266. _box, {
  9267. "id": "whiteboards" + cid + stage + task + tool,
  9268. "style": {
  9269. "width": "90%",
  9270. "height": "90%",
  9271. "overflow": 'hidden'
  9272. },
  9273. "onresize": function () { }
  9274. }, {
  9275. closecallback: function () { }
  9276. }, {
  9277. "style": {
  9278. "height": "36px"
  9279. }
  9280. }).form; //创建窗体
  9281. _taskbar = {
  9282. "id": str + _formdiv.id,
  9283. "style": {
  9284. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9285. },
  9286. "name": "电子白板",
  9287. "forms": _formdiv,
  9288. "click": function () {
  9289. U.MD.D.I.openApplication(str, obj, info);
  9290. }
  9291. }
  9292. break;
  9293. case "mind":
  9294. aTool = 3;
  9295. _iframe = $$("iframe", {
  9296. "frameborder": "no",
  9297. "border": "0",
  9298. "scrolling ": "no",
  9299. "style": {
  9300. "cssText": "border:0;width:100%;height:100%"
  9301. },
  9302. "src": "/kityminder-editor/dist/index.html"
  9303. });
  9304. _box.appendChild(_iframe);
  9305. _box.appendChild(_jie);
  9306. _formdiv = new U.UF.UI.form(
  9307. "思维导图",
  9308. _box, { //"/jsmind/example/demo.html"
  9309. "id": "minds" + cid + stage + task + tool,
  9310. "style": {
  9311. "width": "90%",
  9312. "height": "90%",
  9313. "overflow": 'hidden'
  9314. },
  9315. "onresize": function () { }
  9316. }, {
  9317. closecallback: function () { }
  9318. }, {
  9319. "style": {
  9320. "height": "36px"
  9321. }
  9322. }).form; //创建窗体
  9323. _taskbar = {
  9324. "id": str + _formdiv.id,
  9325. "style": {
  9326. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9327. },
  9328. "name": "思维导图",
  9329. "forms": _formdiv,
  9330. "click": function () {
  9331. U.MD.D.I.openApplication(str, obj, info);
  9332. }
  9333. }
  9334. break;
  9335. case "doc":
  9336. aTool = 6;
  9337. _iframe = $$("iframe", {
  9338. "frameborder": "no",
  9339. "border": "0",
  9340. "scrolling ": "no",
  9341. "style": {
  9342. "cssText": "border:0;width:100%;height:100%"
  9343. },
  9344. "src": "/Office/Word/WordEditArea.htm"
  9345. })
  9346. _box.appendChild(_iframe);
  9347. _box.appendChild(_jie);
  9348. _formdiv = new U.UF.UI.form(
  9349. "协同文档",
  9350. _box, {
  9351. "id": "docs" + cid + stage + task + tool,
  9352. "style": {
  9353. "width": "90%",
  9354. "height": "90%",
  9355. "overflow": 'hidden'
  9356. },
  9357. "onresize": function () { }
  9358. }, {
  9359. closecallback: function () { }
  9360. }, {
  9361. "style": {
  9362. "height": "36px"
  9363. }
  9364. }).form; //创建窗体
  9365. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9366. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9367. })
  9368. _taskbar = {
  9369. "id": str + _formdiv.id,
  9370. "style": {
  9371. "backgroundImage": "url(/img/icon/doc.png)"
  9372. },
  9373. "name": "协同文档",
  9374. "forms": _formdiv,
  9375. "click": function () {
  9376. U.MD.D.I.openApplication(str, obj, info);
  9377. }
  9378. }
  9379. break;
  9380. }
  9381. const script1 = document.createElement("script");
  9382. script1.type = "text/javascript";
  9383. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9384. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9385. const script2 = document.createElement("script");
  9386. script2.type = "text/javascript";
  9387. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9388. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9389. const script3 = document.createElement("script");
  9390. script3.type = "text/javascript";
  9391. script3.charset = "UTF-8";
  9392. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9393. const script4 = document.createElement("script");
  9394. script4.type = "text/javascript";
  9395. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9396. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9397. if (_iframe) {
  9398. if (str == 'doc') {
  9399. _iframe = _formdiv.querySelector('iframe')
  9400. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9401. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9402. _iframe.contentWindow.document.body.appendChild(script1);
  9403. _iframe.contentWindow.document.body.appendChild(script2);
  9404. // _iframe.contentWindow.document.body.appendChild(script3);
  9405. _iframe.contentWindow.document.body.appendChild(script4);
  9406. })
  9407. if (onloadListener) {
  9408. _iframe.contentDocument.location.reload()
  9409. } else {
  9410. _iframe.contentDocument.location.reload()
  9411. }
  9412. } else if (str == 'mind') {
  9413. _iframe = _formdiv.querySelector('iframe')
  9414. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9415. _iframe.contentWindow.document.body.appendChild(script1);
  9416. _iframe.contentWindow.document.body.appendChild(script2);
  9417. _iframe.contentWindow.document.body.appendChild(script4);
  9418. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9419. })
  9420. if (onloadListener) {
  9421. _iframe.contentDocument.location.reload()
  9422. } else {
  9423. _iframe.contentDocument.location.reload()
  9424. }
  9425. } else {
  9426. _iframe.onload = () => {
  9427. _iframe.contentWindow.document.body.appendChild(script1);
  9428. _iframe.contentWindow.document.body.appendChild(script2);
  9429. // _iframe.contentWindow.document.body.appendChild(script3);
  9430. _iframe.contentWindow.document.body.appendChild(script4);
  9431. };
  9432. }
  9433. _jie.onclick = async () => {
  9434. let text = ''
  9435. if (aTool == 6) {
  9436. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9437. } else if (aTool == 3) {
  9438. text = await U.MD.D.I.getEditorContent(_iframe);
  9439. }
  9440. _loading.style.display = 'flex'
  9441. console.log(_loading);
  9442. var _ajs = _iframe.contentWindow.document.createElement("script");
  9443. _ajs.type = "text/javascript";
  9444. _ajs.innerHTML =
  9445. // 'console.log(' + _loading + ');\n' +
  9446. 'var _js = document.createElement("script");\n' +
  9447. '_js.type="text/javascript";\n' +
  9448. '_js.charset="UTF-8";\n' +
  9449. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9450. "_js.onload = function(){\n" +
  9451. ' var a = document.getElementsByTagName("img")\n' +
  9452. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9453. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9454. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9455. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9456. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9457. "beforeUpload_shishi(file," +
  9458. "'" +
  9459. _userid +
  9460. "'" +
  9461. ", " +
  9462. "'" +
  9463. _cid +
  9464. "'" +
  9465. ", " +
  9466. "'" +
  9467. _stage +
  9468. "'" +
  9469. ", " +
  9470. "'" +
  9471. _task +
  9472. "'" +
  9473. ", " +
  9474. "'" +
  9475. _tool +
  9476. "'" +
  9477. ", " +
  9478. "'" +
  9479. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9480. "'" +
  9481. ", " +
  9482. "'" +
  9483. aTool +
  9484. "'" +
  9485. ", " +
  9486. "`" +
  9487. text +
  9488. "`" +
  9489. ")\n" +
  9490. " });\n" +
  9491. "}\n" +
  9492. "document.head.appendChild(_js);\n";
  9493. _iframe.contentWindow.document.head.appendChild(_ajs);
  9494. }
  9495. }
  9496. //U.MD.D.I.openClick(str);
  9497. //如果有任务栏信息
  9498. // if (_taskbar) {
  9499. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9500. // }
  9501. }
  9502. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9503. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9504. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9505. _userinfo = US.userInfo, //登录用户信息
  9506. _userid = US.userInfo.userid //登录用户id
  9507. let _iframe;
  9508. let _cid = cid,
  9509. _stage = stage,
  9510. _task = task,
  9511. _tool = tool;
  9512. var _jie = $$("div", {
  9513. "style": {
  9514. "position": "absolute",
  9515. "bottom": "50px",
  9516. "right": "50px",
  9517. "zIndex": "9999",
  9518. "backgroundColor": "#2268bc",
  9519. "color": "#fff",
  9520. "padding": "12px 20px",
  9521. "cursor": "pointer",
  9522. "borderRadius": "4px",
  9523. },
  9524. "innerHTML": "上传模板"
  9525. })
  9526. let aTool = ''
  9527. let _loading = document.createElement('div')
  9528. _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;"
  9529. // _loading.id = "";
  9530. let _lchild = document.createElement('div')
  9531. let _limg = document.createElement('img')
  9532. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9533. _limg.style = "width: 26px;margin-right: 10px;"
  9534. _lchild.appendChild(_limg)
  9535. let _lspan = document.createElement('span')
  9536. _lspan.innerHTML = "上传中..."
  9537. _lchild.appendChild(_lspan)
  9538. _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%);"
  9539. _loading.appendChild(_lchild)
  9540. var _box = $$('div', {
  9541. "style": {
  9542. "position": "relative",
  9543. "width": "100%",
  9544. "height": "100%",
  9545. },
  9546. })
  9547. _box.appendChild(_loading)
  9548. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9549. switch (str) {
  9550. case "whiteboard":
  9551. aTool = 1;
  9552. _iframe = $$("iframe", {
  9553. "frameborder": "no",
  9554. "border": "0",
  9555. "scrolling ": "no",
  9556. "style": {
  9557. "cssText": "border:0;width:100%;height:100%"
  9558. },
  9559. "src": "https://beta.iwb.cocorobo.cn/"
  9560. })
  9561. _box.appendChild(_iframe);
  9562. _box.appendChild(_jie);
  9563. _formdiv = new U.UF.UI.form(
  9564. "电子白板",
  9565. _box, {
  9566. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9567. "style": {
  9568. "width": "90%",
  9569. "height": "90%",
  9570. "overflow": 'hidden'
  9571. },
  9572. "onresize": function () { }
  9573. }, {
  9574. closecallback: function () { }
  9575. }, {
  9576. "style": {
  9577. "height": "36px"
  9578. }
  9579. }).form; //创建窗体
  9580. _taskbar = {
  9581. "id": str + _formdiv.id,
  9582. "style": {
  9583. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9584. },
  9585. "name": "电子白板",
  9586. "forms": _formdiv,
  9587. "click": function () {
  9588. U.MD.D.I.openApplication(str, obj, info);
  9589. }
  9590. }
  9591. break;
  9592. case "mind":
  9593. aTool = 3;
  9594. _iframe = $$("iframe", {
  9595. "frameborder": "no",
  9596. "border": "0",
  9597. "scrolling ": "no",
  9598. "style": {
  9599. "cssText": "border:0;width:100%;height:100%"
  9600. },
  9601. "src": "/kityminder-editor/dist/index.html"
  9602. });
  9603. _box.appendChild(_iframe);
  9604. _box.appendChild(_jie);
  9605. _formdiv = new U.UF.UI.form(
  9606. "思维导图",
  9607. _box, { //"/jsmind/example/demo.html"
  9608. "id": "minds_Yu" + cid + stage + task + tool,
  9609. "style": {
  9610. "width": "90%",
  9611. "height": "90%",
  9612. "overflow": 'hidden'
  9613. },
  9614. "onresize": function () { }
  9615. }, {
  9616. closecallback: function () { }
  9617. }, {
  9618. "style": {
  9619. "height": "36px"
  9620. }
  9621. }).form; //创建窗体
  9622. _taskbar = {
  9623. "id": str + _formdiv.id,
  9624. "style": {
  9625. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9626. },
  9627. "name": "思维导图",
  9628. "forms": _formdiv,
  9629. "click": function () {
  9630. U.MD.D.I.openApplication(str, obj, info);
  9631. }
  9632. }
  9633. break;
  9634. case "doc":
  9635. aTool = 6;
  9636. _iframe = $$("iframe", {
  9637. "frameborder": "no",
  9638. "border": "0",
  9639. "scrolling ": "no",
  9640. "style": {
  9641. "cssText": "border:0;width:100%;height:100%"
  9642. },
  9643. "src": "/Office/Word/WordEditArea.htm"
  9644. })
  9645. _box.appendChild(_iframe);
  9646. _box.appendChild(_jie);
  9647. _formdiv = new U.UF.UI.form(
  9648. "协同文档",
  9649. _box, {
  9650. "id": "docs_Yu" + cid + stage + task + tool,
  9651. "style": {
  9652. "width": "90%",
  9653. "height": "90%",
  9654. "overflow": 'hidden'
  9655. },
  9656. "onresize": function () { }
  9657. }, {
  9658. closecallback: function () { }
  9659. }, {
  9660. "style": {
  9661. "height": "36px"
  9662. }
  9663. }).form; //创建窗体
  9664. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9665. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9666. })
  9667. _taskbar = {
  9668. "id": str + _formdiv.id,
  9669. "style": {
  9670. "backgroundImage": "url(/img/icon/doc.png)"
  9671. },
  9672. "name": "协同文档",
  9673. "forms": _formdiv,
  9674. "click": function () {
  9675. U.MD.D.I.openApplication(str, obj, info);
  9676. }
  9677. }
  9678. break;
  9679. case "CocoPi":
  9680. aTool = 57;
  9681. _iframe = $$("iframe", {
  9682. "allowpaymentrequest": "allowpaymentrequest",
  9683. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9684. "webkitallowfullscreen": "",
  9685. "mozallowfullscreen": "",
  9686. "frameborder": "no",
  9687. "border": "0",
  9688. "scrolling ": "no",
  9689. "style": {
  9690. "cssText": "border:0;width:100%;height:100%"
  9691. },
  9692. "src": "https://pi.cocorobo.cn/"
  9693. })
  9694. _box.appendChild(_iframe);
  9695. _box.appendChild(_jie);
  9696. _formdiv = new U.UF.UI.form(
  9697. "CocoPi",
  9698. _box, {
  9699. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9700. "style": {
  9701. "width": "90%",
  9702. "height": "90%",
  9703. "overflow": 'hidden'
  9704. },
  9705. "onresize": function () { }
  9706. }, {
  9707. closecallback: function () { }
  9708. }, {
  9709. "style": {
  9710. "height": "36px"
  9711. }
  9712. }).form; //创建窗体
  9713. _taskbar = {
  9714. "id": str + _formdiv.id,
  9715. "style": {
  9716. "backgroundImage": "url(/img/icon/cocopi.png)"
  9717. },
  9718. "name": "CocoPi",
  9719. "forms": _formdiv,
  9720. "click": function () {
  9721. U.MD.D.I.openApplication(str, obj, info);
  9722. }
  9723. }
  9724. break;
  9725. }
  9726. if (_iframe) {
  9727. if (str == 'doc') {
  9728. _iframe = _formdiv.querySelector('iframe')
  9729. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9730. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9731. })
  9732. if (onloadListener) {
  9733. _iframe.contentDocument.location.reload()
  9734. } else {
  9735. _iframe.contentDocument.location.reload()
  9736. }
  9737. } else if (str == 'mind') {
  9738. _iframe = _formdiv.querySelector('iframe')
  9739. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9740. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9741. })
  9742. if (onloadListener) {
  9743. _iframe.contentDocument.location.reload()
  9744. } else {
  9745. _iframe.contentDocument.location.reload()
  9746. }
  9747. } else if (str == 'whiteboard') {
  9748. _iframe = _formdiv.querySelector('iframe')
  9749. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9750. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9751. })
  9752. // if (onloadListener) {
  9753. // try {
  9754. // _iframe.src += "?cocorobo="+new Date().getTime()
  9755. // _iframe.contentWindow.document.location.reload()
  9756. // } catch (error) {
  9757. // }
  9758. // } else {
  9759. // _iframe.contentDocument.location.reload()
  9760. // }
  9761. } else if (str == 'CocoPi') {
  9762. _iframe = _formdiv.querySelector('iframe')
  9763. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9764. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9765. })
  9766. if (onloadListener) {
  9767. _iframe.contentDocument.location.reload()
  9768. } else {
  9769. _iframe.contentDocument.location.reload()
  9770. }
  9771. } else {
  9772. _iframe.onload = () => { };
  9773. }
  9774. _jie.onclick = async () => {
  9775. let text = ''
  9776. let type = '2'
  9777. if (aTool == 1) {
  9778. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9779. type = '3'
  9780. } else if (aTool == 6) {
  9781. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9782. type = '1'
  9783. } else if (aTool == 3) {
  9784. text = await U.MD.D.I.getEditorContent(_iframe);
  9785. type = '2'
  9786. } else if (aTool == 57) {
  9787. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9788. type = '4'
  9789. }
  9790. _loading.style.display = 'flex'
  9791. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9792. }
  9793. }
  9794. //U.MD.D.I.openClick(str);
  9795. //如果有任务栏信息
  9796. // if (_taskbar) {
  9797. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9798. // }
  9799. }
  9800. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9801. var xmlhttp;
  9802. var Mac, Sn, DeviceId
  9803. if (window.XMLHttpRequest) {
  9804. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9805. xmlhttp = new XMLHttpRequest();
  9806. } else {
  9807. // IE6, IE5 浏览器执行代码
  9808. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9809. }
  9810. xmlhttp.onreadystatechange = function () {
  9811. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9812. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9813. // resolve(res.value[0][0].text);
  9814. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9815. }
  9816. }
  9817. }
  9818. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9819. xmlhttp.send();
  9820. }
  9821. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9822. var xmlhttp;
  9823. var Mac, Sn, DeviceId
  9824. if (window.XMLHttpRequest) {
  9825. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9826. xmlhttp = new XMLHttpRequest();
  9827. } else {
  9828. // IE6, IE5 浏览器执行代码
  9829. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9830. }
  9831. xmlhttp.onreadystatechange = function () {
  9832. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9833. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9834. // resolve(res.value[0][0].text);
  9835. if (type == '2') {
  9836. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9837. } else if (type == '3') {
  9838. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9839. } else if (type == '4') {
  9840. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9841. }
  9842. } else {
  9843. if (type == '2') {
  9844. iframe.contentWindow.editor.minder.importData('json', '')
  9845. } else if (type == '3') {
  9846. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9847. } else if (type == '4') {
  9848. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9849. }
  9850. }
  9851. }
  9852. }
  9853. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9854. xmlhttp.send();
  9855. }
  9856. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9857. var xmlhttp;
  9858. var Mac, Sn, DeviceId
  9859. if (window.XMLHttpRequest) {
  9860. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9861. xmlhttp = new XMLHttpRequest();
  9862. } else {
  9863. // IE6, IE5 浏览器执行代码
  9864. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9865. }
  9866. xmlhttp.onreadystatechange = function () {
  9867. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9868. if (xmlhttp.response) {
  9869. // resolve(res.value[0][0].text);
  9870. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9871. // $(fileInput).val('');
  9872. // });
  9873. span.innerHTML = '上传成功'
  9874. setTimeout(() => {
  9875. loading.style.display = 'none'
  9876. }, 1000);
  9877. }
  9878. }
  9879. }
  9880. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9881. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9882. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9883. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9884. // 设置请求头,表示请求体的编码格式
  9885. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9886. // 设置请求体,使用url-encoded格式的数据
  9887. }
  9888. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9889. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9890. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9891. _userinfo = US.userInfo, //登录用户信息
  9892. _userid = US.userInfo.userid //登录用户id
  9893. let _iframe;
  9894. let _cid = cid,
  9895. _stage = stage,
  9896. _task = task,
  9897. _tool = tool;
  9898. var _jie = $$("div", {
  9899. "style": {
  9900. "position": "absolute",
  9901. "bottom": "50px",
  9902. "right": "50px",
  9903. "zIndex": "9999",
  9904. "backgroundColor": "#2268bc",
  9905. "color": "#fff",
  9906. "padding": "12px 20px",
  9907. "cursor": "pointer",
  9908. "borderRadius": "4px",
  9909. },
  9910. "innerHTML": "提交作业"
  9911. })
  9912. let aTool = ''
  9913. let _loading = document.createElement('div')
  9914. _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;"
  9915. // _loading.id = "";
  9916. let _lchild = document.createElement('div')
  9917. let _limg = document.createElement('img')
  9918. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9919. _limg.style = "width: 26px;margin-right: 10px;"
  9920. _lchild.appendChild(_limg)
  9921. let _lspan = document.createElement('span')
  9922. _lspan.innerHTML = "上传中..."
  9923. _lchild.appendChild(_lspan)
  9924. _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%);"
  9925. _loading.appendChild(_lchild)
  9926. var _box = $$('div', {
  9927. "style": {
  9928. "position": "relative",
  9929. "width": "100%",
  9930. "height": "100%",
  9931. },
  9932. })
  9933. _box.appendChild(_loading)
  9934. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9935. switch (str) {
  9936. case "CocoPi":
  9937. aTool = 57;
  9938. _iframe = $$("iframe", {
  9939. "allowpaymentrequest": "allowpaymentrequest",
  9940. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9941. "webkitallowfullscreen": "",
  9942. "mozallowfullscreen": "",
  9943. "frameborder": "no",
  9944. "border": "0",
  9945. "scrolling ": "no",
  9946. "style": {
  9947. "cssText": "border:0;width:100%;height:100%"
  9948. },
  9949. "src": "https://pi.cocorobo.cn/"
  9950. })
  9951. _box.appendChild(_iframe);
  9952. _box.appendChild(_jie);
  9953. _formdiv = new U.UF.UI.form(
  9954. "CocoPi",
  9955. _box, {
  9956. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9957. "style": {
  9958. "width": "90%",
  9959. "height": "90%",
  9960. "overflow": 'hidden'
  9961. },
  9962. "onresize": function () { }
  9963. }, {
  9964. closecallback: function () { }
  9965. }, {
  9966. "style": {
  9967. "height": "36px"
  9968. }
  9969. }).form; //创建窗体
  9970. _taskbar = {
  9971. "id": str + _formdiv.id,
  9972. "style": {
  9973. "backgroundImage": "url(/img/icon/cocopi.png)"
  9974. },
  9975. "name": "CocoPi",
  9976. "forms": _formdiv,
  9977. "click": function () {
  9978. U.MD.D.I.openApplication(str, obj, info);
  9979. }
  9980. }
  9981. break;
  9982. }
  9983. if (_iframe) {
  9984. if (str == 'CocoPi') {
  9985. _iframe = _formdiv.querySelector('iframe')
  9986. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9987. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9988. })
  9989. if (onloadListener) {
  9990. _iframe.contentDocument.location.reload()
  9991. } else {
  9992. _iframe.contentDocument.location.reload()
  9993. }
  9994. }
  9995. _jie.onclick = async () => {
  9996. let text = ''
  9997. if (aTool == 57) {
  9998. text = _iframe.contentWindow.getLoadXmlStr()
  9999. }
  10000. _loading.style.display = 'flex'
  10001. console.log(_loading);
  10002. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10003. _loading.style.display = 'none'
  10004. let _div = document.createElement('div')
  10005. _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;"
  10006. let _inner = document.createElement('div')
  10007. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10008. _inner.innerHTML = "上传成功"
  10009. _div.appendChild(_inner)
  10010. _iframe.contentWindow.window.document.body.appendChild(_div)
  10011. _div.onclick = () => {
  10012. _iframe.contentWindow.window.document.body.removeChild(_div)
  10013. }
  10014. setTimeout(() => {
  10015. _iframe.contentWindow.window.document.body.removeChild(_div)
  10016. }, 1000);
  10017. }, [], { "type": "POST", "withCredentials": true });
  10018. }
  10019. }
  10020. }
  10021. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10022. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10023. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10024. _userid = student.userid, //登录用户id
  10025. _username = student.student //用户名字
  10026. let _iframe;
  10027. let _cid = cid,
  10028. _stage = stage,
  10029. _task = task,
  10030. _tool = tool;
  10031. var _jie = $$("div", {
  10032. "style": {
  10033. "position": "absolute",
  10034. "bottom": "50px",
  10035. "right": "50px",
  10036. "zIndex": "9999",
  10037. "backgroundColor": "#2268bc",
  10038. "color": "#fff",
  10039. "padding": "12px 20px",
  10040. "cursor": "pointer",
  10041. "borderRadius": "4px",
  10042. },
  10043. "innerHTML": "提交作业"
  10044. })
  10045. let aTool = ''
  10046. let _loading = document.createElement('div')
  10047. _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;"
  10048. // _loading.id = "";
  10049. let _lchild = document.createElement('div')
  10050. let _limg = document.createElement('img')
  10051. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10052. _limg.style = "width: 26px;margin-right: 10px;"
  10053. _lchild.appendChild(_limg)
  10054. let _lspan = document.createElement('span')
  10055. _lspan.innerHTML = "上传中..."
  10056. _lchild.appendChild(_lspan)
  10057. _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%);"
  10058. _loading.appendChild(_lchild)
  10059. var _box = $$('div', {
  10060. "style": {
  10061. "position": "relative",
  10062. "width": "100%",
  10063. "height": "100%",
  10064. },
  10065. })
  10066. _box.appendChild(_loading)
  10067. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10068. switch (str) {
  10069. case "CocoPi":
  10070. aTool = 57;
  10071. _iframe = $$("iframe", {
  10072. "allowpaymentrequest": "allowpaymentrequest",
  10073. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10074. "webkitallowfullscreen": "",
  10075. "mozallowfullscreen": "",
  10076. "frameborder": "no",
  10077. "border": "0",
  10078. "scrolling ": "no",
  10079. "style": {
  10080. "cssText": "border:0;width:100%;height:100%"
  10081. },
  10082. "src": "https://pi.cocorobo.cn/"
  10083. })
  10084. _box.appendChild(_iframe);
  10085. _box.appendChild(_jie);
  10086. _formdiv = new U.UF.UI.form(
  10087. "CocoPi-" + _username,
  10088. _box, {
  10089. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10090. "style": {
  10091. "width": "90%",
  10092. "height": "90%",
  10093. "overflow": 'hidden'
  10094. },
  10095. "onresize": function () { }
  10096. }, {
  10097. closecallback: function () { }
  10098. }, {
  10099. "style": {
  10100. "height": "36px"
  10101. }
  10102. }).form; //创建窗体
  10103. _taskbar = {
  10104. "id": str + _formdiv.id,
  10105. "style": {
  10106. "backgroundImage": "url(/img/icon/cocopi.png)"
  10107. },
  10108. "name": "CocoPi",
  10109. "forms": _formdiv,
  10110. "click": function () {
  10111. U.MD.D.I.openApplication(str, obj, info);
  10112. }
  10113. }
  10114. break;
  10115. }
  10116. if (_iframe) {
  10117. if (str == 'CocoPi') {
  10118. _iframe = _formdiv.querySelector('iframe')
  10119. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10120. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10121. })
  10122. if (onloadListener) {
  10123. _iframe.contentDocument.location.reload()
  10124. } else {
  10125. _iframe.contentDocument.location.reload()
  10126. }
  10127. }
  10128. _jie.onclick = async () => {
  10129. let text = ''
  10130. if (aTool == 57) {
  10131. text = _iframe.contentWindow.getLoadXmlStr()
  10132. }
  10133. _loading.style.display = 'flex'
  10134. console.log(_loading);
  10135. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10136. _loading.style.display = 'none'
  10137. let _div = document.createElement('div')
  10138. _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;"
  10139. let _inner = document.createElement('div')
  10140. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10141. _inner.innerHTML = "上传成功"
  10142. _div.appendChild(_inner)
  10143. _iframe.contentWindow.window.document.body.appendChild(_div)
  10144. _div.onclick = () => {
  10145. _iframe.contentWindow.window.document.body.removeChild(_div)
  10146. }
  10147. setTimeout(() => {
  10148. _iframe.contentWindow.window.document.body.removeChild(_div)
  10149. }, 1000);
  10150. }, [], { "type": "POST", "withCredentials": true });
  10151. }
  10152. }
  10153. }
  10154. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10155. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10156. if (res.value[0].length > 0) {
  10157. if (atool == 57) {
  10158. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10159. }
  10160. } else {
  10161. if (atool == 57) {
  10162. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10163. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10164. }
  10165. }
  10166. }, [], { "type": "POST", "withCredentials": true });
  10167. }