DeskTop.js 656 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527
  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. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  928. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  929. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  930. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  931. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  932. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  933. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  936. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  937. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  938. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  939. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  940. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  941. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  942. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  943. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  944. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  945. ];
  946. //未来教育基地
  947. U.MD.D.I.szjkyAdminDeskIcon = [
  948. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  949. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  950. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  951. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  952. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  953. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  954. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  955. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  956. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  957. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  958. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  959. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  960. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  961. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  962. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  964. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  965. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  966. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  967. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  968. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  969. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  970. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  971. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  972. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  973. ];
  974. //未来教育基地
  975. U.MD.D.I.szjkyStudentDeskIcon = [
  976. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  977. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  979. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  980. ];
  981. //成华教育局
  982. U.MD.D.I.chjyjTeacherDeskIcon = [
  983. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  984. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  988. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  989. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  990. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  991. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  992. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  995. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  996. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  997. ];
  998. //成华教育局chjyj
  999. U.MD.D.I.chjyjAdminDeskIcon = [
  1000. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1001. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1002. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1003. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1004. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1005. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1015. ];
  1016. //成华教育局chjyj
  1017. U.MD.D.I.chjyjStudentDeskIcon = [
  1018. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1019. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1020. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. ];
  1023. //tpc
  1024. U.MD.D.I.tpcStudentDeskIcon = [
  1025. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1026. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1027. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1028. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1029. ];
  1030. //tpc
  1031. U.MD.D.I.tpcTeacherDeskIcon = [
  1032. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1033. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1038. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1039. ];
  1040. //tpc
  1041. U.MD.D.I.tpcAdminDeskIcon = [
  1042. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1043. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //THU-IOE
  1051. U.MD.D.I.thuioeTeacherDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1055. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1056. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1057. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1058. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1059. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1062. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1063. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1064. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1065. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1066. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1067. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1068. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1069. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1070. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1071. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1072. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1073. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1074. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1075. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1076. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1077. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1078. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1079. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1080. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1081. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1082. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1083. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1084. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1087. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //THU-IOE
  1093. U.MD.D.I.thuioeStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //jccssyl
  1100. U.MD.D.I.jccssylTeacherDeskIcon = [
  1101. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1102. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1104. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1105. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1106. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1107. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1108. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1109. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1110. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1111. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1112. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1113. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1114. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1115. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1117. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1119. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1120. ];
  1121. //jccssyl
  1122. U.MD.D.I.jccssylStudentDeskIcon = [
  1123. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1124. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1125. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1126. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1127. ];
  1128. //cale
  1129. U.MD.D.I.caleTeacherDeskIcon = [
  1130. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1131. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1133. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1134. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1135. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1136. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1137. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1138. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1139. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1140. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1141. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1142. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1143. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1144. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1146. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1147. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1148. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1149. ];
  1150. //cale
  1151. U.MD.D.I.caleStudentDeskIcon = [
  1152. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1153. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1154. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1155. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1156. ];
  1157. //lqwmsgzs
  1158. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1159. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1160. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1162. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1163. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1164. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1165. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1166. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1167. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1168. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1169. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1170. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1171. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1172. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1173. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1174. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1175. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1176. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1177. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1178. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1179. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1180. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1181. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1182. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1183. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1184. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1185. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1186. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1187. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1188. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1189. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1190. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1191. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1192. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //lqwmsgzs
  1198. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1199. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1200. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1201. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //盐田区幼儿园
  1205. U.MD.D.I.ytyTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1209. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1210. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1211. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1212. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1215. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1216. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1217. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1219. ];
  1220. //盐田区幼儿园
  1221. U.MD.D.I.ytyStudentDeskIcon = [
  1222. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1223. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1224. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1225. ];
  1226. //scnuai
  1227. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1228. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1229. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1233. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1234. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1235. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1236. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1237. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1239. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1240. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1241. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1243. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1244. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1245. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1246. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1247. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1248. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1249. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1250. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1251. ];
  1252. //scnuai
  1253. U.MD.D.I.scnuaiAdminDeskIcon = [
  1254. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1255. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1256. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1257. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1258. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1259. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1260. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1261. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1262. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1263. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1264. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1265. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1266. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1268. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1269. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1272. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1273. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1274. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1275. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1276. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1277. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiStudentDeskIcon = [
  1280. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1284. ];
  1285. //cocobiz
  1286. U.MD.D.I.cocobizteacherDeskIcon = [
  1287. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1288. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1290. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1291. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1292. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1293. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1294. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1295. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1296. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1297. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1298. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1299. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1300. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1301. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1302. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1303. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1304. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1305. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1306. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1307. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1308. ];
  1309. //cocobiz
  1310. U.MD.D.I.cocobizStudentDeskIcon = [
  1311. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1312. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1313. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1314. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1315. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1316. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1317. ];
  1318. //xxzjky
  1319. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1320. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1321. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1322. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1323. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1324. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1325. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1326. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1327. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1328. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1329. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1330. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1331. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1332. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1333. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1334. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1337. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1338. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1339. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1340. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1341. ];
  1342. //xxzjky
  1343. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1344. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1345. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1346. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1347. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1348. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1349. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1350. ];
  1351. //nsfx
  1352. U.MD.D.I.nsfxTeacherDeskIcon = [
  1353. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1354. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1355. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1356. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1360. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1361. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1362. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1363. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1364. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1365. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1366. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1367. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1368. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1369. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1370. ];
  1371. //nsfx
  1372. U.MD.D.I.nsfxStudentDeskIcon = [
  1373. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1374. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1375. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1376. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1377. ];
  1378. //stia
  1379. U.MD.D.I.stiaTeacherDeskIcon = [
  1380. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1381. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1382. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1383. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1384. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1385. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1386. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1389. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1390. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1393. ];
  1394. //stia
  1395. U.MD.D.I.stiaStudentDeskIcon = [
  1396. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. ];
  1401. //szdjg
  1402. U.MD.D.I.szdjgTeacherDeskIcon = [
  1403. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1404. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgStudentDeskIcon = [
  1408. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1409. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1410. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1411. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. ];
  1413. //010607
  1414. U.MD.D.I.x010607TeacherDeskIcon = [
  1415. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1416. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1417. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1418. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1419. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1422. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1423. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1424. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1425. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1426. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1427. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1428. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1429. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1430. ];
  1431. //010607
  1432. U.MD.D.I.x010607StudentDeskIcon = [
  1433. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1436. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1437. ];
  1438. //010608
  1439. U.MD.D.I.x010608TeacherDeskIcon = [
  1440. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1441. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1442. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1443. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1444. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1447. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1450. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1451. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1452. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1453. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1454. ];
  1455. //010608
  1456. U.MD.D.I.x010608StudentDeskIcon = [
  1457. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1459. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1461. ];
  1462. //xhly
  1463. U.MD.D.I.xhlyTeacherDeskIcon = [
  1464. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.xhlyStudentDeskIcon = [
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. ];
  1470. //北师大
  1471. U.MD.D.I.BSDNSteacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1475. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1476. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1482. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSstudentDeskIcon = [
  1486. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1487. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1488. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. ];
  1491. //CUHK_EDU
  1492. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1493. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1494. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1495. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1496. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1497. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1500. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1501. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1502. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1503. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1504. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1505. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1506. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1507. ];
  1508. //CUHK_EDU
  1509. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1510. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1511. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1512. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1514. ];
  1515. //010503
  1516. U.MD.D.I.x010503TeacherDeskIcon = [
  1517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1519. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1520. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1524. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1525. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1526. ];
  1527. //010503
  1528. U.MD.D.I.x010503StudentDeskIcon = [
  1529. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1530. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1531. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1532. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1533. ];
  1534. //SPROUT Lab
  1535. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1536. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1537. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1538. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1539. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1540. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1541. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1542. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1543. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1544. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1545. ];
  1546. //SPROUT Lab
  1547. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1548. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. ];
  1552. //010204
  1553. U.MD.D.I.x010204TeacherDeskIcon = [
  1554. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1555. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1556. ];
  1557. //010204
  1558. U.MD.D.I.x010204StudentDeskIcon = [
  1559. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1562. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1563. ];
  1564. //trail
  1565. U.MD.D.I.trailTeacherDeskIcon = [
  1566. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1567. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. ];
  1569. //trail
  1570. U.MD.D.I.trailStudentDeskIcon = [
  1571. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1572. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1573. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1575. ];
  1576. //010504
  1577. U.MD.D.I.x010504TeacherDeskIcon = [
  1578. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1579. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1581. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1582. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1585. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //010504
  1588. U.MD.D.I.x010504StudentDeskIcon = [
  1589. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //SCNUET
  1595. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1596. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1600. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1601. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1602. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1603. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1604. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1605. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1606. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1607. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1608. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1609. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1610. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1611. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1612. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1613. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1614. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1615. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1616. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1617. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1618. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1619. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1620. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1621. ];
  1622. //SCNUET
  1623. U.MD.D.I.SCNUETAdminDeskIcon = [
  1624. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1625. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1626. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1628. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1629. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1630. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1631. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1632. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1633. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1634. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1635. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1636. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1637. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1638. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1639. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1640. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1641. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1642. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1643. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1644. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1645. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1646. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1647. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1648. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1649. ];
  1650. //SCNUET
  1651. U.MD.D.I.SCNUETStudentDeskIcon = [
  1652. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1653. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1655. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1656. ];
  1657. //x020201
  1658. U.MD.D.I.x020201TeacherDeskIcon = [
  1659. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1660. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1661. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1662. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1663. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1664. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1665. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1666. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1669. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1670. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1671. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1672. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1673. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1674. ];
  1675. //x020201
  1676. U.MD.D.I.x020201AdminDeskIcon = [
  1677. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1678. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1679. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1680. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1681. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1682. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1683. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1684. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1685. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1688. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1691. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1692. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1693. ];
  1694. //020201
  1695. U.MD.D.I.x020201StudentDeskIcon = [
  1696. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1697. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1698. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1699. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1700. ];
  1701. //010611
  1702. U.MD.D.I.x010611TeacherDeskIcon = [
  1703. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1704. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1708. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1709. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1710. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1711. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1712. ];
  1713. //010611
  1714. U.MD.D.I.x010611StudentDeskIcon = [
  1715. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1716. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1717. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. ];
  1720. //tianyuan
  1721. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1722. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1723. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1724. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1725. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1726. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1727. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1731. ];
  1732. //010611
  1733. U.MD.D.I.tianyuanStudentDeskIcon = [
  1734. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1735. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1736. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1737. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1738. ];
  1739. //#region 桌面初始化a
  1740. /**
  1741. * 初始化桌面的起始函数
  1742. *
  1743. */
  1744. U.MD.D.I.init = function () {
  1745. if ($("#U_MD_D_K")[0]) {
  1746. //初始化桌面图标
  1747. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1748. // var clickUrl = ':12588/requestIp.php';
  1749. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1750. // U.MD.D.I.Ip = data;
  1751. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1752. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1753. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1754. // })
  1755. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1756. // })
  1757. }
  1758. }
  1759. /**
  1760. * 模式切换
  1761. *
  1762. */
  1763. U.MD.D.I.ModeCheck = function (type) {
  1764. if (US.Config.type == type) {
  1765. return
  1766. }
  1767. US.Config.type = type
  1768. $('.U_PBL_Check .active')[0].className = ''
  1769. if (type == 1) {
  1770. $('.U_PBL_Check div')[0].className = 'active'
  1771. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1772. } else {
  1773. $('.U_PBL_Check div')[1].className = 'active'
  1774. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1775. }
  1776. //初始化桌面图标
  1777. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1778. if (type == 2) {
  1779. U.MD.D.I.openApplication("project")
  1780. }
  1781. }
  1782. /**
  1783. * 隐藏任务栏
  1784. *
  1785. * @param {element} 桌面元素
  1786. */
  1787. U.MD.D.I.hiddenTaskbar = function (el) {
  1788. //任务栏位置变小
  1789. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1790. //桌面的位置变大
  1791. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1792. }
  1793. /**
  1794. * 隐藏任务栏
  1795. *
  1796. * @param {element} 桌面元素
  1797. */
  1798. U.MD.D.I.hiddenTaskbarout = function (el) {
  1799. //任务栏位置变小
  1800. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1801. //任务栏位置变化
  1802. U.selectEl(el).css({ "bottom": "-60px" });
  1803. //桌面的位置变大
  1804. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1805. }
  1806. }
  1807. /**
  1808. * 初始化打印桌面图标
  1809. *
  1810. * @param {element} 桌面元素
  1811. */
  1812. U.MD.D.I.initDesktopIcons = function (el, type) {
  1813. var i, //用于循环
  1814. _content, //桌面图标元素
  1815. _iconcontent, //桌面图标元素
  1816. _frag = $$("frag"), //定义一个碎片元素
  1817. _type = US.userInfo.type,
  1818. _org = US.userInfo.org,
  1819. _oid = US.userInfo.organizeid,
  1820. _role = US.userInfo.role,
  1821. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1822. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1823. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1824. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1825. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1826. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1827. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1828. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1829. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1830. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1831. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1832. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1833. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1834. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1835. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1836. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1837. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1838. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1839. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1840. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1841. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1842. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1843. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1844. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1845. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1846. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1847. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1848. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1849. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1850. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1851. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1852. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1853. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1854. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1855. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1856. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1857. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1858. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1859. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1860. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1861. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1862. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1863. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1864. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1865. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1866. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1867. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1868. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1869. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1870. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1871. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1872. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1873. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1874. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1875. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1876. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1877. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1878. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1879. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1880. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1881. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1882. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1883. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1884. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1885. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1886. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1887. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1888. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1889. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1890. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1891. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1892. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1893. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1894. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1895. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1896. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1897. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1898. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1899. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1900. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1901. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1902. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1903. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1904. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1905. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1906. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //010611
  1907. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //010611
  1908. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1909. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1910. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1911. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1912. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1913. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1914. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1915. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1916. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1917. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1918. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1919. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1920. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1921. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1922. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1923. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1924. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1925. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1926. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1927. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1928. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1929. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1930. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1931. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1932. 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'];
  1933. 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'];
  1934. //清楚桌面图标
  1935. el.innerHTML = "";
  1936. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1937. _teacherDesktopIconInfo.push(
  1938. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1939. { "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)" } },
  1940. )
  1941. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1942. }
  1943. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1944. _teacherDesktopIconInfo.push(
  1945. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1946. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1947. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1948. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1949. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1950. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1951. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1952. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1953. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1954. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1955. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1956. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1957. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1958. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1959. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1960. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1961. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1962. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1963. )
  1964. }
  1965. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1966. _teacherDesktopIconInfo.push(
  1967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1968. )
  1969. }
  1970. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1971. // _teacherDesktopIconInfo.push(
  1972. // )
  1973. // }
  1974. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1975. _teacherDesktopIconInfo.push(
  1976. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1977. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1978. )
  1979. }
  1980. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1981. _teacherDesktopIconInfo.push(
  1982. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1983. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1984. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1985. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1986. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1987. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1988. )
  1989. _studentDesktopIconInfo.push(
  1990. )
  1991. }
  1992. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1993. _teacherDesktopIconInfo.push(
  1994. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1995. )
  1996. _studentDesktopIconInfo.push(
  1997. )
  1998. }
  1999. //010606 组织
  2000. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2001. _teacherDesktopIconInfo.push(
  2002. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2003. )
  2004. _studentDesktopIconInfo.push(
  2005. )
  2006. }
  2007. //麒麟二中 和 民新小学
  2008. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2009. _teacherDesktopIconInfo.push(
  2010. )
  2011. }
  2012. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2013. _teacherDesktopIconInfo.push(
  2014. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2015. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2016. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2017. )
  2018. }
  2019. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2020. _hkTeacherDeskIconInfo.push(
  2021. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2022. )
  2023. }
  2024. //北师大附中(010601)
  2025. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2026. // _teacherDesktopIconInfo.push(
  2027. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2028. // )
  2029. // _studentDesktopIconInfo.push(
  2030. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2031. // )
  2032. // }
  2033. //樂善堂余近卿中學
  2034. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2035. _teacherDesktopIconInfo.push(
  2036. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2037. )
  2038. }
  2039. // Education Artificial Intelligence
  2040. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2041. _teacherDesktopIconInfo.push(
  2042. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2043. )
  2044. }
  2045. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2046. _teacherDesktopIconInfo.push(
  2047. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2048. )
  2049. }
  2050. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2051. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2052. _teacherDesktopIconInfo.push(
  2053. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2054. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2055. )
  2056. }
  2057. //麒麟二中
  2058. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2059. _studentDesktopIconInfo.push(
  2060. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2061. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2062. )
  2063. }
  2064. //万科双语
  2065. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2066. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2067. if (el.Name == '项目管理') {
  2068. el.Name = 'PBL项目'
  2069. }
  2070. return el
  2071. })
  2072. _studentDesktopIconInfo3.push(
  2073. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2074. )
  2075. }
  2076. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2077. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2078. return el.Name != '魔盒识字' && el.Name != '24点'
  2079. })
  2080. }
  2081. 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) {
  2082. _studentDesktopIconInfo.push(
  2083. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2084. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2085. )
  2086. }
  2087. //循环创建桌面图标
  2088. if (type == 1) {
  2089. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2090. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2091. _content = $$("div", {
  2092. className: "U_MD_D_KO",
  2093. "onmousedown": U.UF.C.closure(function (obj) {
  2094. //防止拖动图标即打开了桌面应用
  2095. U.MD.D.click(this, obj);
  2096. }, [_studentDesktopIconInfo[i]]),
  2097. "onclick": U.UF.C.closure(function (obj) {
  2098. //防止拖动图标即打开了桌面应用
  2099. U.MD.D.click(this, obj);
  2100. }, [_studentDesktopIconInfo[i]])
  2101. }, _frag); //
  2102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2105. }
  2106. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2107. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2108. _content = $$("div", {
  2109. className: "U_MD_D_KO",
  2110. "onmousedown": U.UF.C.closure(function (obj) {
  2111. //防止拖动图标即打开了桌面应用
  2112. U.MD.D.click(this, obj);
  2113. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2114. "onclick": U.UF.C.closure(function (obj) {
  2115. //防止拖动图标即打开了桌面应用
  2116. U.MD.D.click(this, obj);
  2117. }, [_hkZJLSStudentDeskIconInfo[i]])
  2118. }, _frag); //
  2119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2122. } //
  2123. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2124. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2125. _content = $$("div", {
  2126. className: "U_MD_D_KO",
  2127. "onmousedown": U.UF.C.closure(function (obj) {
  2128. //防止拖动图标即打开了桌面应用
  2129. U.MD.D.click(this, obj);
  2130. }, [_ytyStudentDeskIconInfo[i]]),
  2131. "onclick": U.UF.C.closure(function (obj) {
  2132. //防止拖动图标即打开了桌面应用
  2133. U.MD.D.click(this, obj);
  2134. }, [_ytyStudentDeskIconInfo[i]])
  2135. }, _frag); //
  2136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2139. } //
  2140. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2141. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2142. _content = $$("div", {
  2143. className: "U_MD_D_KO",
  2144. "onmousedown": U.UF.C.closure(function (obj) {
  2145. //防止拖动图标即打开了桌面应用
  2146. U.MD.D.click(this, obj);
  2147. }, [_jccssylStudentDeskIconInfo[i]]),
  2148. "onclick": U.UF.C.closure(function (obj) {
  2149. //防止拖动图标即打开了桌面应用
  2150. U.MD.D.click(this, obj);
  2151. }, [_jccssylStudentDeskIconInfo[i]])
  2152. }, _frag); //
  2153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2156. }
  2157. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2158. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2159. _content = $$("div", {
  2160. className: "U_MD_D_KO",
  2161. "onmousedown": U.UF.C.closure(function (obj) {
  2162. //防止拖动图标即打开了桌面应用
  2163. U.MD.D.click(this, obj);
  2164. }, [_scnuaiStudentDeskIconInfo[i]]),
  2165. "onclick": U.UF.C.closure(function (obj) {
  2166. //防止拖动图标即打开了桌面应用
  2167. U.MD.D.click(this, obj);
  2168. }, [_scnuaiStudentDeskIconInfo[i]])
  2169. }, _frag); //
  2170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2173. }
  2174. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2175. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2176. _content = $$("div", {
  2177. className: "U_MD_D_KO",
  2178. "onmousedown": U.UF.C.closure(function (obj) {
  2179. //防止拖动图标即打开了桌面应用
  2180. U.MD.D.click(this, obj);
  2181. }, [_caleStudentDeskIconInfo[i]]),
  2182. "onclick": U.UF.C.closure(function (obj) {
  2183. //防止拖动图标即打开了桌面应用
  2184. U.MD.D.click(this, obj);
  2185. }, [_caleStudentDeskIconInfo[i]])
  2186. }, _frag); //
  2187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2190. }
  2191. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2192. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2193. _content = $$("div", {
  2194. className: "U_MD_D_KO",
  2195. "onmousedown": U.UF.C.closure(function (obj) {
  2196. //防止拖动图标即打开了桌面应用
  2197. U.MD.D.click(this, obj);
  2198. }, [_thuioeStudentDeskIconInfo[i]]),
  2199. "onclick": U.UF.C.closure(function (obj) {
  2200. //防止拖动图标即打开了桌面应用
  2201. U.MD.D.click(this, obj);
  2202. }, [_thuioeStudentDeskIconInfo[i]])
  2203. }, _frag); //
  2204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2207. }
  2208. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2209. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2210. _content = $$("div", {
  2211. className: "U_MD_D_KO",
  2212. "onmousedown": U.UF.C.closure(function (obj) {
  2213. //防止拖动图标即打开了桌面应用
  2214. U.MD.D.click(this, obj);
  2215. }, [_tpcStudentDeskIconInfo[i]]),
  2216. "onclick": U.UF.C.closure(function (obj) {
  2217. //防止拖动图标即打开了桌面应用
  2218. U.MD.D.click(this, obj);
  2219. }, [_tpcStudentDeskIconInfo[i]])
  2220. }, _frag); //
  2221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2224. } //
  2225. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2226. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2227. _content = $$("div", {
  2228. className: "U_MD_D_KO",
  2229. "onmousedown": U.UF.C.closure(function (obj) {
  2230. //防止拖动图标即打开了桌面应用
  2231. U.MD.D.click(this, obj);
  2232. }, [_chjyjStudentDeskIconInfo[i]]),
  2233. "onclick": U.UF.C.closure(function (obj) {
  2234. //防止拖动图标即打开了桌面应用
  2235. U.MD.D.click(this, obj);
  2236. }, [_chjyjStudentDeskIconInfo[i]])
  2237. }, _frag); //
  2238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2241. }
  2242. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2243. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2244. _content = $$("div", {
  2245. className: "U_MD_D_KO",
  2246. "onmousedown": U.UF.C.closure(function (obj) {
  2247. //防止拖动图标即打开了桌面应用
  2248. U.MD.D.click(this, obj);
  2249. }, [_szjkyStudentDeskIconInfo[i]]),
  2250. "onclick": U.UF.C.closure(function (obj) {
  2251. //防止拖动图标即打开了桌面应用
  2252. U.MD.D.click(this, obj);
  2253. }, [_szjkyStudentDeskIconInfo[i]])
  2254. }, _frag); //
  2255. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2256. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2257. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2258. }
  2259. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2260. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2261. _content = $$("div", {
  2262. className: "U_MD_D_KO",
  2263. "onmousedown": U.UF.C.closure(function (obj) {
  2264. //防止拖动图标即打开了桌面应用
  2265. U.MD.D.click(this, obj);
  2266. }, [_x020201StudentDeskIconInfo[i]]),
  2267. "onclick": U.UF.C.closure(function (obj) {
  2268. //防止拖动图标即打开了桌面应用
  2269. U.MD.D.click(this, obj);
  2270. }, [_x020201StudentDeskIconInfo[i]])
  2271. }, _frag); //
  2272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2275. }
  2276. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2277. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2278. _content = $$("div", {
  2279. className: "U_MD_D_KO",
  2280. "onmousedown": U.UF.C.closure(function (obj) {
  2281. //防止拖动图标即打开了桌面应用
  2282. U.MD.D.click(this, obj);
  2283. }, [_SCNUETStudentDeskIconInfo[i]]),
  2284. "onclick": U.UF.C.closure(function (obj) {
  2285. //防止拖动图标即打开了桌面应用
  2286. U.MD.D.click(this, obj);
  2287. }, [_SCNUETStudentDeskIconInfo[i]])
  2288. }, _frag); //
  2289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2292. }
  2293. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2294. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2295. _content = $$("div", {
  2296. className: "U_MD_D_KO",
  2297. "onmousedown": U.UF.C.closure(function (obj) {
  2298. //防止拖动图标即打开了桌面应用
  2299. U.MD.D.click(this, obj);
  2300. }, [_dseiStudentDeskIconInfo[i]]),
  2301. "onclick": U.UF.C.closure(function (obj) {
  2302. //防止拖动图标即打开了桌面应用
  2303. U.MD.D.click(this, obj);
  2304. }, [_dseiStudentDeskIconInfo[i]])
  2305. }, _frag); //
  2306. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2307. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2308. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2309. }
  2310. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2311. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2312. _content = $$("div", {
  2313. className: "U_MD_D_KO",
  2314. "onmousedown": U.UF.C.closure(function (obj) {
  2315. //防止拖动图标即打开了桌面应用
  2316. U.MD.D.click(this, obj);
  2317. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2318. "onclick": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2322. }, _frag); //
  2323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2326. }
  2327. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2328. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2329. _content = $$("div", {
  2330. className: "U_MD_D_KO",
  2331. "onmousedown": U.UF.C.closure(function (obj) {
  2332. //防止拖动图标即打开了桌面应用
  2333. U.MD.D.click(this, obj);
  2334. }, [_nsfxStudentDeskIconInfo[i]]),
  2335. "onclick": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_nsfxStudentDeskIconInfo[i]])
  2339. }, _frag); //
  2340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2343. }
  2344. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2345. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2346. _content = $$("div", {
  2347. className: "U_MD_D_KO",
  2348. "onmousedown": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_stiaStudentDeskIconInfo[i]]),
  2352. "onclick": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_stiaStudentDeskIconInfo[i]])
  2356. }, _frag); //
  2357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2360. }
  2361. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2362. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2363. _content = $$("div", {
  2364. className: "U_MD_D_KO",
  2365. "onmousedown": U.UF.C.closure(function (obj) {
  2366. //防止拖动图标即打开了桌面应用
  2367. U.MD.D.click(this, obj);
  2368. }, [_szdjgStudentDeskIconInfo[i]]),
  2369. "onclick": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_szdjgStudentDeskIconInfo[i]])
  2373. }, _frag); //
  2374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2377. }
  2378. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2379. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2380. _content = $$("div", {
  2381. className: "U_MD_D_KO",
  2382. "onmousedown": U.UF.C.closure(function (obj) {
  2383. //防止拖动图标即打开了桌面应用
  2384. U.MD.D.click(this, obj);
  2385. }, [_x010607StudentDeskIconInfo[i]]),
  2386. "onclick": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_x010607StudentDeskIconInfo[i]])
  2390. }, _frag); //
  2391. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2392. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2393. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2394. }
  2395. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2396. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2397. _content = $$("div", {
  2398. className: "U_MD_D_KO",
  2399. "onmousedown": U.UF.C.closure(function (obj) {
  2400. //防止拖动图标即打开了桌面应用
  2401. U.MD.D.click(this, obj);
  2402. }, [_xhlyStudentDeskIconInfo[i]]),
  2403. "onclick": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_xhlyStudentDeskIconInfo[i]])
  2407. }, _frag); //
  2408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2411. }
  2412. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2413. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2414. _content = $$("div", {
  2415. className: "U_MD_D_KO",
  2416. "onmousedown": U.UF.C.closure(function (obj) {
  2417. //防止拖动图标即打开了桌面应用
  2418. U.MD.D.click(this, obj);
  2419. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2420. "onclick": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2424. }, _frag); //
  2425. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2426. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2427. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2428. }
  2429. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2430. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2431. _content = $$("div", {
  2432. className: "U_MD_D_KO",
  2433. "onmousedown": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_x010503StudentDeskIconInfo[i]]),
  2437. "onclick": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_x010503StudentDeskIconInfo[i]])
  2441. }, _frag); //
  2442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2445. }
  2446. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2447. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2448. _content = $$("div", {
  2449. className: "U_MD_D_KO",
  2450. "onmousedown": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_x010504StudentDeskIconInfo[i]]),
  2454. "onclick": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_x010504StudentDeskIconInfo[i]])
  2458. }, _frag); //
  2459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2462. }
  2463. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2464. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2465. _content = $$("div", {
  2466. className: "U_MD_D_KO",
  2467. "onmousedown": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_x010204StudentDeskIconInfo[i]]),
  2471. "onclick": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_x010204StudentDeskIconInfo[i]])
  2475. }, _frag); //
  2476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2479. }
  2480. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2481. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2482. _content = $$("div", {
  2483. className: "U_MD_D_KO",
  2484. "onmousedown": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_trailStudentDeskIconInfo[i]]),
  2488. "onclick": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_trailStudentDeskIconInfo[i]])
  2492. }, _frag); //
  2493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2496. }
  2497. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2498. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2499. _content = $$("div", {
  2500. className: "U_MD_D_KO",
  2501. "onmousedown": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2505. "onclick": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2509. }, _frag); //
  2510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2513. }
  2514. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2515. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2516. _content = $$("div", {
  2517. className: "U_MD_D_KO",
  2518. "onmousedown": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_x010608StudentDeskIconInfo[i]]),
  2522. "onclick": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_x010608StudentDeskIconInfo[i]])
  2526. }, _frag); //
  2527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2530. }
  2531. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2532. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2533. _content = $$("div", {
  2534. className: "U_MD_D_KO",
  2535. "onmousedown": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_x010611StudentDeskIconInfo[i]]),
  2539. "onclick": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_x010611StudentDeskIconInfo[i]])
  2543. }, _frag); //
  2544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2547. }
  2548. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2549. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2550. _content = $$("div", {
  2551. className: "U_MD_D_KO",
  2552. "onmousedown": U.UF.C.closure(function (obj) {
  2553. //防止拖动图标即打开了桌面应用
  2554. U.MD.D.click(this, obj);
  2555. }, [_tianyuantudentDeskIconInfo[i]]),
  2556. "onclick": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_tianyuantudentDeskIconInfo[i]])
  2560. }, _frag); //
  2561. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2562. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2563. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2564. }
  2565. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2566. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2567. _content = $$("div", {
  2568. className: "U_MD_D_KO",
  2569. "onmousedown": U.UF.C.closure(function (obj) {
  2570. //防止拖动图标即打开了桌面应用
  2571. U.MD.D.click(this, obj);
  2572. }, [_siesStudentDeskIconInfo[i]]),
  2573. "onclick": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_siesStudentDeskIconInfo[i]])
  2577. }, _frag); //
  2578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2581. }
  2582. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2583. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2584. _content = $$("div", {
  2585. className: "U_MD_D_KO",
  2586. "onmousedown": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_guzmsStudentDeskIconInfo[i]]),
  2590. "onclick": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_guzmsStudentDeskIconInfo[i]])
  2594. }, _frag); //
  2595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2598. }
  2599. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2600. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2601. _content = $$("div", {
  2602. className: "U_MD_D_KO",
  2603. "onmousedown": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_hkStudentDeskIconInfo[i]]),
  2607. "onclick": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_hkStudentDeskIconInfo[i]])
  2611. }, _frag); //
  2612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2615. }
  2616. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2617. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_hkaceStudentDeskIconInfo[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_hkaceStudentDeskIconInfo[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2632. }
  2633. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2634. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2635. _content = $$("div", {
  2636. className: "U_MD_D_KO",
  2637. "onmousedown": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2641. "onclick": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_BSDNSstudentDesktopIconInfo[i]])
  2645. }, _frag); //
  2646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2649. }
  2650. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2651. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2652. _content = $$("div", {
  2653. className: "U_MD_D_KO",
  2654. "onmousedown": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_cocobizStudentDeskIconInfo[i]]),
  2658. "onclick": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_cocobizStudentDeskIconInfo[i]])
  2662. }, _frag); //
  2663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2666. }
  2667. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2668. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2669. _content = $$("div", {
  2670. className: "U_MD_D_KO",
  2671. "onmousedown": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2675. "onclick": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_xxzjkyStudentDeskIconInfo[i]])
  2679. }, _frag); //
  2680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2683. }
  2684. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2685. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2686. _content = $$("div", {
  2687. className: "U_MD_D_KO",
  2688. "onmousedown": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_studentDesktopIconInfo[i]]),
  2692. "onclick": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_studentDesktopIconInfo[i]])
  2696. }, _frag); //
  2697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2700. }
  2701. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2702. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2703. _content = $$("div", {
  2704. className: "U_MD_D_KO",
  2705. "onmousedown": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_tcStudentDeskIconInfo[i]]),
  2709. "onclick": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_tcStudentDeskIconInfo[i]])
  2713. }, _frag); //
  2714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2717. }
  2718. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2719. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2720. _content = $$("div", {
  2721. className: "U_MD_D_KO",
  2722. "onmousedown": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_szscStudentDeskIconInfo[i]]),
  2726. "onclick": U.UF.C.closure(function (obj) {
  2727. //防止拖动图标即打开了桌面应用
  2728. U.MD.D.click(this, obj);
  2729. }, [_szscStudentDeskIconInfo[i]])
  2730. }, _frag); //
  2731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2734. }
  2735. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2736. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2737. _content = $$("div", {
  2738. className: "U_MD_D_KO",
  2739. "onmousedown": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_studentDesktopIconInfo3[i]]),
  2743. "onclick": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_studentDesktopIconInfo3[i]])
  2747. }, _frag); //
  2748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2751. }
  2752. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2753. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2754. _content = $$("div", {
  2755. className: "U_MD_D_KO",
  2756. "onmousedown": U.UF.C.closure(function (obj) {
  2757. //防止拖动图标即打开了桌面应用
  2758. U.MD.D.click(this, obj);
  2759. }, [_studentDesktopIconInfo2[i]]),
  2760. "onclick": U.UF.C.closure(function (obj) {
  2761. //防止拖动图标即打开了桌面应用
  2762. U.MD.D.click(this, obj);
  2763. }, [_studentDesktopIconInfo2[i]])
  2764. }, _frag); //
  2765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2768. }
  2769. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2770. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2771. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2772. continue
  2773. }
  2774. _content = $$("div", {
  2775. className: "U_MD_D_KO",
  2776. "onmousedown": U.UF.C.closure(function (obj) {
  2777. //防止拖动图标即打开了桌面应用
  2778. U.MD.D.click(this, obj);
  2779. }, [_wanketeacherDesktopIconInfo[i]]),
  2780. "onclick": U.UF.C.closure(function (obj) {
  2781. //防止拖动图标即打开了桌面应用
  2782. U.MD.D.click(this, obj);
  2783. }, [_wanketeacherDesktopIconInfo[i]])
  2784. }, _frag); //
  2785. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2786. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2787. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2788. }
  2789. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2790. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2791. _content = $$("div", {
  2792. className: "U_MD_D_KO",
  2793. "onmousedown": U.UF.C.closure(function (obj) {
  2794. //防止拖动图标即打开了桌面应用
  2795. U.MD.D.click(this, obj);
  2796. }, [_wankeAdminDesktopIconInfo[i]]),
  2797. "onclick": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_wankeAdminDesktopIconInfo[i]])
  2801. }, _frag); //
  2802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2805. }
  2806. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2807. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2808. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2809. continue
  2810. }
  2811. _content = $$("div", {
  2812. className: "U_MD_D_KO",
  2813. "onmousedown": U.UF.C.closure(function (obj) {
  2814. //防止拖动图标即打开了桌面应用
  2815. U.MD.D.click(this, obj);
  2816. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2817. "onclick": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_scnuaiTeacherDeskIconInfo[i]])
  2821. }, _frag); //
  2822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2825. }
  2826. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2827. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2828. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2829. continue
  2830. }
  2831. _content = $$("div", {
  2832. className: "U_MD_D_KO",
  2833. "onmousedown": U.UF.C.closure(function (obj) {
  2834. //防止拖动图标即打开了桌面应用
  2835. U.MD.D.click(this, obj);
  2836. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2837. "onclick": U.UF.C.closure(function (obj) {
  2838. //防止拖动图标即打开了桌面应用
  2839. U.MD.D.click(this, obj);
  2840. }, [_BSDNSteacherDesktopIconInfo[i]])
  2841. }, _frag); //
  2842. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2843. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2844. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2845. }
  2846. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2847. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2848. _content = $$("div", {
  2849. className: "U_MD_D_KO",
  2850. "onmousedown": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_scnuaiAdminDeskIconInfo[i]]),
  2854. "onclick": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_scnuaiAdminDeskIconInfo[i]])
  2858. }, _frag); //
  2859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2862. }
  2863. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2864. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2865. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2866. continue
  2867. }
  2868. _content = $$("div", {
  2869. className: "U_MD_D_KO",
  2870. "onmousedown": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_jccssylTeacherDeskIconInfo[i]]),
  2874. "onclick": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_jccssylTeacherDeskIconInfo[i]])
  2878. }, _frag); //
  2879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2882. }
  2883. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2884. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2885. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2886. continue
  2887. }
  2888. _content = $$("div", {
  2889. className: "U_MD_D_KO",
  2890. "onmousedown": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_caleTeacherDeskIconInfo[i]]),
  2894. "onclick": U.UF.C.closure(function (obj) {
  2895. //防止拖动图标即打开了桌面应用
  2896. U.MD.D.click(this, obj);
  2897. }, [_caleTeacherDeskIconInfo[i]])
  2898. }, _frag); //
  2899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2902. }
  2903. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2904. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2905. _content = $$("div", {
  2906. className: "U_MD_D_KO",
  2907. "onmousedown": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_tpcOrganizerDeskIconInfo[i]]),
  2911. "onclick": U.UF.C.closure(function (obj) {
  2912. //防止拖动图标即打开了桌面应用
  2913. U.MD.D.click(this, obj);
  2914. }, [_tpcOrganizerDeskIconInfo[i]])
  2915. }, _frag); //
  2916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2919. }
  2920. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2921. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2922. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2923. continue
  2924. }
  2925. _content = $$("div", {
  2926. className: "U_MD_D_KO",
  2927. "onmousedown": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_tpcTeacherDeskIconInfo[i]]),
  2931. "onclick": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_tpcTeacherDeskIconInfo[i]])
  2935. }, _frag); //
  2936. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2937. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2938. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2939. }
  2940. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2941. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2942. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2943. continue
  2944. }
  2945. _content = $$("div", {
  2946. className: "U_MD_D_KO",
  2947. "onmousedown": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_teacherDesktopIconInfo2[i]]),
  2951. "onclick": U.UF.C.closure(function (obj) {
  2952. //防止拖动图标即打开了桌面应用
  2953. U.MD.D.click(this, obj);
  2954. }, [_teacherDesktopIconInfo2[i]])
  2955. }, _frag); //
  2956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2959. }
  2960. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2961. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2962. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2963. continue
  2964. }
  2965. _content = $$("div", {
  2966. className: "U_MD_D_KO",
  2967. "onmousedown": U.UF.C.closure(function (obj) {
  2968. //防止拖动图标即打开了桌面应用
  2969. U.MD.D.click(this, obj);
  2970. }, [_thuioeTeacherDeskIconInfo[i]]),
  2971. "onclick": U.UF.C.closure(function (obj) {
  2972. //防止拖动图标即打开了桌面应用
  2973. U.MD.D.click(this, obj);
  2974. }, [_thuioeTeacherDeskIconInfo[i]])
  2975. }, _frag); //
  2976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2979. }
  2980. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2981. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2982. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2983. continue
  2984. }
  2985. _content = $$("div", {
  2986. className: "U_MD_D_KO",
  2987. "onmousedown": U.UF.C.closure(function (obj) {
  2988. //防止拖动图标即打开了桌面应用
  2989. U.MD.D.click(this, obj);
  2990. }, [_lotechTeacherDeskIconInfo[i]]),
  2991. "onclick": U.UF.C.closure(function (obj) {
  2992. //防止拖动图标即打开了桌面应用
  2993. U.MD.D.click(this, obj);
  2994. }, [_lotechTeacherDeskIconInfo[i]])
  2995. }, _frag); //
  2996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2999. }//
  3000. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3001. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3002. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3003. continue
  3004. }
  3005. _content = $$("div", {
  3006. className: "U_MD_D_KO",
  3007. "onmousedown": U.UF.C.closure(function (obj) {
  3008. //防止拖动图标即打开了桌面应用
  3009. U.MD.D.click(this, obj);
  3010. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3011. "onclick": U.UF.C.closure(function (obj) {
  3012. //防止拖动图标即打开了桌面应用
  3013. U.MD.D.click(this, obj);
  3014. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3015. }, _frag); //
  3016. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3017. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3018. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3019. }
  3020. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3021. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3022. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3023. continue
  3024. }
  3025. _content = $$("div", {
  3026. className: "U_MD_D_KO",
  3027. "onmousedown": U.UF.C.closure(function (obj) {
  3028. //防止拖动图标即打开了桌面应用
  3029. U.MD.D.click(this, obj);
  3030. }, [_siesTeacherDeskIconInfo[i]]),
  3031. "onclick": U.UF.C.closure(function (obj) {
  3032. //防止拖动图标即打开了桌面应用
  3033. U.MD.D.click(this, obj);
  3034. }, [_siesTeacherDeskIconInfo[i]])
  3035. }, _frag); //
  3036. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3037. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3038. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3039. }
  3040. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3041. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3042. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3043. continue
  3044. }
  3045. _content = $$("div", {
  3046. className: "U_MD_D_KO",
  3047. "onmousedown": U.UF.C.closure(function (obj) {
  3048. //防止拖动图标即打开了桌面应用
  3049. U.MD.D.click(this, obj);
  3050. }, [_guzmsTeacherDeskIconInfo[i]]),
  3051. "onclick": U.UF.C.closure(function (obj) {
  3052. //防止拖动图标即打开了桌面应用
  3053. U.MD.D.click(this, obj);
  3054. }, [_guzmsTeacherDeskIconInfo[i]])
  3055. }, _frag); //
  3056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3059. }
  3060. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3061. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3062. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3063. continue
  3064. }
  3065. _content = $$("div", {
  3066. className: "U_MD_D_KO",
  3067. "onmousedown": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_longhuaTeacherDeskIconInfo[i]]),
  3071. "onclick": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_longhuaTeacherDeskIconInfo[i]])
  3075. }, _frag); //
  3076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3079. }
  3080. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3081. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3082. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3083. continue
  3084. }
  3085. _content = $$("div", {
  3086. className: "U_MD_D_KO",
  3087. "onmousedown": U.UF.C.closure(function (obj) {
  3088. //防止拖动图标即打开了桌面应用
  3089. U.MD.D.click(this, obj);
  3090. }, [_ytyTeacherDeskIconInfo[i]]),
  3091. "onclick": U.UF.C.closure(function (obj) {
  3092. //防止拖动图标即打开了桌面应用
  3093. U.MD.D.click(this, obj);
  3094. }, [_ytyTeacherDeskIconInfo[i]])
  3095. }, _frag); //
  3096. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3097. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3098. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3099. }
  3100. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3101. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3102. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3103. continue
  3104. }
  3105. _content = $$("div", {
  3106. className: "U_MD_D_KO",
  3107. "onmousedown": U.UF.C.closure(function (obj) {
  3108. //防止拖动图标即打开了桌面应用
  3109. U.MD.D.click(this, obj);
  3110. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3111. "onclick": U.UF.C.closure(function (obj) {
  3112. //防止拖动图标即打开了桌面应用
  3113. U.MD.D.click(this, obj);
  3114. }, [_yunhaiTeacherDeskIconInfo[i]])
  3115. }, _frag); //
  3116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3119. } //_hkStudentDeskIconInfo
  3120. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3121. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3122. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3123. continue
  3124. }
  3125. _content = $$("div", {
  3126. className: "U_MD_D_KO",
  3127. "onmousedown": U.UF.C.closure(function (obj) {
  3128. //防止拖动图标即打开了桌面应用
  3129. U.MD.D.click(this, obj);
  3130. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3131. "onclick": U.UF.C.closure(function (obj) {
  3132. //防止拖动图标即打开了桌面应用
  3133. U.MD.D.click(this, obj);
  3134. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3135. }, _frag); //
  3136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3139. }
  3140. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3141. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3142. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3143. continue
  3144. }
  3145. _content = $$("div", {
  3146. className: "U_MD_D_KO",
  3147. "onmousedown": U.UF.C.closure(function (obj) {
  3148. //防止拖动图标即打开了桌面应用
  3149. U.MD.D.click(this, obj);
  3150. }, [_hkTeacherDeskIconInfo[i]]),
  3151. "onclick": U.UF.C.closure(function (obj) {
  3152. //防止拖动图标即打开了桌面应用
  3153. U.MD.D.click(this, obj);
  3154. }, [_hkTeacherDeskIconInfo[i]])
  3155. }, _frag); //
  3156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3159. }
  3160. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3161. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3162. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3163. continue
  3164. }
  3165. _content = $$("div", {
  3166. className: "U_MD_D_KO",
  3167. "onmousedown": U.UF.C.closure(function (obj) {
  3168. //防止拖动图标即打开了桌面应用
  3169. U.MD.D.click(this, obj);
  3170. }, [_hkaceTeacherDeskIconInfo[i]]),
  3171. "onclick": U.UF.C.closure(function (obj) {
  3172. //防止拖动图标即打开了桌面应用
  3173. U.MD.D.click(this, obj);
  3174. }, [_hkaceTeacherDeskIconInfo[i]])
  3175. }, _frag); //
  3176. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3179. }
  3180. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3181. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3182. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3183. continue
  3184. }
  3185. _content = $$("div", {
  3186. className: "U_MD_D_KO",
  3187. "onmousedown": U.UF.C.closure(function (obj) {
  3188. //防止拖动图标即打开了桌面应用
  3189. U.MD.D.click(this, obj);
  3190. }, [_cocobizTeacherDeskIconInfo[i]]),
  3191. "onclick": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_cocobizTeacherDeskIconInfo[i]])
  3195. }, _frag); //
  3196. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3197. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3198. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3199. }
  3200. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3201. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3202. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3203. continue
  3204. }
  3205. _content = $$("div", {
  3206. className: "U_MD_D_KO",
  3207. "onmousedown": U.UF.C.closure(function (obj) {
  3208. //防止拖动图标即打开了桌面应用
  3209. U.MD.D.click(this, obj);
  3210. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3211. "onclick": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3215. }, _frag); //
  3216. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3217. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3218. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3219. }
  3220. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3221. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3222. _content = $$("div", {
  3223. className: "U_MD_D_KO",
  3224. "onmousedown": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_gdjgAdminDeskIconInfo[i]]),
  3228. "onclick": U.UF.C.closure(function (obj) {
  3229. //防止拖动图标即打开了桌面应用
  3230. U.MD.D.click(this, obj);
  3231. }, [_gdjgAdminDeskIconInfo[i]])
  3232. }, _frag); //
  3233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3236. }
  3237. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3238. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3239. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3240. continue
  3241. }
  3242. _content = $$("div", {
  3243. className: "U_MD_D_KO",
  3244. "onmousedown": U.UF.C.closure(function (obj) {
  3245. //防止拖动图标即打开了桌面应用
  3246. U.MD.D.click(this, obj);
  3247. }, [_gdjgTeacherDeskIconInfo[i]]),
  3248. "onclick": U.UF.C.closure(function (obj) {
  3249. //防止拖动图标即打开了桌面应用
  3250. U.MD.D.click(this, obj);
  3251. }, [_gdjgTeacherDeskIconInfo[i]])
  3252. }, _frag); //
  3253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3256. }
  3257. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3258. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3259. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3260. continue
  3261. }
  3262. _content = $$("div", {
  3263. className: "U_MD_D_KO",
  3264. "onmousedown": U.UF.C.closure(function (obj) {
  3265. //防止拖动图标即打开了桌面应用
  3266. U.MD.D.click(this, obj);
  3267. }, [_szherTeacherDeskIconInfo[i]]),
  3268. "onclick": U.UF.C.closure(function (obj) {
  3269. //防止拖动图标即打开了桌面应用
  3270. U.MD.D.click(this, obj);
  3271. }, [_szherTeacherDeskIconInfo[i]])
  3272. }, _frag); //
  3273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3276. }
  3277. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3278. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3279. _content = $$("div", {
  3280. className: "U_MD_D_KO",
  3281. "onmousedown": U.UF.C.closure(function (obj) {
  3282. //防止拖动图标即打开了桌面应用
  3283. U.MD.D.click(this, obj);
  3284. }, [_heyuannAdminDeskIconInfo[i]]),
  3285. "onclick": U.UF.C.closure(function (obj) {
  3286. //防止拖动图标即打开了桌面应用
  3287. U.MD.D.click(this, obj);
  3288. }, [_heyuannAdminDeskIconInfo[i]])
  3289. }, _frag); //
  3290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3293. }
  3294. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3295. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3296. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3297. continue
  3298. }
  3299. _content = $$("div", {
  3300. className: "U_MD_D_KO",
  3301. "onmousedown": U.UF.C.closure(function (obj) {
  3302. //防止拖动图标即打开了桌面应用
  3303. U.MD.D.click(this, obj);
  3304. }, [_heyuanTeacherDeskIconInfo[i]]),
  3305. "onclick": U.UF.C.closure(function (obj) {
  3306. //防止拖动图标即打开了桌面应用
  3307. U.MD.D.click(this, obj);
  3308. }, [_heyuanTeacherDeskIconInfo[i]])
  3309. }, _frag); //
  3310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3313. } //
  3314. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3315. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3316. _content = $$("div", {
  3317. className: "U_MD_D_KO",
  3318. "onmousedown": U.UF.C.closure(function (obj) {
  3319. //防止拖动图标即打开了桌面应用
  3320. U.MD.D.click(this, obj);
  3321. }, [_dseiAdminDeskIconInfo[i]]),
  3322. "onclick": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_dseiAdminDeskIconInfo[i]])
  3326. }, _frag); //
  3327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3330. }
  3331. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3332. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3333. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3334. continue
  3335. }
  3336. _content = $$("div", {
  3337. className: "U_MD_D_KO",
  3338. "onmousedown": U.UF.C.closure(function (obj) {
  3339. //防止拖动图标即打开了桌面应用
  3340. U.MD.D.click(this, obj);
  3341. }, [_dseiTeacherDeskIconInfo[i]]),
  3342. "onclick": U.UF.C.closure(function (obj) {
  3343. //防止拖动图标即打开了桌面应用
  3344. U.MD.D.click(this, obj);
  3345. }, [_dseiTeacherDeskIconInfo[i]])
  3346. }, _frag); //
  3347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3350. } //
  3351. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3352. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3353. _content = $$("div", {
  3354. className: "U_MD_D_KO",
  3355. "onmousedown": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_chjyjAdminDeskIconInfo[i]]),
  3359. "onclick": U.UF.C.closure(function (obj) {
  3360. //防止拖动图标即打开了桌面应用
  3361. U.MD.D.click(this, obj);
  3362. }, [_chjyjAdminDeskIconInfo[i]])
  3363. }, _frag); //
  3364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3367. }//
  3368. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3369. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3370. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3371. continue
  3372. }
  3373. _content = $$("div", {
  3374. className: "U_MD_D_KO",
  3375. "onmousedown": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_chjyjTeacherDeskIconInfo[i]]),
  3379. "onclick": U.UF.C.closure(function (obj) {
  3380. //防止拖动图标即打开了桌面应用
  3381. U.MD.D.click(this, obj);
  3382. }, [_chjyjTeacherDeskIconInfo[i]])
  3383. }, _frag); //
  3384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3387. }
  3388. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3389. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3390. _content = $$("div", {
  3391. className: "U_MD_D_KO",
  3392. "onmousedown": U.UF.C.closure(function (obj) {
  3393. //防止拖动图标即打开了桌面应用
  3394. U.MD.D.click(this, obj);
  3395. }, [_szjkyAdminDeskIconInfo[i]]),
  3396. "onclick": U.UF.C.closure(function (obj) {
  3397. //防止拖动图标即打开了桌面应用
  3398. U.MD.D.click(this, obj);
  3399. }, [_szjkyAdminDeskIconInfo[i]])
  3400. }, _frag); //
  3401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3404. }//
  3405. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3406. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3407. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3408. continue
  3409. }
  3410. _content = $$("div", {
  3411. className: "U_MD_D_KO",
  3412. "onmousedown": U.UF.C.closure(function (obj) {
  3413. //防止拖动图标即打开了桌面应用
  3414. U.MD.D.click(this, obj);
  3415. }, [_szjkyTeacherDeskIconInfo[i]]),
  3416. "onclick": U.UF.C.closure(function (obj) {
  3417. //防止拖动图标即打开了桌面应用
  3418. U.MD.D.click(this, obj);
  3419. }, [_szjkyTeacherDeskIconInfo[i]])
  3420. }, _frag); //
  3421. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3422. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3423. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3424. }
  3425. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3426. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3427. _content = $$("div", {
  3428. className: "U_MD_D_KO",
  3429. "onmousedown": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_x020201AdminDeskIconInfo[i]]),
  3433. "onclick": U.UF.C.closure(function (obj) {
  3434. //防止拖动图标即打开了桌面应用
  3435. U.MD.D.click(this, obj);
  3436. }, [_x020201AdminDeskIconInfo[i]])
  3437. }, _frag); //
  3438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3441. }//
  3442. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3443. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3444. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3445. continue
  3446. }
  3447. _content = $$("div", {
  3448. className: "U_MD_D_KO",
  3449. "onmousedown": U.UF.C.closure(function (obj) {
  3450. //防止拖动图标即打开了桌面应用
  3451. U.MD.D.click(this, obj);
  3452. }, [_x020201TeacherDeskIconInfo[i]]),
  3453. "onclick": U.UF.C.closure(function (obj) {
  3454. //防止拖动图标即打开了桌面应用
  3455. U.MD.D.click(this, obj);
  3456. }, [_x020201TeacherDeskIconInfo[i]])
  3457. }, _frag); //
  3458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3461. }
  3462. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3463. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3464. _content = $$("div", {
  3465. className: "U_MD_D_KO",
  3466. "onmousedown": U.UF.C.closure(function (obj) {
  3467. //防止拖动图标即打开了桌面应用
  3468. U.MD.D.click(this, obj);
  3469. }, [_SCNUETAdminDeskIconInfo[i]]),
  3470. "onclick": U.UF.C.closure(function (obj) {
  3471. //防止拖动图标即打开了桌面应用
  3472. U.MD.D.click(this, obj);
  3473. }, [_SCNUETAdminDeskIconInfo[i]])
  3474. }, _frag); //
  3475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3478. }//
  3479. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3480. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3481. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3482. continue
  3483. }
  3484. _content = $$("div", {
  3485. className: "U_MD_D_KO",
  3486. "onmousedown": U.UF.C.closure(function (obj) {
  3487. //防止拖动图标即打开了桌面应用
  3488. U.MD.D.click(this, obj);
  3489. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3490. "onclick": U.UF.C.closure(function (obj) {
  3491. //防止拖动图标即打开了桌面应用
  3492. U.MD.D.click(this, obj);
  3493. }, [_SCNUETTeacherDeskIconInfo[i]])
  3494. }, _frag); //
  3495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3498. }
  3499. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3500. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3501. _content = $$("div", {
  3502. className: "U_MD_D_KO",
  3503. "onmousedown": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_futianAdminDeskIconInfo[i]]),
  3507. "onclick": U.UF.C.closure(function (obj) {
  3508. //防止拖动图标即打开了桌面应用
  3509. U.MD.D.click(this, obj);
  3510. }, [_futianAdminDeskIconInfo[i]])
  3511. }, _frag); //
  3512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3515. }
  3516. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3517. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3518. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3519. continue
  3520. }
  3521. _content = $$("div", {
  3522. className: "U_MD_D_KO",
  3523. "onmousedown": U.UF.C.closure(function (obj) {
  3524. //防止拖动图标即打开了桌面应用
  3525. U.MD.D.click(this, obj);
  3526. }, [_futianTeacherDeskIconInfo[i]]),
  3527. "onclick": U.UF.C.closure(function (obj) {
  3528. //防止拖动图标即打开了桌面应用
  3529. U.MD.D.click(this, obj);
  3530. }, [_futianTeacherDeskIconInfo[i]])
  3531. }, _frag); //
  3532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3535. }
  3536. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3537. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3538. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3539. continue
  3540. }
  3541. _content = $$("div", {
  3542. className: "U_MD_D_KO",
  3543. "onmousedown": U.UF.C.closure(function (obj) {
  3544. //防止拖动图标即打开了桌面应用
  3545. U.MD.D.click(this, obj);
  3546. }, [_MingdeTeacherDeskIcon[i]]),
  3547. "onclick": U.UF.C.closure(function (obj) {
  3548. //防止拖动图标即打开了桌面应用
  3549. U.MD.D.click(this, obj);
  3550. }, [_MingdeTeacherDeskIcon[i]])
  3551. }, _frag); //
  3552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3555. }
  3556. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3557. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3558. _content = $$("div", {
  3559. className: "U_MD_D_KO",
  3560. "onmousedown": U.UF.C.closure(function (obj) {
  3561. //防止拖动图标即打开了桌面应用
  3562. U.MD.D.click(this, obj);
  3563. }, [_lhsAdminDesktopIconInfo[i]]),
  3564. "onclick": U.UF.C.closure(function (obj) {
  3565. //防止拖动图标即打开了桌面应用
  3566. U.MD.D.click(this, obj);
  3567. }, [_lhsAdminDesktopIconInfo[i]])
  3568. }, _frag); //
  3569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3572. }
  3573. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3574. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3575. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3576. continue
  3577. }
  3578. _content = $$("div", {
  3579. className: "U_MD_D_KO",
  3580. "onmousedown": U.UF.C.closure(function (obj) {
  3581. //防止拖动图标即打开了桌面应用
  3582. U.MD.D.click(this, obj);
  3583. }, [_lhsteacherDesktopIconInfo[i]]),
  3584. "onclick": U.UF.C.closure(function (obj) {
  3585. //防止拖动图标即打开了桌面应用
  3586. U.MD.D.click(this, obj);
  3587. }, [_lhsteacherDesktopIconInfo[i]])
  3588. }, _frag); //
  3589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3592. }
  3593. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3594. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3595. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3596. continue
  3597. }
  3598. _content = $$("div", {
  3599. className: "U_MD_D_KO",
  3600. "onmousedown": U.UF.C.closure(function (obj) {
  3601. //防止拖动图标即打开了桌面应用
  3602. U.MD.D.click(this, obj);
  3603. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3604. "onclick": U.UF.C.closure(function (obj) {
  3605. //防止拖动图标即打开了桌面应用
  3606. U.MD.D.click(this, obj);
  3607. }, [_zhoujiateacherDesktopIconInfo[i]])
  3608. }, _frag); //
  3609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3612. }
  3613. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3614. for (i = 0; i < _hanDeskIcon.length; i++) {
  3615. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3616. continue
  3617. }
  3618. _content = $$("div", {
  3619. className: "U_MD_D_KO",
  3620. "onmousedown": U.UF.C.closure(function (obj) {
  3621. //防止拖动图标即打开了桌面应用
  3622. U.MD.D.click(this, obj);
  3623. }, [_hanDeskIcon[i]]),
  3624. "onclick": U.UF.C.closure(function (obj) {
  3625. //防止拖动图标即打开了桌面应用
  3626. U.MD.D.click(this, obj);
  3627. }, [_hanDeskIcon[i]])
  3628. }, _frag); //
  3629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3632. }
  3633. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3634. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3635. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3636. continue
  3637. }
  3638. _content = $$("div", {
  3639. className: "U_MD_D_KO",
  3640. "onmousedown": U.UF.C.closure(function (obj) {
  3641. //防止拖动图标即打开了桌面应用
  3642. U.MD.D.click(this, obj);
  3643. }, [_orgStemDeskIcon[i]]),
  3644. "onclick": U.UF.C.closure(function (obj) {
  3645. //防止拖动图标即打开了桌面应用
  3646. U.MD.D.click(this, obj);
  3647. }, [_orgStemDeskIcon[i]])
  3648. }, _frag); //
  3649. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3650. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3651. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3652. }
  3653. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3654. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3655. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3656. continue
  3657. }
  3658. _content = $$("div", {
  3659. className: "U_MD_D_KO",
  3660. "onmousedown": U.UF.C.closure(function (obj) {
  3661. //防止拖动图标即打开了桌面应用
  3662. U.MD.D.click(this, obj);
  3663. }, [_szulsDeskIcon[i]]),
  3664. "onclick": U.UF.C.closure(function (obj) {
  3665. //防止拖动图标即打开了桌面应用
  3666. U.MD.D.click(this, obj);
  3667. }, [_szulsDeskIcon[i]])
  3668. }, _frag); //
  3669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3672. }
  3673. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3674. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3675. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3676. continue
  3677. }
  3678. _content = $$("div", {
  3679. className: "U_MD_D_KO",
  3680. "onmousedown": U.UF.C.closure(function (obj) {
  3681. //防止拖动图标即打开了桌面应用
  3682. U.MD.D.click(this, obj);
  3683. }, [_orgDesktopIconInfo[i]]),
  3684. "onclick": U.UF.C.closure(function (obj) {
  3685. //防止拖动图标即打开了桌面应用
  3686. U.MD.D.click(this, obj);
  3687. }, [_orgDesktopIconInfo[i]])
  3688. }, _frag); //
  3689. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3690. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3691. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3692. }
  3693. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3694. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3695. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3696. continue
  3697. }
  3698. _content = $$("div", {
  3699. className: "U_MD_D_KO",
  3700. "onmousedown": U.UF.C.closure(function (obj) {
  3701. //防止拖动图标即打开了桌面应用
  3702. U.MD.D.click(this, obj);
  3703. }, [_schoolDesktopIconInfo[i]]),
  3704. "onclick": U.UF.C.closure(function (obj) {
  3705. //防止拖动图标即打开了桌面应用
  3706. U.MD.D.click(this, obj);
  3707. }, [_schoolDesktopIconInfo[i]])
  3708. }, _frag); //
  3709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3712. }
  3713. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3714. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3715. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3716. continue
  3717. }
  3718. _content = $$("div", {
  3719. className: "U_MD_D_KO",
  3720. "onmousedown": U.UF.C.closure(function (obj) {
  3721. //防止拖动图标即打开了桌面应用
  3722. U.MD.D.click(this, obj);
  3723. }, [_GMteacherDesktopIconInfo[i]]),
  3724. "onclick": U.UF.C.closure(function (obj) {
  3725. //防止拖动图标即打开了桌面应用
  3726. U.MD.D.click(this, obj);
  3727. }, [_GMteacherDesktopIconInfo[i]])
  3728. }, _frag); //
  3729. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3730. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3731. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3732. }
  3733. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3734. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3735. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3736. continue
  3737. }
  3738. _content = $$("div", {
  3739. className: "U_MD_D_KO",
  3740. "onmousedown": U.UF.C.closure(function (obj) {
  3741. //防止拖动图标即打开了桌面应用
  3742. U.MD.D.click(this, obj);
  3743. }, [_SONGteacherDesktopIconInfo[i]]),
  3744. "onclick": U.UF.C.closure(function (obj) {
  3745. //防止拖动图标即打开了桌面应用
  3746. U.MD.D.click(this, obj);
  3747. }, [_SONGteacherDesktopIconInfo[i]])
  3748. }, _frag); //
  3749. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3750. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3751. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3752. }
  3753. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3754. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3755. _content = $$("div", {
  3756. className: "U_MD_D_KO",
  3757. "onmousedown": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_GMstudentDesktopIconInfo[i]]),
  3761. "onclick": U.UF.C.closure(function (obj) {
  3762. //防止拖动图标即打开了桌面应用
  3763. U.MD.D.click(this, obj);
  3764. }, [_GMstudentDesktopIconInfo[i]])
  3765. }, _frag); //
  3766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3769. }
  3770. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3771. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3772. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3773. continue
  3774. }
  3775. _content = $$("div", {
  3776. className: "U_MD_D_KO",
  3777. "onmousedown": U.UF.C.closure(function (obj) {
  3778. //防止拖动图标即打开了桌面应用
  3779. U.MD.D.click(this, obj);
  3780. }, [_tcTeacherDeskIconInfo[i]]),
  3781. "onclick": U.UF.C.closure(function (obj) {
  3782. //防止拖动图标即打开了桌面应用
  3783. U.MD.D.click(this, obj);
  3784. }, [_tcTeacherDeskIconInfo[i]])
  3785. }, _frag); //
  3786. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3787. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3788. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3789. }
  3790. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3791. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3792. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3793. continue
  3794. }
  3795. _content = $$("div", {
  3796. className: "U_MD_D_KO",
  3797. "onmousedown": U.UF.C.closure(function (obj) {
  3798. //防止拖动图标即打开了桌面应用
  3799. U.MD.D.click(this, obj);
  3800. }, [_tcOrganizerDeskIconInfo[i]]),
  3801. "onclick": U.UF.C.closure(function (obj) {
  3802. //防止拖动图标即打开了桌面应用
  3803. U.MD.D.click(this, obj);
  3804. }, [_tcOrganizerDeskIconInfo[i]])
  3805. }, _frag); //
  3806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3809. }
  3810. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3811. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3812. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3813. continue
  3814. }
  3815. _content = $$("div", {
  3816. className: "U_MD_D_KO",
  3817. "onmousedown": U.UF.C.closure(function (obj) {
  3818. //防止拖动图标即打开了桌面应用
  3819. U.MD.D.click(this, obj);
  3820. }, [_szscTeacherDeskIconInfo[i]]),
  3821. "onclick": U.UF.C.closure(function (obj) {
  3822. //防止拖动图标即打开了桌面应用
  3823. U.MD.D.click(this, obj);
  3824. }, [_szscTeacherDeskIconInfo[i]])
  3825. }, _frag); //
  3826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3829. }
  3830. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3831. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3832. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3833. continue
  3834. }
  3835. _content = $$("div", {
  3836. className: "U_MD_D_KO",
  3837. "onmousedown": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_szscOrganizerDeskIconInfo[i]]),
  3841. "onclick": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_szscOrganizerDeskIconInfo[i]])
  3845. }, _frag); //
  3846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3849. }
  3850. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3851. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3852. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3853. continue
  3854. }
  3855. _content = $$("div", {
  3856. className: "U_MD_D_KO",
  3857. "onmousedown": U.UF.C.closure(function (obj) {
  3858. //防止拖动图标即打开了桌面应用
  3859. U.MD.D.click(this, obj);
  3860. }, [_nsfxTeacherDeskIconInfo[i]]),
  3861. "onclick": U.UF.C.closure(function (obj) {
  3862. //防止拖动图标即打开了桌面应用
  3863. U.MD.D.click(this, obj);
  3864. }, [_nsfxTeacherDeskIconInfo[i]])
  3865. }, _frag); //
  3866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3869. }
  3870. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3871. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3872. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3873. continue
  3874. }
  3875. _content = $$("div", {
  3876. className: "U_MD_D_KO",
  3877. "onmousedown": U.UF.C.closure(function (obj) {
  3878. //防止拖动图标即打开了桌面应用
  3879. U.MD.D.click(this, obj);
  3880. }, [_stiaTeacherDeskIconInfo[i]]),
  3881. "onclick": U.UF.C.closure(function (obj) {
  3882. //防止拖动图标即打开了桌面应用
  3883. U.MD.D.click(this, obj);
  3884. }, [_stiaTeacherDeskIconInfo[i]])
  3885. }, _frag); //
  3886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3889. }
  3890. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3891. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3892. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3893. continue
  3894. }
  3895. _content = $$("div", {
  3896. className: "U_MD_D_KO",
  3897. "onmousedown": U.UF.C.closure(function (obj) {
  3898. //防止拖动图标即打开了桌面应用
  3899. U.MD.D.click(this, obj);
  3900. }, [_szdjgTeacherDeskIconInfo[i]]),
  3901. "onclick": U.UF.C.closure(function (obj) {
  3902. //防止拖动图标即打开了桌面应用
  3903. U.MD.D.click(this, obj);
  3904. }, [_szdjgTeacherDeskIconInfo[i]])
  3905. }, _frag); //
  3906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3909. }
  3910. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3911. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3912. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3913. continue
  3914. }
  3915. _content = $$("div", {
  3916. className: "U_MD_D_KO",
  3917. "onmousedown": U.UF.C.closure(function (obj) {
  3918. //防止拖动图标即打开了桌面应用
  3919. U.MD.D.click(this, obj);
  3920. }, [_x010607TeacherDeskIconInfo[i]]),
  3921. "onclick": U.UF.C.closure(function (obj) {
  3922. //防止拖动图标即打开了桌面应用
  3923. U.MD.D.click(this, obj);
  3924. }, [_x010607TeacherDeskIconInfo[i]])
  3925. }, _frag); //
  3926. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3927. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3928. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3929. }
  3930. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3931. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3932. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3933. continue
  3934. }
  3935. _content = $$("div", {
  3936. className: "U_MD_D_KO",
  3937. "onmousedown": U.UF.C.closure(function (obj) {
  3938. //防止拖动图标即打开了桌面应用
  3939. U.MD.D.click(this, obj);
  3940. }, [_xhlyTeacherDeskIconInfo[i]]),
  3941. "onclick": U.UF.C.closure(function (obj) {
  3942. //防止拖动图标即打开了桌面应用
  3943. U.MD.D.click(this, obj);
  3944. }, [_xhlyTeacherDeskIconInfo[i]])
  3945. }, _frag); //
  3946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3949. }
  3950. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3951. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3952. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3953. continue
  3954. }
  3955. _content = $$("div", {
  3956. className: "U_MD_D_KO",
  3957. "onmousedown": U.UF.C.closure(function (obj) {
  3958. //防止拖动图标即打开了桌面应用
  3959. U.MD.D.click(this, obj);
  3960. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3961. "onclick": U.UF.C.closure(function (obj) {
  3962. //防止拖动图标即打开了桌面应用
  3963. U.MD.D.click(this, obj);
  3964. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3965. }, _frag); //
  3966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3969. }
  3970. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3971. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3972. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3973. continue
  3974. }
  3975. _content = $$("div", {
  3976. className: "U_MD_D_KO",
  3977. "onmousedown": U.UF.C.closure(function (obj) {
  3978. //防止拖动图标即打开了桌面应用
  3979. U.MD.D.click(this, obj);
  3980. }, [_x010503TeacherDeskIconInfo[i]]),
  3981. "onclick": U.UF.C.closure(function (obj) {
  3982. //防止拖动图标即打开了桌面应用
  3983. U.MD.D.click(this, obj);
  3984. }, [_x010503TeacherDeskIconInfo[i]])
  3985. }, _frag); //
  3986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3989. }
  3990. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3991. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3992. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3993. continue
  3994. }
  3995. _content = $$("div", {
  3996. className: "U_MD_D_KO",
  3997. "onmousedown": U.UF.C.closure(function (obj) {
  3998. //防止拖动图标即打开了桌面应用
  3999. U.MD.D.click(this, obj);
  4000. }, [_x010504TeacherDeskIconInfo[i]]),
  4001. "onclick": U.UF.C.closure(function (obj) {
  4002. //防止拖动图标即打开了桌面应用
  4003. U.MD.D.click(this, obj);
  4004. }, [_x010504TeacherDeskIconInfo[i]])
  4005. }, _frag); //
  4006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4009. }
  4010. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4011. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4012. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4013. continue
  4014. }
  4015. _content = $$("div", {
  4016. className: "U_MD_D_KO",
  4017. "onmousedown": U.UF.C.closure(function (obj) {
  4018. //防止拖动图标即打开了桌面应用
  4019. U.MD.D.click(this, obj);
  4020. }, [_x010204TeacherDeskIconInfo[i]]),
  4021. "onclick": U.UF.C.closure(function (obj) {
  4022. //防止拖动图标即打开了桌面应用
  4023. U.MD.D.click(this, obj);
  4024. }, [_x010204TeacherDeskIconInfo[i]])
  4025. }, _frag); //
  4026. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4027. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4028. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4029. }
  4030. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4031. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4032. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4033. continue
  4034. }
  4035. _content = $$("div", {
  4036. className: "U_MD_D_KO",
  4037. "onmousedown": U.UF.C.closure(function (obj) {
  4038. //防止拖动图标即打开了桌面应用
  4039. U.MD.D.click(this, obj);
  4040. }, [_trailTeacherDeskIconInfo[i]]),
  4041. "onclick": U.UF.C.closure(function (obj) {
  4042. //防止拖动图标即打开了桌面应用
  4043. U.MD.D.click(this, obj);
  4044. }, [_trailTeacherDeskIconInfo[i]])
  4045. }, _frag); //
  4046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4049. }
  4050. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4051. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4052. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4053. continue
  4054. }
  4055. _content = $$("div", {
  4056. className: "U_MD_D_KO",
  4057. "onmousedown": U.UF.C.closure(function (obj) {
  4058. //防止拖动图标即打开了桌面应用
  4059. U.MD.D.click(this, obj);
  4060. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4061. "onclick": U.UF.C.closure(function (obj) {
  4062. //防止拖动图标即打开了桌面应用
  4063. U.MD.D.click(this, obj);
  4064. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4065. }, _frag); //
  4066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4069. }
  4070. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4071. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4072. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4073. continue
  4074. }
  4075. _content = $$("div", {
  4076. className: "U_MD_D_KO",
  4077. "onmousedown": U.UF.C.closure(function (obj) {
  4078. //防止拖动图标即打开了桌面应用
  4079. U.MD.D.click(this, obj);
  4080. }, [_x010608TeacherDeskIconInfo[i]]),
  4081. "onclick": U.UF.C.closure(function (obj) {
  4082. //防止拖动图标即打开了桌面应用
  4083. U.MD.D.click(this, obj);
  4084. }, [_x010608TeacherDeskIconInfo[i]])
  4085. }, _frag); //
  4086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4089. }
  4090. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4091. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4092. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4093. continue
  4094. }
  4095. _content = $$("div", {
  4096. className: "U_MD_D_KO",
  4097. "onmousedown": U.UF.C.closure(function (obj) {
  4098. //防止拖动图标即打开了桌面应用
  4099. U.MD.D.click(this, obj);
  4100. }, [_x010611TeacherDeskIconInfo[i]]),
  4101. "onclick": U.UF.C.closure(function (obj) {
  4102. //防止拖动图标即打开了桌面应用
  4103. U.MD.D.click(this, obj);
  4104. }, [_x010611TeacherDeskIconInfo[i]])
  4105. }, _frag); //
  4106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4109. }
  4110. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4111. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4112. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4113. continue
  4114. }
  4115. _content = $$("div", {
  4116. className: "U_MD_D_KO",
  4117. "onmousedown": U.UF.C.closure(function (obj) {
  4118. //防止拖动图标即打开了桌面应用
  4119. U.MD.D.click(this, obj);
  4120. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4121. "onclick": U.UF.C.closure(function (obj) {
  4122. //防止拖动图标即打开了桌面应用
  4123. U.MD.D.click(this, obj);
  4124. }, [_tianyuanTeacherDeskIconInfo[i]])
  4125. }, _frag); //
  4126. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4127. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4128. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4129. }
  4130. } else {
  4131. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4132. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4133. continue
  4134. }
  4135. _content = $$("div", {
  4136. className: "U_MD_D_KO",
  4137. "onmousedown": U.UF.C.closure(function (obj) {
  4138. //防止拖动图标即打开了桌面应用
  4139. U.MD.D.click(this, obj);
  4140. }, [_teacherDesktopIconInfo[i]]),
  4141. "onclick": U.UF.C.closure(function (obj) {
  4142. //防止拖动图标即打开了桌面应用
  4143. U.MD.D.click(this, obj);
  4144. }, [_teacherDesktopIconInfo[i]])
  4145. }, _frag); //
  4146. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4147. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4148. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4149. }
  4150. }
  4151. } else {
  4152. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4153. _content = $$("div", {
  4154. className: "U_MD_D_KO",
  4155. style: { 'width': '124px', 'height': '145px' },
  4156. "onmousedown": U.UF.C.closure(function (obj) {
  4157. //防止拖动图标即打开了桌面应用
  4158. U.MD.D.click(this, obj);
  4159. }, [_easyDesktopIconInfo[i]]),
  4160. "onclick": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_easyDesktopIconInfo[i]])
  4164. }, _frag); //
  4165. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4168. }
  4169. }
  4170. if (type == 1) {
  4171. //加载好后给图标定位
  4172. U.MD.D.iconPostion($(_frag).Child());
  4173. } else {
  4174. //加载好后给图标定位
  4175. U.MD.D.iconPostion2($(_frag).Child());
  4176. }
  4177. //把图标加载到页面
  4178. el.appendChild(_frag);
  4179. }
  4180. /**
  4181. * 显示任务栏
  4182. *
  4183. * @param {element} 桌面元素
  4184. */
  4185. U.MD.D.I.displayTaskbar = function (el) {
  4186. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4187. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4188. //任务栏位置变化
  4189. U.selectEl(el).css({ "bottom": "0px" });
  4190. //桌面位置变话
  4191. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4192. }
  4193. }
  4194. //#region 桌面图标拖动逻辑
  4195. /**
  4196. * 桌面排列图标
  4197. *
  4198. * @param {element} 桌面元素
  4199. * @param {object} 上下相距的距离
  4200. * @param {object} 左右相距的距离
  4201. * @return {object} 命名空间
  4202. */
  4203. U.MD.D.iconPostion = function (childs, top, left) {
  4204. var i; //用于循环处理
  4205. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4206. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4207. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4208. for (i = 0; i < childs.length; i++) {
  4209. //如果竖排top超过了范围处理
  4210. if (top + 95 > US.height - 10) {
  4211. //left超过了页面范围处理,则向上重叠打印处理
  4212. if ((left + 180) > US.width) {
  4213. top -= 110;
  4214. left -= 90;
  4215. }
  4216. //没有超过范围,那么left+90添加到下一个竖排打印
  4217. else {
  4218. left += 90;
  4219. top = 15;
  4220. };
  4221. }
  4222. //给图标的位置赋值
  4223. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4224. if (i < childs.length - 1) {
  4225. //页面图标每次向下加95
  4226. top += 95;
  4227. }
  4228. }
  4229. //返回最后调用的图标的位置
  4230. return [top, left];
  4231. }
  4232. /**
  4233. * 桌面排列图标
  4234. *
  4235. * @param {element} 桌面元素
  4236. * @param {object} 上下相距的距离
  4237. * @param {object} 左右相距的距离
  4238. * @return {object} 命名空间
  4239. */
  4240. U.MD.D.iconPostion2 = function (childs, top, left) {
  4241. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4242. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4243. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4244. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4245. for (i = 0; i < childs.length; i++) {
  4246. //如果竖排top超过了范围处理
  4247. if (left + 150 > US.width - 10) {
  4248. //left超过了页面范围处理,则向上重叠打印处理
  4249. if ((top + 180) > US.Height) {
  4250. top -= 150;
  4251. left -= 150;
  4252. }
  4253. //没有超过范围,那么left+90添加到下一个竖排打印
  4254. else {
  4255. top += 150;
  4256. left = ol;
  4257. };
  4258. }
  4259. //给图标的位置赋值
  4260. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4261. if (i < childs.length - 1) {
  4262. //页面图标每次向下加95
  4263. left += 150;
  4264. }
  4265. }
  4266. //返回最后调用的图标的位置
  4267. return [top, left];
  4268. }
  4269. /**
  4270. * 桌面点击事件逻辑
  4271. *
  4272. * @param {element} 桌面元素
  4273. * @param {object} 上下相距的距离
  4274. * @param {object} 左右相距的距离
  4275. * @return {object} 命名空间
  4276. */
  4277. U.MD.D.click = function (el, obj) {
  4278. var _buttonnumber = event.button; //点击的按钮的事件值
  4279. var _userinfo = US.userInfo;
  4280. U.UF.EV.stopBubble(); //阻止向上冒泡
  4281. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4282. if (_buttonnumber < 2) {
  4283. //如果是click事件的处理
  4284. if (event.type == "click") {
  4285. //如果元素在mousemove事件中没有移动则出发click事件
  4286. if (!U.MD.D.I.IsDrag) {
  4287. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4288. U.alert("请先登录您的账号!");
  4289. setTimeout(() => {
  4290. U.MD.U.L.login();
  4291. }, 2000);
  4292. } else {
  4293. //打开应用处理
  4294. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4295. }
  4296. }
  4297. }
  4298. //如果是mouse事件的处理
  4299. else {
  4300. if (US.Config.type == '1') {
  4301. //拖动处理,添加拖动和拖动结束事件
  4302. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4303. }
  4304. }
  4305. U.MD.D.I.IsDrag = false;
  4306. }
  4307. }
  4308. /**
  4309. * 拖动的处理
  4310. *
  4311. */
  4312. U.MD.D.iconMove = function () {
  4313. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4314. U.MD.D.I.IsDrag = true;
  4315. }
  4316. /**
  4317. * 拖动结束后,这里是定位处理,以网状的形式定位
  4318. *
  4319. * @param {element} 拖动的元素
  4320. * @return {object} 命名空间
  4321. */
  4322. U.MD.D.iconUp = function (el) {
  4323. var _top = 15,
  4324. _left = 20,
  4325. _margin,
  4326. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4327. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4328. if (_positioninfo["OT"] > 15) {
  4329. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4330. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4331. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4332. }
  4333. if (_positioninfo["OL"] > 20) {
  4334. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4335. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4336. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4337. }
  4338. //while循环判断么一个重叠的元素
  4339. do {
  4340. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4341. _top = _positioninfo[0] + 95; //得到定位后的top
  4342. _left = _positioninfo[1]; //得到定位后的left
  4343. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4344. }
  4345. /**
  4346. * 判断拖动后图标是否重叠
  4347. *
  4348. * @param {element} 拖动的元素
  4349. * @param {element} 桌面所有的元素
  4350. * @param {array} 拖动元素的位置
  4351. ----------[0] 上 top
  4352. ----------[1] 左 left
  4353. * @return {object} 命名空间
  4354. */
  4355. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4356. //循环所有的图标
  4357. for (var i = 0; i < childs.length; i++) {
  4358. //判断有没有和该图标诶子重叠的元素
  4359. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4360. return childs[i]; //如果有返回
  4361. }
  4362. }
  4363. }
  4364. //#endregion
  4365. //#endregion
  4366. //#region 桌面应用
  4367. /**
  4368. * 打开应用
  4369. *
  4370. * @param {string} 类型
  4371. -----------------Disk 网盘系统
  4372. -----------------PDisk 学习系统网盘
  4373. -----------------Poto 图片
  4374. -----------------Video 视频
  4375. -----------------Music 音乐
  4376. -----------------Word word
  4377. -----------------Excel excel
  4378. -----------------Txt 记事本
  4379. -----------------PB 学习系统
  4380. -----------------Blog 朋友圈系统
  4381. -----------------FTP ftp系统
  4382. -----------------Group 好友群
  4383. -----------------SY 首页系统
  4384. -----------------Set 个人设置
  4385. -----------------XSet 系统设置
  4386. -----------------App 我们所有的app
  4387. -----------------BC c.1473.cn 平台
  4388. -----------------CWeb d.1473.cn 变成平台
  4389. -----------------其他的外联系统 我们统一用iframe打开
  4390. * @param {array} 类型
  4391. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4392. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4393. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4394. 如果第一个参数为其他,则无第二个参数
  4395. * @returns {array}
  4396. */
  4397. window.addEventListener('message', function (e) { // 监听 message 事件
  4398. // alert(e.data.type);
  4399. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4400. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4401. //3是展示全部阶段 2学生 1老师 4专家
  4402. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4403. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4404. //3是展示全部阶段 2学生 1老师 4专家
  4405. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4406. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4407. //3是展示全部阶段 2学生 1老师 4专家
  4408. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4409. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4410. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4411. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4412. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4413. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4414. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4415. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4416. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4417. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4418. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4419. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4420. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4421. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4422. //3是展示全部阶段 2学生 1老师 4专家
  4423. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4424. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4425. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4426. U.MD.D.I.selectUser();
  4427. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4428. var _formel = document.getElementById("study");
  4429. U.UF.F.windowZooming(_formel);
  4430. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4431. var _formel = document.getElementById("studyDetail");
  4432. U.UF.F.windowZooming(_formel);
  4433. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4434. var _formel = document.getElementById("studyDetail");
  4435. U.UF.F.windowZooming(_formel);
  4436. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4437. var _formel = document.getElementById("studentStudy");
  4438. U.UF.F.windowZooming(_formel);
  4439. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4440. // var _formel = document.getElementById("study");
  4441. //如果最大化了,那么就把他缩小
  4442. // if (_formel.ismaximize) {
  4443. // return;
  4444. // }
  4445. // U.UF.F.windowZooming(_formel);
  4446. // U.UF.F.topWindow(_formel);
  4447. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4448. // var _formel = document.getElementById("studyDetail");
  4449. //如果最大化了,那么就把他缩小
  4450. // if (_formel.ismaximize) {
  4451. // return;
  4452. // }
  4453. // U.UF.F.windowZooming(_formel);
  4454. // U.UF.F.topWindow(_formel);
  4455. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4456. // var _formel = document.getElementById("studentStudy");
  4457. // if (_formel.ismaximize) {
  4458. // return;
  4459. // }
  4460. // U.UF.F.windowZooming(_formel);
  4461. // U.UF.F.topWindow(_formel);
  4462. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4463. var _formel = document.getElementById("study");
  4464. // if (_formel.ismaximize) {
  4465. // return;
  4466. // }
  4467. // U.UF.F.windowZooming(_formel);
  4468. U.UF.F.topWindow(_formel);
  4469. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4470. var _formel = document.getElementById("studentIndex");
  4471. U.UF.F.windowZooming(_formel);
  4472. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4473. var _formel = document.getElementById("studyDetailS");
  4474. U.UF.F.windowZooming(_formel);
  4475. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4476. var _formel = document.getElementById("studioIndex");
  4477. U.UF.F.windowZooming(_formel);
  4478. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4479. var _formel = document.getElementById("studyDetailStudio");
  4480. U.UF.F.windowZooming(_formel);
  4481. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4482. var _formel = document.getElementById("studyDetailStudio");
  4483. U.UF.F.windowZooming(_formel);
  4484. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4485. var _formel = document.getElementById("studyDetailNT");
  4486. U.UF.F.windowZooming(_formel);
  4487. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4488. var _formel = document.getElementById("studyDetailS");
  4489. U.UF.F.windowZooming(_formel);
  4490. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4491. var _formel = document.getElementById("studyDetailS");
  4492. U.UF.F.topWindow(_formel);
  4493. } else if (e.data.tools && e.data.tools == "1") {
  4494. // U.MD.D.I.openApplication("whiteboard")
  4495. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4496. } else if (e.data.tools && e.data.tools == "2") {
  4497. U.MD.D.I.openApplication("note")
  4498. } else if (e.data.tools && e.data.tools == "3") {
  4499. // U.MD.D.I.openApplication("mind")
  4500. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4501. } else if (e.data.tools && e.data.tools == "4") {
  4502. U.MD.D.I.openApplication("investigation")
  4503. } else if (e.data.tools && e.data.tools == "6") {
  4504. // U.MD.D.I.openApplication("doc")
  4505. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4506. } else if (e.data.tools && e.data.tools == "7") {
  4507. // U.MD.D.I.openApplication("mindNetwork")
  4508. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4509. } else if (e.data.tools && e.data.tools == "8") {
  4510. U.MD.D.I.openApplication("library")
  4511. } else if (e.data.tools && e.data.tools == "17") {
  4512. U.MD.D.I.openApplication("stuLibrary")
  4513. } else if (e.data.tools && e.data.tools == "18") {
  4514. U.MD.D.I.openApplication("train")
  4515. } else if (e.data.tools && e.data.tools == "21") {
  4516. U.MD.D.I.openApplication("program")
  4517. } else if (e.data.tools && e.data.tools == "22") {
  4518. U.MD.D.I.openApplication("AIprogram2")
  4519. } else if (e.data.tools && e.data.tools == "23") {
  4520. U.MD.D.I.openApplication("Pythonprogram")
  4521. } else if (e.data.tools && e.data.tools == "24") {
  4522. U.MD.D.I.openApplication("AIprogram")
  4523. } else if (e.data.tools && e.data.tools == "25") {
  4524. U.MD.D.I.openApplication("sys")
  4525. } else if (e.data.tools && e.data.tools == "26") {
  4526. // U.MD.D.I.openApplication("courseDesign")
  4527. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4528. } else if (e.data.tools && e.data.tools == "31") {
  4529. U.MD.D.I.openApplication("netWorkPanel")
  4530. } else if (e.data.tools && e.data.tools == "32") {
  4531. U.MD.D.I.openApplication("codeEdit")
  4532. } else if (e.data.tools && e.data.tools == "57") {
  4533. U.MD.D.I.openApplication("CocoPi")
  4534. } else if (e.data.tools && e.data.tools == "63") {
  4535. U.MD.D.I.openApplication("Wood")
  4536. } else if (e.data.tools && e.data.tools == "58") {
  4537. U.MD.D.I.openApplication("car")
  4538. } else if (e.data.tools && e.data.tools == "59") {
  4539. U.MD.D.I.openApplication("lineSearch")
  4540. } else if (e.data.tools && e.data.tools == "60") {
  4541. U.MD.D.I.openApplication("deepLearning")
  4542. } else if (e.data.tools && e.data.tools == "61") {
  4543. U.MD.D.I.openApplication("allHistory")
  4544. } else if (e.data.tools && e.data.tools == "28") {
  4545. U.MD.D.I.openApplication("translation")
  4546. } else if (e.data.tools && e.data.tools == "37") {
  4547. U.MD.D.I.openApplication("mohe")
  4548. } else if (e.data.tools && e.data.tools == "38") {
  4549. U.MD.D.I.openApplication("24game")
  4550. } else if (e.data.tools && e.data.tools == "39") {
  4551. U.MD.D.I.openApplication("GeoGebra")
  4552. } else if (e.data.tools && e.data.tools == "43") {
  4553. U.MD.D.I.openApplication("studentEvaluate")
  4554. } else if (e.data.tools && e.data.tools == "44") {
  4555. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4556. } else if (e.data.tools && e.data.tools == "46") {
  4557. U.MD.D.I.openApplication("project")
  4558. } else if (e.data.tools && e.data.tools == "71") {
  4559. U.MD.D.I.openApplication("aigptCourse")
  4560. } else if (e.data.tools && e.data.tools == "1s") {
  4561. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4562. } else if (e.data.tools && e.data.tools == "3s") {
  4563. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4564. } else if (e.data.tools && e.data.tools == "6s") {
  4565. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4566. } else if (e.data.tools && e.data.tools == "1studio") {
  4567. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4568. } else if (e.data.tools && e.data.tools == "3studio") {
  4569. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4570. } else if (e.data.tools && e.data.tools == "6studio") {
  4571. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4572. } else if (e.data.tools && e.data.tools == "3y") {
  4573. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4574. } else if (e.data.tools && e.data.tools == "1y") {
  4575. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4576. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4577. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4578. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4579. U.MD.D.I.openApplication("AIAnalyse")
  4580. } else if (e.data.tools && e.data.tools == "1teacher") {
  4581. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4582. } else if (e.data.tools && e.data.tools == "3teacher") {
  4583. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4584. } else if (e.data.tools && e.data.tools == "7teacher") {
  4585. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4586. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4587. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4588. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4589. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4590. } else if (e.data.tools && e.data.tools == "1E") {
  4591. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4592. } else if (e.data.tools && e.data.tools == "3E") {
  4593. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4594. } else if (e.data.tools && e.data.tools == "57y") {
  4595. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4596. } else if (e.data.tools && e.data.tools == "57u") {
  4597. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4598. } else if (e.data.tools && e.data.tools == "57teacher") {
  4599. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4600. } else if (e.data.tools && e.data.tools == "64") {
  4601. U.MD.D.I.openApplication("AIChat")
  4602. } else if (e.data.tools && e.data.tools == "66") {
  4603. U.MD.D.I.openApplication("formulaEdi")
  4604. } else if (e.data.tools && e.data.tools == "67") {
  4605. U.MD.D.I.openApplication("molStr")
  4606. } else if (e.data.tools && e.data.tools == "68") {
  4607. U.MD.D.I.openApplication("timeAxis")
  4608. } else if (e.data.tools && e.data.tools == "openCourse") {
  4609. let _data = {
  4610. typea: e.data.typea || '',
  4611. typeb: e.data.typeb || '',
  4612. typed: e.data.typed || '',
  4613. }
  4614. U.MD.D.I.openInApplication("index", _data)
  4615. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4616. let _data = {
  4617. classid: e.data.classid || '',
  4618. }
  4619. U.MD.D.I.openInApplication("dataClass", _data)
  4620. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4621. let _data = {
  4622. cid: e.data.cid || '',
  4623. gid: e.data.gid || '',
  4624. }
  4625. U.MD.D.I.openInApplication("opencCscl", _data)
  4626. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4627. U.MD.D.I.openApplication("dataBoardTest")
  4628. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4629. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4630. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4631. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4632. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4633. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4634. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4635. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4636. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4637. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4638. }else if (e.data.tools && e.data.tools == "loginSz") {
  4639. U.MD.D.I.openInApplication("loginSz")
  4640. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4641. if($('#classroom_observation_board')[0]){
  4642. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4643. }
  4644. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4645. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4646. if($('#classroom_observation_ob_comment')[0]){
  4647. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4648. }
  4649. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4650. }
  4651. });
  4652. U.MD.D.I.selectUser = function () {
  4653. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4654. if (res.value[0].length > 0) {
  4655. US.userInfo = res.value[0][0];
  4656. $(".userName")[0].innerHTML = US.userInfo.username;
  4657. }
  4658. }, [], { "type": "GET", "withCredentials": true });
  4659. }
  4660. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4661. var _userinfo = US.userInfo, //登录用户信息
  4662. _userid = US.userInfo.userid, //登录用户id
  4663. _oid = _userinfo.organizeid,
  4664. _type = US.userInfo.type,
  4665. _org = US.userInfo.org,
  4666. _role = US.userInfo.role,
  4667. _classId = US.userInfo.classid;
  4668. if (_type == 4) {
  4669. tType = 4
  4670. }
  4671. switch (str) {
  4672. case "studyDetailNT": //无终端模式
  4673. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4674. setTimeout(() => {
  4675. U.MD.U.L.login();
  4676. }, 2000);
  4677. } else {
  4678. _formdiv = new U.UF.UI.form(
  4679. "课程详情",
  4680. $$("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 }), {
  4681. "id": "studyDetailNT",
  4682. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4683. "onresize": function () { }
  4684. }, {
  4685. closecallback: function () { }
  4686. }, { "style": { "height": "36px" } }).form; //创建窗体
  4687. _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); } }
  4688. break;
  4689. }
  4690. case "studyDetail":
  4691. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4692. setTimeout(() => {
  4693. U.MD.U.L.login();
  4694. }, 2000);
  4695. } else {
  4696. _formdiv = new U.UF.UI.form(
  4697. "课程详情",
  4698. $$("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 }), {
  4699. "id": "studyDetail",
  4700. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4701. "onresize": function () { }
  4702. }, {
  4703. closecallback: function () { }
  4704. }, { "style": { "height": "36px" } }).form; //创建窗体
  4705. _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); } }
  4706. break;
  4707. }
  4708. case "studyDetailTrain":
  4709. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4710. setTimeout(() => {
  4711. U.MD.U.L.login();
  4712. }, 2000);
  4713. } else {
  4714. _formdiv = new U.UF.UI.form(
  4715. "培训详情",
  4716. $$("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 }), {
  4717. "id": "studyDetailTrain",
  4718. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4719. "onresize": function () { }
  4720. }, {
  4721. closecallback: function () { }
  4722. }, { "style": { "height": "36px" } }).form; //创建窗体
  4723. _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); } }
  4724. break;
  4725. }
  4726. case "studyDetailS":
  4727. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4728. setTimeout(() => {
  4729. U.MD.U.L.login();
  4730. }, 2000);
  4731. } else {
  4732. _formdiv = new U.UF.UI.form(
  4733. "项目详情",
  4734. $$("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 }), {
  4735. "id": "studyDetailS",
  4736. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4737. "onresize": function () { }
  4738. }, {
  4739. closecallback: function () { }
  4740. }, { "style": { "height": "36px" } }).form; //创建窗体
  4741. _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); } }
  4742. break;
  4743. }
  4744. case "studyDetailStudio":
  4745. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4746. setTimeout(() => {
  4747. U.MD.U.L.login();
  4748. }, 2000);
  4749. } else {
  4750. _formdiv = new U.UF.UI.form(
  4751. "工作详情",
  4752. $$("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 }), {
  4753. "id": "studyDetailStudio",
  4754. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4755. "onresize": function () { }
  4756. }, {
  4757. closecallback: function () { }
  4758. }, { "style": { "height": "36px" } }).form; //创建窗体
  4759. _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); } }
  4760. break;
  4761. }
  4762. case "studyDetailS5":
  4763. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4764. setTimeout(() => {
  4765. U.MD.U.L.login();
  4766. }, 2000);
  4767. } else {
  4768. _formdiv = new U.UF.UI.form(
  4769. "项目详情",
  4770. $$("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 }), {
  4771. "id": "studyDetailS",
  4772. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4773. "onresize": function () { }
  4774. }, {
  4775. closecallback: function () { }
  4776. }, { "style": { "height": "36px" } }).form; //创建窗体
  4777. _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); } }
  4778. break;
  4779. }
  4780. case "studyDetailGM":
  4781. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4782. setTimeout(() => {
  4783. U.MD.U.L.login();
  4784. }, 2000);
  4785. } else {
  4786. _formdiv = new U.UF.UI.form(
  4787. "课程详情",
  4788. $$("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 }), {
  4789. "id": "studyDetail",
  4790. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4791. "onresize": function () { }
  4792. }, {
  4793. closecallback: function () { }
  4794. }, { "style": { "height": "36px" } }).form; //创建窗体
  4795. _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); } }
  4796. break;
  4797. }
  4798. case "hanUrl":
  4799. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4800. setTimeout(() => {
  4801. U.MD.U.L.login();
  4802. }, 2000);
  4803. } else {
  4804. _formdiv = new U.UF.UI.form(
  4805. "汉字宫",
  4806. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  4807. "id": "hanUrl",
  4808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4809. "onresize": function () { }
  4810. }, {
  4811. closecallback: function () { }
  4812. }, { "style": { "height": "36px" } }).form; //创建窗体
  4813. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4814. break;
  4815. }
  4816. case "index":
  4817. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4818. setTimeout(() => {
  4819. U.MD.U.L.login();
  4820. }, 2000);
  4821. } else {
  4822. _formdiv = new U.UF.UI.form(
  4823. "课程中心",
  4824. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  4825. "id": "study",
  4826. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4827. "onresize": function () { }
  4828. }, {
  4829. closecallback: function () { }
  4830. }, { "style": { "height": "36px" } }).form; //创建窗体
  4831. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4832. break;
  4833. }
  4834. case "dataClass":
  4835. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4836. setTimeout(() => {
  4837. U.MD.U.L.login();
  4838. }, 2000);
  4839. } else {
  4840. _formdiv = new U.UF.UI.form(
  4841. "数据报告",
  4842. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  4843. "id": "dataClass",
  4844. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4845. "onresize": function () { }
  4846. }, {
  4847. closecallback: function () { }
  4848. }, { "style": { "height": "36px" } }).form; //创建窗体
  4849. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4850. break;
  4851. }
  4852. case "opencCscl":
  4853. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4854. setTimeout(() => {
  4855. U.MD.U.L.login();
  4856. }, 2000);
  4857. } else {
  4858. _formdiv = new U.UF.UI.form(
  4859. "协同建构",
  4860. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4861. "id": "futureClass",
  4862. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4863. "onresize": function () { }
  4864. }, {
  4865. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4866. }, { "style": { "height": "36px" } }).form; //创建窗体
  4867. _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); } }
  4868. break;
  4869. }
  4870. case "openCourseUpdate":
  4871. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4872. setTimeout(() => {
  4873. U.MD.U.L.login();
  4874. }, 2000);
  4875. } else {
  4876. _formdiv = new U.UF.UI.form(
  4877. "课程管理",
  4878. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4879. "id": "openCourseUpdate",
  4880. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4881. "onresize": function () { }
  4882. }, {
  4883. closecallback: function () { }
  4884. }, { "style": { "height": "36px" } }).form; //创建窗体
  4885. break;
  4886. }
  4887. case "openNewCourseUpdate":
  4888. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4889. setTimeout(() => {
  4890. U.MD.U.L.login();
  4891. }, 2000);
  4892. } else {
  4893. _formdiv = new U.UF.UI.form(
  4894. "课程管理",
  4895. $$("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 }), {
  4896. "id": "openCourseUpdate",
  4897. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4898. "onresize": function () { }
  4899. }, {
  4900. closecallback: function () { }
  4901. }, { "style": { "height": "36px" } }).form; //创建窗体
  4902. break;
  4903. }
  4904. case "openCourseEUpdate":
  4905. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4906. setTimeout(() => {
  4907. U.MD.U.L.login();
  4908. }, 2000);
  4909. } else {
  4910. _formdiv = new U.UF.UI.form(
  4911. "课程管理",
  4912. $$("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 }), {
  4913. "id": "openCourseUpdate",
  4914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4915. "onresize": function () { }
  4916. }, {
  4917. closecallback: function () { }
  4918. }, { "style": { "height": "36px" } }).form; //创建窗体
  4919. break;
  4920. }
  4921. case "openCourseAiUpdate":
  4922. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4923. setTimeout(() => {
  4924. U.MD.U.L.login();
  4925. }, 2000);
  4926. } else {
  4927. _formdiv = new U.UF.UI.form(
  4928. "课程管理",
  4929. $$("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 }), {
  4930. "id": "openCourseUpdate",
  4931. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4932. "onresize": function () { }
  4933. }, {
  4934. closecallback: function () { }
  4935. }, { "style": { "height": "36px" } }).form; //创建窗体
  4936. break;
  4937. }
  4938. case "openCourseNewUpdate":
  4939. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4940. setTimeout(() => {
  4941. U.MD.U.L.login();
  4942. }, 2000);
  4943. } else {
  4944. _formdiv = new U.UF.UI.form(
  4945. "课程管理",
  4946. $$("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 }), {
  4947. "id": "openCourseUpdate",
  4948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4949. "onresize": function () { }
  4950. }, {
  4951. closecallback: function () { }
  4952. }, { "style": { "height": "36px" } }).form; //创建窗体
  4953. break;
  4954. }
  4955. case "inviteLoginSz":
  4956. _formdiv = new U.UF.UI.form(
  4957. "随机码登录",
  4958. $$("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 }), {
  4959. "id": "loginSz",
  4960. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4961. "onresize": function () { }
  4962. }, {
  4963. closecallback: function () { }
  4964. }, { "style": { "height": "36px" } }).form; //创建窗体
  4965. break;
  4966. case "loginSz":
  4967. _formdiv = new U.UF.UI.form(
  4968. "教师登录",
  4969. $$("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" }), {
  4970. "id": "loginSz",
  4971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4972. "onresize": function () { }
  4973. }, {
  4974. closecallback: function () { }
  4975. }, { "style": { "height": "36px" } }).form; //创建窗体
  4976. break;
  4977. case "teacher":
  4978. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4979. setTimeout(() => {
  4980. U.MD.U.L.login();
  4981. }, 2000);
  4982. } else {
  4983. _formdiv = new U.UF.UI.form(
  4984. "教师管理",
  4985. $$("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 }), {
  4986. "id": "teacher",
  4987. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4988. "onresize": function () { }
  4989. }, {
  4990. closecallback: function () { }
  4991. }, { "style": { "height": "36px" } }).form; //创建窗体
  4992. break;
  4993. }
  4994. case "dataBoardSZArea":
  4995. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4996. setTimeout(() => {
  4997. U.MD.U.L.login();
  4998. }, 2000);
  4999. } else {
  5000. _formdiv = new U.UF.UI.form(
  5001. "综合数据看板",
  5002. $$("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 }), {
  5003. "id": "dataBoardSZArea",
  5004. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5005. "onresize": function () { }
  5006. }, {
  5007. closecallback: function () { }
  5008. }, { "style": { "height": "36px" } }).form; //创建窗体
  5009. break;
  5010. }
  5011. case "dataBoardSZCity":
  5012. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5013. setTimeout(() => {
  5014. U.MD.U.L.login();
  5015. }, 2000);
  5016. } else {
  5017. _formdiv = new U.UF.UI.form(
  5018. "综合数据看板",
  5019. $$("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 }), {
  5020. "id": "dataBoardSZCity",
  5021. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5022. "onresize": function () { }
  5023. }, {
  5024. closecallback: function () { }
  5025. }, { "style": { "height": "36px" } }).form; //创建窗体
  5026. break;
  5027. }
  5028. case "classroom_observation_board":
  5029. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5030. setTimeout(() => {
  5031. U.MD.U.L.login();
  5032. }, 2000);
  5033. } else {
  5034. _formdiv = new U.UF.UI.form(
  5035. "课堂观察",
  5036. $$("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 }), {
  5037. "id": "classroom_observation_board",
  5038. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5039. "onresize": function () { }
  5040. }, {
  5041. closecallback: function () { }
  5042. }, { "style": { "height": "36px" } }).form; //创建窗体
  5043. break;
  5044. }
  5045. case "classroom_observation_ob_comment":
  5046. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5047. setTimeout(() => {
  5048. U.MD.U.L.login();
  5049. }, 2000);
  5050. } else {
  5051. _formdiv = new U.UF.UI.form(
  5052. "课堂审核",
  5053. $$("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 }), {
  5054. "id": "classroom_observation_ob_comment",
  5055. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5056. "onresize": function () { }
  5057. }, {
  5058. closecallback: function () { }
  5059. }, { "style": { "height": "36px" } }).form; //创建窗体
  5060. break;
  5061. }
  5062. }
  5063. }
  5064. U.MD.D.I.openApplication = function (str, obj, info) {
  5065. obj = obj || {};
  5066. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5067. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5068. _userinfo = US.userInfo, //登录用户信息
  5069. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5070. _oid = obj.organizeid || _userinfo.organizeid,
  5071. _type = US.userInfo.type,
  5072. _org = US.userInfo.org,
  5073. _role = US.userInfo.role,
  5074. _classId = US.userInfo.classid,
  5075. _TscreenType = 1
  5076. _screenType = 2,
  5077. _SscreenType = 3;
  5078. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5079. return;
  5080. }
  5081. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5082. switch (str) {
  5083. case "studnetProject": //好友打开
  5084. _formdiv = new U.UF.UI.form(
  5085. "我的项目",
  5086. $$("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 }), {
  5087. "id": "studnetProject",
  5088. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5089. "onresize": function () { }
  5090. }, {
  5091. closecallback: function () { }
  5092. }, { "style": { "height": "36px" } }).form; //创建窗体
  5093. _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); } }
  5094. break;
  5095. case "studentEvaluate": //好友打开
  5096. _formdiv = new U.UF.UI.form(
  5097. "我的评价",
  5098. $$("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 }), {
  5099. "id": "studentEvaluate",
  5100. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //创建窗体
  5105. _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); } }
  5106. break;
  5107. case "my":
  5108. _formdiv = new U.UF.UI.form(
  5109. "我的资料",
  5110. $$("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 }), {
  5111. "id": "my",
  5112. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. _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); } }
  5118. break;
  5119. case "program":
  5120. _formdiv = new U.UF.UI.form(
  5121. "编程平台",
  5122. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5123. "id": "program",
  5124. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //创建窗体
  5129. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5130. break;
  5131. case "library":
  5132. _formdiv = new U.UF.UI.form(
  5133. "素材库",
  5134. $$("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 }), {
  5135. "id": "library",
  5136. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5137. "onresize": function () { }
  5138. }, {
  5139. closecallback: function () { }
  5140. }, { "style": { "height": "36px" } }).form; //创建窗体
  5141. _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); } }
  5142. break;
  5143. case "whiteboard":
  5144. _formdiv = new U.UF.UI.form(
  5145. "电子白板",
  5146. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5147. "id": "whiteboard",
  5148. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5149. "onresize": function () { }
  5150. }, {
  5151. closecallback: function () { }
  5152. }, { "style": { "height": "36px" } }).form; //创建窗体
  5153. _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); } }
  5154. break;
  5155. case "investigation":
  5156. _formdiv = new U.UF.UI.form(
  5157. "问卷调查",
  5158. $$("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 }), {
  5159. "id": "investigation",
  5160. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5161. "onresize": function () { }
  5162. }, {
  5163. closecallback: function () { }
  5164. }, { "style": { "height": "36px" } }).form; //创建窗体
  5165. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5166. break;
  5167. case "note":
  5168. _formdiv = new U.UF.UI.form(
  5169. "便签分类",
  5170. $$("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 }), {
  5171. "id": "note",
  5172. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5173. "onresize": function () { }
  5174. }, {
  5175. closecallback: function () { }
  5176. }, { "style": { "height": "36px" } }).form; //创建窗体
  5177. _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); } }
  5178. break;
  5179. // case "score":
  5180. // _formdiv = new U.UF.UI.form(
  5181. // "量规评分",
  5182. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5183. // "id": "score",
  5184. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5185. // "onresize": function() {}
  5186. // }, {
  5187. // closecallback: function() {}
  5188. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5189. // _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); } }
  5190. // break;
  5191. case "mind":
  5192. _formdiv = new U.UF.UI.form(
  5193. "思维导图",
  5194. $$("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"
  5195. "id": "mind",
  5196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5197. "onresize": function () { }
  5198. }, {
  5199. closecallback: function () { }
  5200. }, { "style": { "height": "36px" } }).form; //创建窗体
  5201. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5202. break;
  5203. case "doc":
  5204. // U.MD.D.I.isRoom();
  5205. _formdiv = new U.UF.UI.form(
  5206. "协同文档",
  5207. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5208. "id": "doc",
  5209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5210. "onresize": function () { }
  5211. }, {
  5212. closecallback: function () { }
  5213. }, { "style": { "height": "36px" } }).form; //创建窗体
  5214. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5215. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5216. // })
  5217. _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); } }
  5218. break;
  5219. case "studentStudy":
  5220. _formdiv = new U.UF.UI.form(
  5221. "课程中心",
  5222. $$("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
  5223. "id": "studentStudy",
  5224. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5225. "onresize": function () { }
  5226. }, {
  5227. closecallback: function () { }
  5228. }, { "style": { "height": "36px" } }).form; //创建窗体
  5229. _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); } }
  5230. break;
  5231. case "train": //好友打开
  5232. _formdiv = new U.UF.UI.form(
  5233. "训练平台",
  5234. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5235. "id": "train",
  5236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5237. "onresize": function () { }
  5238. }, {
  5239. closecallback: function () { }
  5240. }, { "style": { "height": "36px" } }).form; //创建窗体
  5241. _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); } }
  5242. break;
  5243. case "mindNetwork": //好友打开
  5244. _formdiv = new U.UF.UI.form(
  5245. "思维网格",
  5246. $$("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 }), {
  5247. "id": "mindNetwork",
  5248. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5249. "onresize": function () { }
  5250. }, {
  5251. closecallback: function () { }
  5252. }, { "style": { "height": "36px" } }).form; //创建窗体
  5253. _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); } }
  5254. break;
  5255. case "studentClassRoom": //好友打开
  5256. _formdiv = new U.UF.UI.form(
  5257. "实时课堂",
  5258. $$("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 }), {
  5259. "id": "studentClassRoom",
  5260. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5261. "onresize": function () { }
  5262. }, {
  5263. closecallback: function () { }
  5264. }, { "style": { "height": "36px" } }).form; //创建窗体
  5265. _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); } }
  5266. setTimeout(() => {
  5267. U.UF.F.windowZooming(_formdiv)
  5268. }, 0);
  5269. break;
  5270. }
  5271. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5272. switch (str) {
  5273. case "studnetProject": //好友打开
  5274. _formdiv = new U.UF.UI.form(
  5275. "我的项目",
  5276. $$("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 }), {
  5277. "id": "studnetProject",
  5278. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5279. "onresize": function () { }
  5280. }, {
  5281. closecallback: function () { }
  5282. }, { "style": { "height": "36px" } }).form; //创建窗体
  5283. _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); } }
  5284. break;
  5285. case "studentEvaluate": //好友打开
  5286. _formdiv = new U.UF.UI.form(
  5287. "我的评价",
  5288. $$("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 }), {
  5289. "id": "studentEvaluate",
  5290. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5291. "onresize": function () { }
  5292. }, {
  5293. closecallback: function () { }
  5294. }, { "style": { "height": "36px" } }).form; //创建窗体
  5295. _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); } }
  5296. break;
  5297. case "my":
  5298. _formdiv = new U.UF.UI.form(
  5299. "我的资料",
  5300. $$("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 }), {
  5301. "id": "my",
  5302. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. _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); } }
  5308. break;
  5309. case "program":
  5310. _formdiv = new U.UF.UI.form(
  5311. "编程平台",
  5312. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5313. "id": "program",
  5314. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. _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); } }
  5320. break;
  5321. case "library":
  5322. _formdiv = new U.UF.UI.form(
  5323. "素材库",
  5324. $$("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 }), {
  5325. "id": "library",
  5326. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5327. "onresize": function () { }
  5328. }, {
  5329. closecallback: function () { }
  5330. }, { "style": { "height": "36px" } }).form; //创建窗体
  5331. _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); } }
  5332. break;
  5333. case "whiteboard":
  5334. _formdiv = new U.UF.UI.form(
  5335. "电子白板",
  5336. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5337. "id": "whiteboard",
  5338. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5339. "onresize": function () { }
  5340. }, {
  5341. closecallback: function () { }
  5342. }, { "style": { "height": "36px" } }).form; //创建窗体
  5343. _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); } }
  5344. break;
  5345. case "investigation":
  5346. _formdiv = new U.UF.UI.form(
  5347. "问卷调查",
  5348. $$("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 }), {
  5349. "id": "investigation",
  5350. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5351. "onresize": function () { }
  5352. }, {
  5353. closecallback: function () { }
  5354. }, { "style": { "height": "36px" } }).form; //创建窗体
  5355. _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); } }
  5356. break;
  5357. case "note":
  5358. _formdiv = new U.UF.UI.form(
  5359. "便签分类",
  5360. $$("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 }), {
  5361. "id": "note",
  5362. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5363. "onresize": function () { }
  5364. }, {
  5365. closecallback: function () { }
  5366. }, { "style": { "height": "36px" } }).form; //创建窗体
  5367. _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); } }
  5368. break;
  5369. // case "score":
  5370. // _formdiv = new U.UF.UI.form(
  5371. // "量规评分",
  5372. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5373. // "id": "score",
  5374. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5375. // "onresize": function() {}
  5376. // }, {
  5377. // closecallback: function() {}
  5378. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5379. // _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); } }
  5380. // break;
  5381. case "mind":
  5382. _formdiv = new U.UF.UI.form(
  5383. "思维导图",
  5384. $$("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"
  5385. "id": "mind",
  5386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5387. "onresize": function () { }
  5388. }, {
  5389. closecallback: function () { }
  5390. }, { "style": { "height": "36px" } }).form; //创建窗体
  5391. _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); } }
  5392. break;
  5393. case "doc":
  5394. // U.MD.D.I.isRoom();
  5395. _formdiv = new U.UF.UI.form(
  5396. "协同文档",
  5397. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5398. "id": "doc",
  5399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5400. "onresize": function () { }
  5401. }, {
  5402. closecallback: function () { }
  5403. }, { "style": { "height": "36px" } }).form; //创建窗体
  5404. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5405. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5406. })
  5407. _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); } }
  5408. break;
  5409. case "train": //好友打开
  5410. _formdiv = new U.UF.UI.form(
  5411. "训练平台",
  5412. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5413. "id": "train",
  5414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5415. "onresize": function () { }
  5416. }, {
  5417. closecallback: function () { }
  5418. }, { "style": { "height": "36px" } }).form; //创建窗体
  5419. _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); } }
  5420. break;
  5421. case "studentStudy":
  5422. _formdiv = new U.UF.UI.form(
  5423. "课程中心",
  5424. $$("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
  5425. "id": "studentStudy",
  5426. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5427. "onresize": function () { }
  5428. }, {
  5429. closecallback: function () { }
  5430. }, { "style": { "height": "36px" } }).form; //创建窗体
  5431. _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); } }
  5432. break;
  5433. case "mindNetwork": //好友打开
  5434. _formdiv = new U.UF.UI.form(
  5435. "思维网格",
  5436. $$("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 }), {
  5437. "id": "mindNetwork",
  5438. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5439. "onresize": function () { }
  5440. }, {
  5441. closecallback: function () { }
  5442. }, { "style": { "height": "36px" } }).form; //创建窗体
  5443. _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); } }
  5444. break;
  5445. case "studentClassRoom": //好友打开
  5446. _formdiv = new U.UF.UI.form(
  5447. "实时课堂",
  5448. $$("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 }), {
  5449. "id": "studentClassRoom",
  5450. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5451. "onresize": function () { }
  5452. }, {
  5453. closecallback: function () { }
  5454. }, { "style": { "height": "36px" } }).form; //创建窗体
  5455. _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); } }
  5456. setTimeout(() => {
  5457. U.UF.F.windowZooming(_formdiv)
  5458. }, 0);
  5459. break;
  5460. }
  5461. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5462. //选择应用处理
  5463. switch (str) {
  5464. case "project": //好友打开
  5465. _formdiv = new U.UF.UI.form(
  5466. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5467. $$("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 }), {
  5468. "id": "project",
  5469. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5470. "onresize": function () { }
  5471. }, {
  5472. closecallback: function () { }
  5473. }, { "style": { "height": "36px" } }).form; //创建窗体
  5474. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5475. break;
  5476. case "student":
  5477. _formdiv = new U.UF.UI.form(
  5478. "学生管理",
  5479. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5480. "id": "student",
  5481. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5482. "onresize": function () { }
  5483. }, {
  5484. closecallback: function () { }
  5485. }, { "style": { "height": "36px" } }).form; //创建窗体
  5486. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5487. break;
  5488. case "evaluate":
  5489. _formdiv = new U.UF.UI.form(
  5490. "学生评价",
  5491. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5492. "id": "evaluate",
  5493. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5499. break;
  5500. case "sys":
  5501. _formdiv = new U.UF.UI.form(
  5502. "目标管理",
  5503. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5504. "id": "sys",
  5505. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5506. "onresize": function () { }
  5507. }, {
  5508. closecallback: function () { }
  5509. }, { "style": { "height": "36px" } }).form; //创建窗体
  5510. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5511. break;
  5512. case "courseDesign":
  5513. _formdiv = new U.UF.UI.form(
  5514. "项目设计",
  5515. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5516. "id": "courseDesign",
  5517. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5518. "onresize": function () { }
  5519. }, {
  5520. closecallback: function () { }
  5521. }, { "style": { "height": "36px" } }).form; //创建窗体
  5522. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5523. break;
  5524. case "program":
  5525. _formdiv = new U.UF.UI.form(
  5526. "编程平台",
  5527. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5528. "id": "program",
  5529. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5530. "onresize": function () { }
  5531. }, {
  5532. closecallback: function () { }
  5533. }, { "style": { "height": "36px" } }).form; //创建窗体
  5534. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5535. break;
  5536. case "class":
  5537. _formdiv = new U.UF.UI.form(
  5538. "班级管理",
  5539. $$("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 }), {
  5540. "id": "class",
  5541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5542. "onresize": function () { }
  5543. }, {
  5544. closecallback: function () { }
  5545. }, { "style": { "height": "36px" } }).form; //创建窗体
  5546. _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); } }
  5547. break;
  5548. case "Grade":
  5549. _formdiv = new U.UF.UI.form(
  5550. "年级管理",
  5551. $$("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 }), {
  5552. "id": "Grade",
  5553. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. _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); } }
  5559. break;
  5560. case "teacherOffice":
  5561. _formdiv = new U.UF.UI.form(
  5562. "教研室",
  5563. $$("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 }), {
  5564. "id": "teacherOffice",
  5565. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. _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); } }
  5571. break;
  5572. case "my":
  5573. _formdiv = new U.UF.UI.form(
  5574. "我的资料",
  5575. $$("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 }), {
  5576. "id": "my",
  5577. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //创建窗体
  5582. _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); } }
  5583. break;
  5584. case "notice":
  5585. _formdiv = new U.UF.UI.form(
  5586. "通知公告",
  5587. $$("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 }), {
  5588. "id": "notice",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _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); } }
  5595. break;
  5596. case "library":
  5597. _formdiv = new U.UF.UI.form(
  5598. "素材库",
  5599. $$("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 }), {
  5600. "id": "library",
  5601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //创建窗体
  5606. _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); } }
  5607. break;
  5608. case "whiteboard":
  5609. _formdiv = new U.UF.UI.form(
  5610. "电子白板",
  5611. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5612. "id": "whiteboard",
  5613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. _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); } }
  5619. break;
  5620. case "investigation":
  5621. _formdiv = new U.UF.UI.form(
  5622. "问卷调查",
  5623. $$("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 }), {
  5624. "id": "investigation",
  5625. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //创建窗体
  5630. _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); } }
  5631. break;
  5632. case "note":
  5633. _formdiv = new U.UF.UI.form(
  5634. "便签分类",
  5635. $$("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 }), {
  5636. "id": "note",
  5637. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5638. "onresize": function () { }
  5639. }, {
  5640. closecallback: function () { }
  5641. }, { "style": { "height": "36px" } }).form; //创建窗体
  5642. _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); } }
  5643. break;
  5644. // case "score":
  5645. // _formdiv = new U.UF.UI.form(
  5646. // "量规评分",
  5647. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5648. // "id": "score",
  5649. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5650. // "onresize": function() {}
  5651. // }, {
  5652. // closecallback: function() {}
  5653. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. // _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); } }
  5655. // break;
  5656. case "mind":
  5657. _formdiv = new U.UF.UI.form(
  5658. "思维导图",
  5659. $$("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"
  5660. "id": "mind",
  5661. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5662. "onresize": function () { }
  5663. }, {
  5664. closecallback: function () { }
  5665. }, { "style": { "height": "36px" } }).form; //创建窗体
  5666. _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); } }
  5667. break;
  5668. case "doc":
  5669. // U.MD.D.I.isRoom();
  5670. _formdiv = new U.UF.UI.form(
  5671. "协同文档",
  5672. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5673. "id": "doc",
  5674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5675. "onresize": function () { }
  5676. }, {
  5677. closecallback: function () { }
  5678. }, { "style": { "height": "36px" } }).form; //创建窗体
  5679. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5680. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5681. })
  5682. _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); } }
  5683. break;
  5684. case "study":
  5685. _formdiv = new U.UF.UI.form(
  5686. "课程中心",
  5687. $$("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
  5688. "id": "study",
  5689. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5690. "onresize": function () { }
  5691. }, {
  5692. closecallback: function () { }
  5693. }, { "style": { "height": "36px" } }).form; //创建窗体
  5694. _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); } }
  5695. break;
  5696. case "mindNetwork": //好友打开
  5697. _formdiv = new U.UF.UI.form(
  5698. "思维网格",
  5699. $$("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 }), {
  5700. "id": "mindNetwork",
  5701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5702. "onresize": function () { }
  5703. }, {
  5704. closecallback: function () { }
  5705. }, { "style": { "height": "36px" } }).form; //创建窗体
  5706. _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); } }
  5707. break;
  5708. case "train": //好友打开
  5709. _formdiv = new U.UF.UI.form(
  5710. "训练平台",
  5711. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5712. "id": "mindNetwork",
  5713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, { "style": { "height": "36px" } }).form; //创建窗体
  5718. _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); } }
  5719. break;
  5720. case "teacherClassRoom": //好友打开
  5721. _formdiv = new U.UF.UI.form(
  5722. "实时课堂",
  5723. $$("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 }), {
  5724. "id": "teacherClassRoom",
  5725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5726. "onresize": function () { }
  5727. }, {
  5728. closecallback: function () { }
  5729. }, { "style": { "height": "36px" } }).form; //创建窗体
  5730. _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); } }
  5731. setTimeout(() => {
  5732. U.UF.F.windowZooming(_formdiv)
  5733. }, 0);
  5734. break;
  5735. }
  5736. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5737. switch (str) {
  5738. case "project": //好友打开
  5739. _formdiv = new U.UF.UI.form(
  5740. "课程管理",
  5741. $$("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 }), {
  5742. "id": "project",
  5743. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //创建窗体
  5748. _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); } }
  5749. break;
  5750. case "evaluate":
  5751. _formdiv = new U.UF.UI.form(
  5752. "学生评价",
  5753. $$("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 }), {
  5754. "id": "evaluate",
  5755. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. _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); } }
  5761. break;
  5762. case "notice":
  5763. _formdiv = new U.UF.UI.form(
  5764. "通知公告",
  5765. $$("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 }), {
  5766. "id": "notice",
  5767. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //创建窗体
  5772. _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); } }
  5773. break;
  5774. case "stuLibrary":
  5775. _formdiv = new U.UF.UI.form(
  5776. "学习资料",
  5777. $$("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 }), {
  5778. "id": "stuLibrary",
  5779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5780. "onresize": function () { }
  5781. }, {
  5782. closecallback: function () { }
  5783. }, { "style": { "height": "36px" } }).form; //创建窗体
  5784. _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); } }
  5785. break;
  5786. case "program":
  5787. _formdiv = new U.UF.UI.form(
  5788. "编程平台",
  5789. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5790. "id": "program",
  5791. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. _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); } }
  5797. break;
  5798. case "whiteboard":
  5799. _formdiv = new U.UF.UI.form(
  5800. "电子白板",
  5801. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5802. "id": "whiteboard",
  5803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5804. "onresize": function () { }
  5805. }, {
  5806. closecallback: function () { }
  5807. }, { "style": { "height": "36px" } }).form; //创建窗体
  5808. _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); } }
  5809. break;
  5810. case "investigation":
  5811. _formdiv = new U.UF.UI.form(
  5812. "问卷调查",
  5813. $$("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 }), {
  5814. "id": "investigation",
  5815. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5816. "onresize": function () { }
  5817. }, {
  5818. closecallback: function () { }
  5819. }, { "style": { "height": "36px" } }).form; //创建窗体
  5820. _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); } }
  5821. break;
  5822. case "mind":
  5823. _formdiv = new U.UF.UI.form(
  5824. "思维导图",
  5825. $$("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"
  5826. "id": "mind",
  5827. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5828. "onresize": function () { }
  5829. }, {
  5830. closecallback: function () { }
  5831. }, { "style": { "height": "36px" } }).form; //创建窗体
  5832. _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); } }
  5833. break;
  5834. case "doc":
  5835. // U.MD.D.I.isRoom();
  5836. _formdiv = new U.UF.UI.form(
  5837. "协同文档",
  5838. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5839. "id": "doc",
  5840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //创建窗体
  5845. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5846. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5847. })
  5848. _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); } }
  5849. break;
  5850. case "study":
  5851. _formdiv = new U.UF.UI.form(
  5852. "课程中心",
  5853. $$("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
  5854. "id": "study",
  5855. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5856. "onresize": function () { }
  5857. }, {
  5858. closecallback: function () { }
  5859. }, { "style": { "height": "36px" } }).form; //创建窗体
  5860. _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); } }
  5861. break;
  5862. case "mindNetwork": //好友打开
  5863. _formdiv = new U.UF.UI.form(
  5864. "思维网格",
  5865. $$("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 }), {
  5866. "id": "mindNetwork",
  5867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. "onresize": function () { }
  5869. }, {
  5870. closecallback: function () { }
  5871. }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. _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); } }
  5873. break;
  5874. case "train": //好友打开
  5875. _formdiv = new U.UF.UI.form(
  5876. "训练平台",
  5877. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5878. "id": "train",
  5879. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //创建窗体
  5884. _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); } }
  5885. break;
  5886. case "sys":
  5887. _formdiv = new U.UF.UI.form(
  5888. "目标管理",
  5889. $$("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 }), {
  5890. "id": "sys",
  5891. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //创建窗体
  5896. _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); } }
  5897. break;
  5898. case "courseDesign":
  5899. _formdiv = new U.UF.UI.form(
  5900. "项目设计",
  5901. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5902. "id": "courseDesign",
  5903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5904. "onresize": function () { }
  5905. }, {
  5906. closecallback: function () { }
  5907. }, { "style": { "height": "36px" } }).form; //创建窗体
  5908. _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); } }
  5909. break;
  5910. }
  5911. } else if (!_type) {
  5912. switch (str) {
  5913. case "my":
  5914. _formdiv = new U.UF.UI.form(
  5915. "我的资料",
  5916. $$("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 }), {
  5917. "id": "my",
  5918. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5919. "onresize": function () { }
  5920. }, {
  5921. closecallback: function () { }
  5922. }, { "style": { "height": "36px" } }).form; //创建窗体
  5923. _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); } }
  5924. break;
  5925. }
  5926. }
  5927. switch (str) {
  5928. // AIprogram2 AI体验 aihub.cocorobo.cn
  5929. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5930. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5931. case "formulaEdi": //公式编辑
  5932. _formdiv = new U.UF.UI.form(
  5933. "公式编辑",
  5934. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5935. "id": "formulaEdi",
  5936. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5937. "onresize": function () { }
  5938. }, {
  5939. closecallback: function () { }
  5940. }, { "style": { "height": "36px" } }).form; //创建窗体
  5941. _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); } }
  5942. break;
  5943. case "molStr": //分子结构
  5944. _formdiv = new U.UF.UI.form(
  5945. "分子结构",
  5946. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5947. "id": "molStr",
  5948. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //创建窗体
  5953. _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); } }
  5954. break;
  5955. case "timeAxis": //时间轴
  5956. _formdiv = new U.UF.UI.form(
  5957. "时间轴",
  5958. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5959. "id": "timeAxis",
  5960. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5961. "onresize": function () { }
  5962. }, {
  5963. closecallback: function () { }
  5964. }, { "style": { "height": "36px" } }).form; //创建窗体
  5965. _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); } }
  5966. break;
  5967. case "AIprogram2": //AI体验
  5968. _formdiv = new U.UF.UI.form(
  5969. "AI体验",
  5970. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5971. "id": "AIprogram2",
  5972. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5973. "onresize": function () { }
  5974. }, {
  5975. closecallback: function () { }
  5976. }, { "style": { "height": "36px" } }).form; //创建窗体
  5977. _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); } }
  5978. break;
  5979. case "Pythonprogram": //python编程
  5980. _formdiv = new U.UF.UI.form(
  5981. "Python编程",
  5982. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5983. "id": "Pythonprogram",
  5984. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5985. "onresize": function () { }
  5986. }, {
  5987. closecallback: function () { }
  5988. }, { "style": { "height": "36px" } }).form; //创建窗体
  5989. _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); } }
  5990. break;
  5991. case "AIprogram": //ai编程
  5992. _formdiv = new U.UF.UI.form(
  5993. "AI编程平台",
  5994. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5995. "id": "AIprogram",
  5996. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5997. "onresize": function () { }
  5998. }, {
  5999. closecallback: function () { }
  6000. }, { "style": { "height": "36px" } }).form; //创建窗体
  6001. _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); } }
  6002. break;
  6003. case "CocoPi": //CocoPi
  6004. _formdiv = new U.UF.UI.form(
  6005. "CocoPi",
  6006. $$("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" }), {
  6007. "id": "CocoPi",
  6008. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6009. "onresize": function () { }
  6010. }, {
  6011. closecallback: function () { }
  6012. }, { "style": { "height": "36px" } }).form; //创建窗体
  6013. _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); } }
  6014. break;
  6015. case "Wood": //Wood
  6016. _formdiv = new U.UF.UI.form(
  6017. "海龟编程",
  6018. $$("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/" }), {
  6019. "id": "Wood",
  6020. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //创建窗体
  6025. _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); } }
  6026. break;
  6027. case "car": //模拟驾驶
  6028. _formdiv = new U.UF.UI.form(
  6029. "模拟驾驶",
  6030. $$("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/" }), {
  6031. "id": "car",
  6032. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //创建窗体
  6037. _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); } }
  6038. break;
  6039. case "lineSearch": //路径搜索
  6040. _formdiv = new U.UF.UI.form(
  6041. "路径搜索",
  6042. $$("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/" }), {
  6043. "id": "lineSearch",
  6044. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6045. "onresize": function () { }
  6046. }, {
  6047. closecallback: function () { }
  6048. }, { "style": { "height": "36px" } }).form; //创建窗体
  6049. _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); } }
  6050. break;
  6051. case "deepLearning": //深度学习
  6052. _formdiv = new U.UF.UI.form(
  6053. "深度学习",
  6054. $$("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/#" }), {
  6055. "id": "deepLearning",
  6056. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6057. "onresize": function () { }
  6058. }, {
  6059. closecallback: function () { }
  6060. }, { "style": { "height": "36px" } }).form; //创建窗体
  6061. _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); } }
  6062. break;
  6063. case "allHistory": //深度学习
  6064. _formdiv = new U.UF.UI.form(
  6065. "全历史",
  6066. $$("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/" }), {
  6067. "id": "allHistory",
  6068. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6069. "onresize": function () { }
  6070. }, {
  6071. closecallback: function () { }
  6072. }, { "style": { "height": "36px" } }).form; //创建窗体
  6073. _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); } }
  6074. break;
  6075. case "chatPDF": //ai编程
  6076. _formdiv = new U.UF.UI.form(
  6077. "chatPDF",
  6078. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6079. "id": "chatPDF",
  6080. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6081. "onresize": function () { }
  6082. }, {
  6083. closecallback: function () { }
  6084. }, { "style": { "height": "36px" } }).form; //创建窗体
  6085. _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); } }
  6086. break;
  6087. case "resources": //国家教育
  6088. _formdiv = new U.UF.UI.form(
  6089. "国家教育",
  6090. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6091. "id": "resources",
  6092. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //创建窗体
  6097. _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); } }
  6098. break;
  6099. case "codeEdit": //源码编辑
  6100. _formdiv = new U.UF.UI.form(
  6101. "源码编辑",
  6102. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6103. "id": "codeEdit",
  6104. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6105. "onresize": function () { }
  6106. }, {
  6107. closecallback: function () { }
  6108. }, { "style": { "height": "36px" } }).form; //创建窗体
  6109. _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); } }
  6110. break; //
  6111. case "MindMap": //MindMap
  6112. _formdiv = new U.UF.UI.form(
  6113. "MindMap",
  6114. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6115. "id": "MindMap",
  6116. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6117. "onresize": function () { }
  6118. }, {
  6119. closecallback: function () { }
  6120. }, { "style": { "height": "36px" } }).form; //创建窗体
  6121. _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); } }
  6122. break;
  6123. case "netWorkPanel": //netWorkPanel
  6124. _formdiv = new U.UF.UI.form(
  6125. "netWorkPanel",
  6126. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6127. "id": "netWorkPanel",
  6128. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6129. "onresize": function () { }
  6130. }, {
  6131. closecallback: function () { }
  6132. }, { "style": { "height": "36px" } }).form; //创建窗体
  6133. _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); } }
  6134. break;
  6135. case "GeoGebra": //GeoGebra
  6136. _formdiv = new U.UF.UI.form(
  6137. "GeoGebra",
  6138. $$("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" }), {
  6139. "id": "GeoGebra",
  6140. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6141. "onresize": function () { }
  6142. }, {
  6143. closecallback: function () { }
  6144. }, { "style": { "height": "36px" } }).form; //创建窗体
  6145. _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); } }
  6146. break;
  6147. case "translation": //翻译
  6148. _formdiv = new U.UF.UI.form(
  6149. "翻译",
  6150. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6151. "id": "translation",
  6152. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6153. "onresize": function () { }
  6154. }, {
  6155. closecallback: function () { }
  6156. }, { "style": { "height": "36px" } }).form; //创建窗体
  6157. _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); } }
  6158. break;
  6159. case "mohe": //魔盒
  6160. _formdiv = new U.UF.UI.form(
  6161. "魔盒识字",
  6162. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6163. "id": "mohe",
  6164. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6165. "onresize": function () { }
  6166. }, {
  6167. closecallback: function () { }
  6168. }, { "style": { "height": "36px" } }).form; //创建窗体
  6169. _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); } }
  6170. break;
  6171. case "24game": //24点
  6172. _formdiv = new U.UF.UI.form(
  6173. "24点",
  6174. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6175. "id": "24game",
  6176. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6177. "onresize": function () { }
  6178. }, {
  6179. closecallback: function () { }
  6180. }, { "style": { "height": "36px" } }).form; //创建窗体
  6181. _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); } }
  6182. break;
  6183. case "case":
  6184. _formdiv = new U.UF.UI.form(
  6185. "课程进展",
  6186. $$("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 }), {
  6187. "id": "case",
  6188. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6189. "onresize": function () { }
  6190. }, {
  6191. closecallback: function () { }
  6192. }, { "style": { "height": "36px" } }).form; //创建窗体
  6193. _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); } }
  6194. break;
  6195. case "snf":
  6196. _formdiv = new U.UF.UI.form(
  6197. "赛诺梵",
  6198. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6199. "id": "snf",
  6200. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6201. "onresize": function () { }
  6202. }, {
  6203. closecallback: function () { }
  6204. }, { "style": { "height": "36px" } }).form; //创建窗体
  6205. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6206. break;
  6207. case "hanFamily":
  6208. _formdiv = new U.UF.UI.form(
  6209. "汉字家族",
  6210. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6211. "id": "hanFamily",
  6212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6213. "onresize": function () { }
  6214. }, {
  6215. closecallback: function () { }
  6216. }, { "style": { "height": "36px" } }).form; //创建窗体
  6217. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6218. break;
  6219. case "hanClassics":
  6220. _formdiv = new U.UF.UI.form(
  6221. "国学经典",
  6222. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6223. "id": "hanClassics",
  6224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6225. "onresize": function () { }
  6226. }, {
  6227. closecallback: function () { }
  6228. }, { "style": { "height": "36px" } }).form; //创建窗体
  6229. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6230. break;
  6231. case "hanTraining":
  6232. _formdiv = new U.UF.UI.form(
  6233. "笔画训练",
  6234. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6235. "id": "hanTraining",
  6236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6237. "onresize": function () { }
  6238. }, {
  6239. closecallback: function () { }
  6240. }, { "style": { "height": "36px" } }).form; //创建窗体
  6241. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6242. break;
  6243. case "hanClass":
  6244. _formdiv = new U.UF.UI.form(
  6245. "书法课堂",
  6246. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6247. "id": "hanClass",
  6248. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6249. "onresize": function () { }
  6250. }, {
  6251. closecallback: function () { }
  6252. }, { "style": { "height": "36px" } }).form; //创建窗体
  6253. _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); } }
  6254. break;
  6255. case "han":
  6256. _formdiv = new U.UF.UI.form(
  6257. "汉字宫",
  6258. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6259. "id": "han",
  6260. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6261. "onresize": function () { }
  6262. }, {
  6263. closecallback: function () { }
  6264. }, { "style": { "height": "36px" } }).form; //创建窗体
  6265. _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); } }
  6266. break;
  6267. case "projectGM": //课程管理
  6268. _formdiv = new U.UF.UI.form(
  6269. "课程管理",
  6270. $$("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 }), {
  6271. "id": "projectGM",
  6272. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6273. "onresize": function () { }
  6274. }, {
  6275. closecallback: function () { }
  6276. }, { "style": { "height": "36px" } }).form; //创建窗体
  6277. _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); } }
  6278. break;
  6279. case "studyGM": //课程中心
  6280. _formdiv = new U.UF.UI.form(
  6281. "课程中心",
  6282. $$("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
  6283. "id": "study",
  6284. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6285. "onresize": function () { }
  6286. }, {
  6287. closecallback: function () { }
  6288. }, { "style": { "height": "36px" } }).form; //创建窗体
  6289. _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); } }
  6290. break;
  6291. // studentGM
  6292. case "studentGM": //学生管理
  6293. _formdiv = new U.UF.UI.form(
  6294. "学生管理",
  6295. $$("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 }), {
  6296. "id": "studentGM",
  6297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6298. "onresize": function () { }
  6299. }, {
  6300. closecallback: function () { }
  6301. }, { "style": { "height": "36px" } }).form; //创建窗体
  6302. _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); } }
  6303. break;
  6304. case "evaluateGM": //学生评价
  6305. _formdiv = new U.UF.UI.form(
  6306. "学生评价",
  6307. $$("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 }), {
  6308. "id": "evaluateGM",
  6309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6310. "onresize": function () { }
  6311. }, {
  6312. closecallback: function () { }
  6313. }, { "style": { "height": "36px" } }).form; //创建窗体
  6314. _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); } }
  6315. break;
  6316. // classGM
  6317. case "classGM": //班级管理
  6318. _formdiv = new U.UF.UI.form(
  6319. "班级管理",
  6320. $$("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 }), {
  6321. "id": "classGM",
  6322. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6323. "onresize": function () { }
  6324. }, {
  6325. closecallback: function () { }
  6326. }, { "style": { "height": "36px" } }).form; //创建窗体
  6327. _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); } }
  6328. break;
  6329. // dataGM
  6330. case "dataGM":
  6331. _formdiv = new U.UF.UI.form(
  6332. "我的资料",
  6333. $$("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 }), {
  6334. "id": "dataGM",
  6335. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6336. "onresize": function () { }
  6337. }, {
  6338. closecallback: function () { }
  6339. }, { "style": { "height": "36px" } }).form; //创建窗体
  6340. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6341. break;
  6342. // caseGM
  6343. case "caseGM": //课程进展
  6344. _formdiv = new U.UF.UI.form(
  6345. "课程进展",
  6346. $$("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 }), {
  6347. "id": "caseGM",
  6348. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6349. "onresize": function () { }
  6350. }, {
  6351. closecallback: function () { }
  6352. }, { "style": { "height": "36px" } }).form; //创建窗体
  6353. _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); } }
  6354. break;
  6355. // meterialGM
  6356. case "meterialGM": //素材库
  6357. _formdiv = new U.UF.UI.form(
  6358. "素材库",
  6359. $$("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 }), {
  6360. "id": "meterialGM",
  6361. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6362. "onresize": function () { }
  6363. }, {
  6364. closecallback: function () { }
  6365. }, { "style": { "height": "36px" } }).form; //创建窗体
  6366. _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); } }
  6367. break;
  6368. // evaluateSGM
  6369. case "evaluateSGM": //我的评价
  6370. _formdiv = new U.UF.UI.form(
  6371. "我的评价",
  6372. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6373. "id": "evaluateSGM",
  6374. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6375. "onresize": function () { }
  6376. }, {
  6377. closecallback: function () { }
  6378. }, { "style": { "height": "36px" } }).form; //创建窗体
  6379. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6380. break;
  6381. case "jupyter": //jupyter
  6382. _formdiv = new U.UF.UI.form(
  6383. "jupyter",
  6384. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6385. "id": "jupyter",
  6386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6387. "onresize": function () { }
  6388. }, {
  6389. closecallback: function () { }
  6390. }, { "style": { "height": "36px" } }).form; //创建窗体
  6391. _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); } }
  6392. break;
  6393. case "number": //数字实验室
  6394. _formdiv = new U.UF.UI.form(
  6395. "数字实验室",
  6396. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6397. "id": "number",
  6398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6399. "onresize": function () { }
  6400. }, {
  6401. closecallback: function () { }
  6402. }, { "style": { "height": "36px" } }).form; //创建窗体
  6403. _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); } }
  6404. break;
  6405. case "studentCourse": //项目管理 学生
  6406. _formdiv = new U.UF.UI.form(
  6407. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6408. $$("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 }), {
  6409. "id": "studentCourse",
  6410. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6411. "onresize": function () { }
  6412. }, {
  6413. closecallback: function () { }
  6414. }, { "style": { "height": "36px" } }).form; //创建窗体
  6415. _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); } }
  6416. break;
  6417. case "studentCourseS": //项目管理 老师
  6418. _formdiv = new U.UF.UI.form(
  6419. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6420. $$("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 }), {
  6421. "id": "studentCourseS",
  6422. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6423. "onresize": function () { }
  6424. }, {
  6425. closecallback: function () { }
  6426. }, { "style": { "height": "36px" } }).form; //创建窗体
  6427. _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); } }
  6428. break;
  6429. case "studentIndex": //项目中心
  6430. _formdiv = new U.UF.UI.form(
  6431. "项目中心",
  6432. $$("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 }), {
  6433. "id": "studentIndex",
  6434. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6435. "onresize": function () { }
  6436. }, {
  6437. closecallback: function () { }
  6438. }, { "style": { "height": "36px" } }).form; //创建窗体
  6439. _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); } }
  6440. break;
  6441. case "CaseDesignS":
  6442. _formdiv = new U.UF.UI.form(
  6443. "项目进展",
  6444. $$("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 }), {
  6445. "id": "case",
  6446. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6447. "onresize": function () { }
  6448. }, {
  6449. closecallback: function () { }
  6450. }, { "style": { "height": "36px" } }).form; //创建窗体
  6451. _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); } }
  6452. break;
  6453. case "tcStudent": //腾讯学生管理
  6454. _formdiv = new U.UF.UI.form(
  6455. "学生管理",
  6456. $$("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 }), {
  6457. "id": "tcStudent",
  6458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6459. "onresize": function () { }
  6460. }, {
  6461. closecallback: function () { }
  6462. }, { "style": { "height": "36px" } }).form; //创建窗体
  6463. _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); } }
  6464. break;
  6465. case "tcSchool": //腾讯学校管理
  6466. _formdiv = new U.UF.UI.form(
  6467. "学校管理",
  6468. $$("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 }), {
  6469. "id": "tcSchool",
  6470. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6471. "onresize": function () { }
  6472. }, {
  6473. closecallback: function () { }
  6474. }, { "style": { "height": "36px" } }).form; //创建窗体
  6475. _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); } }
  6476. break;
  6477. case "tcTeacher": //腾讯学校管理
  6478. _formdiv = new U.UF.UI.form(
  6479. "教师管理",
  6480. $$("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 }), {
  6481. "id": "tcTeacher",
  6482. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6483. "onresize": function () { }
  6484. }, {
  6485. closecallback: function () { }
  6486. }, { "style": { "height": "36px" } }).form; //创建窗体
  6487. _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); } }
  6488. break;
  6489. case "teacher":
  6490. _formdiv = new U.UF.UI.form(
  6491. "教师管理",
  6492. $$("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 }), {
  6493. "id": "teacher",
  6494. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6495. "onresize": function () { }
  6496. }, {
  6497. closecallback: function () { }
  6498. }, { "style": { "height": "36px" } }).form; //创建窗体
  6499. _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); } }
  6500. break;
  6501. case "tcData": //腾讯我的资料
  6502. _formdiv = new U.UF.UI.form(
  6503. "我的资料",
  6504. $$("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 }), {
  6505. "id": "tcData",
  6506. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6507. "onresize": function () { }
  6508. }, {
  6509. closecallback: function () { }
  6510. }, { "style": { "height": "36px" } }).form; //创建窗体
  6511. _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); } }
  6512. break;
  6513. case "tcNotice": //腾讯消息通知
  6514. _formdiv = new U.UF.UI.form(
  6515. "消息通知",
  6516. $$("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 }), {
  6517. "id": "tcNotice",
  6518. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6519. "onresize": function () { }
  6520. }, {
  6521. closecallback: function () { }
  6522. }, { "style": { "height": "36px" } }).form; //创建窗体
  6523. _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); } }
  6524. break;
  6525. case "myReport": //好友打开
  6526. _formdiv = new U.UF.UI.form(
  6527. "我的评价",
  6528. $$("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 }), {
  6529. "id": "myReport",
  6530. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6531. "onresize": function () { }
  6532. }, {
  6533. closecallback: function () { }
  6534. }, { "style": { "height": "36px" } }).form; //创建窗体
  6535. _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); } }
  6536. break;
  6537. case "learnAna": //好友打开
  6538. _formdiv = new U.UF.UI.form(
  6539. "学习分析",
  6540. $$("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 }), {
  6541. "id": "learnAna",
  6542. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6543. "onresize": function () { }
  6544. }, {
  6545. closecallback: function () { }
  6546. }, { "style": { "height": "36px" } }).form; //创建窗体
  6547. _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); } }
  6548. break;
  6549. case "AIChat": //AI共创
  6550. _formdiv = new U.UF.UI.form(
  6551. "AI共创",
  6552. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6553. "id": "AIChat",
  6554. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. istop: true,
  6558. closecallback: function () { $("#aichat_icon").remove(); },
  6559. narrowcallback: function () {
  6560. if (!$("#aichat_icon")[0]) {
  6561. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6562. }
  6563. },
  6564. }, { "style": { "height": "36px" } }).form; //创建窗体
  6565. _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); } }
  6566. break;
  6567. case "ainew": //AI共创
  6568. _formdiv = new U.UF.UI.form(
  6569. "AI协同",
  6570. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6571. "id": "ainew",
  6572. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6573. "onresize": function () { }
  6574. }, {
  6575. closecallback: function () { }
  6576. }, { "style": { "height": "36px" } }).form; //创建窗体
  6577. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6578. break;
  6579. case "gpt4": //gpt4
  6580. _formdiv = new U.UF.UI.form(
  6581. "AI助手",
  6582. $$("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 }), {
  6583. "id": "gpt4",
  6584. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6585. "onresize": function () { }
  6586. }, {
  6587. closecallback: function () { }
  6588. }, { "style": { "height": "36px" } }).form; //创建窗体
  6589. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6590. break;
  6591. case "aigpt": //gpt4
  6592. _formdiv = new U.UF.UI.form(
  6593. "AI助手+",
  6594. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6595. "id": "aigpt",
  6596. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6597. "onresize": function () { }
  6598. }, {
  6599. closecallback: function () {
  6600. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6601. }
  6602. }, { "style": { "height": "36px" } }).form; //创建窗体
  6603. _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); } }
  6604. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6605. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6606. })
  6607. break;
  6608. case "aiKnowledge": //aiKnowledge
  6609. _formdiv = new U.UF.UI.form(
  6610. "知识建构",
  6611. $$("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/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6612. "id": "aiKnowledge",
  6613. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6614. "onresize": function () { }
  6615. }, {
  6616. closecallback: function () { }
  6617. }, { "style": { "height": "36px" } }).form; //创建窗体
  6618. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6619. break;
  6620. case "futureClass": //AI共创
  6621. _formdiv = new U.UF.UI.form(
  6622. "协同建构",
  6623. $$("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://beta.cscl.cocorobo.cn
  6624. "id": "synergyCourse",
  6625. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6626. "onresize": function () { }
  6627. }, {
  6628. closecallback: function () {
  6629. $("iframe", _formdiv)[0].contentWindow.loginout();
  6630. }
  6631. }, { "style": { "height": "36px" } }).form; //创建窗体
  6632. _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); } }
  6633. break;
  6634. case "aiagent": //ai agent
  6635. _formdiv = new U.UF.UI.form(
  6636. "AI Agent",
  6637. $$("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" }), {
  6638. "id": "AIAgent",
  6639. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6640. "onresize": function () { }
  6641. }, {
  6642. closecallback: function () { }
  6643. }, { "style": { "height": "36px" } }).form; //创建窗体
  6644. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6645. break;
  6646. case "dataBoard": //数据看板
  6647. _formdiv = new U.UF.UI.form(
  6648. "数据看板",
  6649. $$("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 }), {
  6650. "id": "dataBoard",
  6651. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6652. "onresize": function () { }
  6653. }, {
  6654. closecallback: function () { }
  6655. }, { "style": { "height": "36px" } }).form; //创建窗体
  6656. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6657. break;
  6658. case "dataBoardSies": //数据融合
  6659. _formdiv = new U.UF.UI.form(
  6660. "数据融合",
  6661. $$("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 }), {
  6662. "id": "dataBoardSies",
  6663. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6664. "onresize": function () { }
  6665. }, {
  6666. closecallback: function () { }
  6667. }, { "style": { "height": "36px" } }).form; //创建窗体
  6668. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6669. break;
  6670. case "dataBoardNew": //数据看板
  6671. _formdiv = new U.UF.UI.form(
  6672. "综合看板",
  6673. $$("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 }), {
  6674. "id": "dataBoardNew",
  6675. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6676. "onresize": function () { }
  6677. }, {
  6678. closecallback: function () { }
  6679. }, { "style": { "height": "36px" } }).form; //创建窗体
  6680. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6681. break;
  6682. case "dataBoardTest": //数据看板
  6683. _formdiv = new U.UF.UI.form(
  6684. "评测看板",
  6685. $$("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 }), {
  6686. "id": "dataBoardTest",
  6687. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6688. "onresize": function () { }
  6689. }, {
  6690. closecallback: function () { }
  6691. }, { "style": { "height": "36px" } }).form; //创建窗体
  6692. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6693. break;
  6694. case "AIAnalyse": //AI共创
  6695. _formdiv = new U.UF.UI.form(
  6696. "AI分析",
  6697. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6698. "id": "AIAnalyse",
  6699. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6700. "onresize": function () { }
  6701. }, {
  6702. closecallback: function () { }
  6703. }, { "style": { "height": "36px" } }).form; //创建窗体
  6704. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6705. break;
  6706. case "studioCourse": //AI共创
  6707. _formdiv = new U.UF.UI.form(
  6708. "工作管理",
  6709. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6710. "id": "studioCourse",
  6711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6712. "onresize": function () { }
  6713. }, {
  6714. closecallback: function () { }
  6715. }, { "style": { "height": "36px" } }).form; //创建窗体
  6716. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6717. break;
  6718. case "studioIndex": //AI共创
  6719. _formdiv = new U.UF.UI.form(
  6720. "工作中心",
  6721. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6722. "id": "studioIndex",
  6723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6724. "onresize": function () { }
  6725. }, {
  6726. closecallback: function () { }
  6727. }, { "style": { "height": "36px" } }).form; //创建窗体
  6728. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6729. break;
  6730. case "source":
  6731. _formdiv = new U.UF.UI.form(
  6732. "教学资源",
  6733. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6734. "id": "source",
  6735. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6736. "onresize": function () { }
  6737. }, {
  6738. closecallback: function () { }
  6739. }, { "style": { "height": "36px" } }).form; //创建窗体
  6740. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6741. break;
  6742. case "testTeacher":
  6743. _formdiv = new U.UF.UI.form(
  6744. "教师管理",
  6745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6746. "id": "testTeacher",
  6747. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6753. break;
  6754. case "testStudent":
  6755. _formdiv = new U.UF.UI.form(
  6756. "教师中心",
  6757. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6758. "id": "testStudent",
  6759. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6765. break;
  6766. case "testTeacherSies":
  6767. _formdiv = new U.UF.UI.form(
  6768. "教师管理",
  6769. $$("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 }), {
  6770. "id": "testTeacherSies",
  6771. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6777. break;
  6778. case "testStudentSies":
  6779. _formdiv = new U.UF.UI.form(
  6780. "教师中心",
  6781. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6782. "id": "testStudentSies",
  6783. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6789. break;
  6790. case "ytpbl": //消息通知
  6791. _formdiv = new U.UF.UI.form(
  6792. "案例征集",
  6793. $$("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 }), {
  6794. "id": "ytpbl",
  6795. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6796. "onresize": function () { }
  6797. }, {
  6798. closecallback: function () { }
  6799. }, { "style": { "height": "36px" } }).form; //创建窗体
  6800. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6801. // 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");
  6802. break;
  6803. case "aiCourseResource": //人工智能窗体
  6804. _formdiv = new U.UF.UI.form(
  6805. false,
  6806. $$("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 }), {
  6807. "id": "aiCourseResource",
  6808. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6809. "onresize": function () { },
  6810. "isdrag": false,
  6811. }, {
  6812. closecallback: function () { }
  6813. }, { "style": { "height": "36px" } }).form; //创建窗体
  6814. _taskbar = ''
  6815. break;
  6816. case "szdjgCocooroboX": //图形化编程
  6817. _formdiv = new U.UF.UI.form(
  6818. "图形化编程",
  6819. $$("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" }), {
  6820. "id": "szdjgCocooroboX",
  6821. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6822. "onresize": function () { }
  6823. }, {
  6824. closecallback: function () { }
  6825. }, { "style": { "height": "36px" } }).form; //创建窗体
  6826. _taskbar = ''
  6827. break;
  6828. case "szdjgPython": //python编程
  6829. _formdiv = new U.UF.UI.form(
  6830. "Python编程",
  6831. $$("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" }), {
  6832. "id": "szdjgPython",
  6833. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6834. "onresize": function () { }
  6835. }, {
  6836. closecallback: function () { }
  6837. }, { "style": { "height": "36px" } }).form; //创建窗体
  6838. _taskbar = ''
  6839. break;
  6840. case "Record":
  6841. _formdiv = new U.UF.UI.form(
  6842. "观察记录",
  6843. $$("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 }), {
  6844. "id": "Record",
  6845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6846. "onresize": function () { }
  6847. }, {
  6848. closecallback: function () { }
  6849. }, { "style": { "height": "36px" } }).form; //创建窗体
  6850. _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); } }
  6851. break;
  6852. case "aigptCourse":
  6853. _formdiv = new U.UF.UI.form(
  6854. "AI智能体",
  6855. $$("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' }), {
  6856. "id": "aigptCourse",
  6857. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6858. "onresize": function () { }
  6859. }, {
  6860. closecallback: function () { }
  6861. }, { "style": { "height": "36px" } }).form; //创建窗体
  6862. _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); } }
  6863. break;
  6864. case "classroomObservation":
  6865. _formdiv = new U.UF.UI.form(
  6866. "课堂观察",
  6867. $$("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 }), {
  6868. "id": "classroomObservation",
  6869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6870. "onresize": function () { }
  6871. }, {
  6872. closecallback: function () { }
  6873. }, { "style": { "height": "36px" } }).form; //创建窗体
  6874. _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); } }
  6875. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6876. break;
  6877. case "pblCourse":
  6878. _formdiv = new U.UF.UI.form(
  6879. "学生PBL",
  6880. $$("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 }), {
  6881. "id": "pblCourse",
  6882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6883. "onresize": function () { }
  6884. }, {
  6885. closecallback: function () { }
  6886. }, { "style": { "height": "36px" } }).form; //创建窗体
  6887. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6888. break;
  6889. case "appStore":
  6890. _formdiv = new U.UF.UI.form(
  6891. "应用中心",
  6892. $$("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 }), {
  6893. "id": "pblCourse",
  6894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6895. "onresize": function () { }
  6896. }, {
  6897. closecallback: function () { }
  6898. }, { "style": { "height": "36px" } }).form; //创建窗体
  6899. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "应用中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6900. break;
  6901. }
  6902. //U.MD.D.I.openClick(str);
  6903. //如果有任务栏信息
  6904. if (_taskbar) {
  6905. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6906. }
  6907. }
  6908. // U.MD.D.I.openClick = function(str){
  6909. // var click = '';
  6910. // switch(str){
  6911. // case 'friend':
  6912. // click = '我的好友';
  6913. // break;
  6914. // case 'domain':
  6915. // click = '域名管理';
  6916. // break;
  6917. // case 'disk':
  6918. // click = '我的云盘';
  6919. // break;
  6920. // case 'word':
  6921. // click = 'Word';
  6922. // break;
  6923. // case 'excel':
  6924. // click = 'Execl';
  6925. // break;
  6926. // case 'txt':
  6927. // click = '文本文件';
  6928. // break;
  6929. // case 'lookupFriend':
  6930. // click = '查找好友';
  6931. // break;
  6932. // case 'ftp':
  6933. // click = 'FTP';
  6934. // break;
  6935. // case 'group':
  6936. // click = '群组';
  6937. // break;
  6938. // case 'set':
  6939. // click = '我的设置';
  6940. // break;
  6941. // case 'systemSet':
  6942. // click = '系统设置';
  6943. // break;
  6944. // case 'boomYun':
  6945. // click = '互联办公';
  6946. // break;
  6947. // case 'xz':
  6948. // click = '云端下载';
  6949. // break;
  6950. // case 'client':
  6951. // click = '有思浏览器';
  6952. // break;
  6953. // case 'backEndProgramming':
  6954. // click = '在线后台编程';
  6955. // break;
  6956. // case 'frontEndProgramming':
  6957. // click = '在线前端编程';
  6958. // break;
  6959. // default: break;
  6960. // }
  6961. // if(U.MD.D.I.Ip && click){
  6962. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6963. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6964. // })
  6965. // }
  6966. // }
  6967. /**
  6968. *函数作用:ajax简易函数,使用post格式
  6969. *@param url {data} 后台地址
  6970. *@param data {data} 参数json
  6971. *@param fn {data} 回调函数
  6972. *
  6973. */
  6974. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6975. // var xhr = new XMLHttpRequest();
  6976. // xhr.open("GET",url,true);
  6977. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6978. // xhr.onreadystatechange = function(){
  6979. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6980. // fn.call(this,xhr.responseText);
  6981. // }
  6982. // };
  6983. // xhr.send();
  6984. // }
  6985. /*判断是否是内网IP*/
  6986. // U.MD.D.I.isInnerIPFn = function(str){
  6987. // var curPageUrl = str;
  6988. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6989. // curPageUrl =curPageUrl.replace(reg1,'');
  6990. // // console.log('curPageUrl-1 '+curPageUrl);
  6991. // var reg2 = /\:+/g;//替换冒号为一点
  6992. // curPageUrl =curPageUrl.replace(reg2,'.');
  6993. // // console.log('curPageUrl-2 '+curPageUrl);
  6994. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6995. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6996. // if(curPageUrl[2] != '16'){
  6997. // return ipAddress;
  6998. // }else{
  6999. // return false;
  7000. // }
  7001. // }
  7002. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7003. // //compatibility for firefox and chrome
  7004. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7005. // var pc = new myPeerConnection({
  7006. // iceServers: []
  7007. // }),
  7008. // noop = function() {},
  7009. // localIPs = {},
  7010. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7011. // key;
  7012. // function iterateIP(ip) {
  7013. // if (!localIPs[ip]) onNewIP(ip);
  7014. // localIPs[ip] = true;
  7015. // }
  7016. // //create a bogus data channel
  7017. // pc.createDataChannel("");
  7018. // // create offer and set local description
  7019. // pc.createOffer().then(function(sdp) {
  7020. // sdp.sdp.split('\n').forEach(function(line) {
  7021. // if (line.indexOf('candidate') < 0) return;
  7022. // line.match(ipRegex).forEach(iterateIP);
  7023. // });
  7024. // pc.setLocalDescription(sdp, noop, noop);
  7025. // }).catch(function(reason) {
  7026. // // An error occurred, so handle the failure to connect
  7027. // });
  7028. // //sten for candidate events
  7029. // pc.onicecandidate = function(ice) {
  7030. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7031. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7032. // };
  7033. // }
  7034. // U.MD.D.I.getUserIpBool = function(callback){
  7035. // U.MD.D.I.getUserIP(function(ip){
  7036. // alert("Got IP! :" + ip);
  7037. // });
  7038. //}
  7039. //#endregion
  7040. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7041. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7042. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7043. _userinfo = US.userInfo, //登录用户信息
  7044. _userid = US.userInfo.userid //登录用户id
  7045. let _iframe;
  7046. let _cid = cid,
  7047. _stage = stage,
  7048. _task = task,
  7049. _tool = tool;
  7050. var _jie = $$("div", {
  7051. "style": {
  7052. "position": "absolute",
  7053. "bottom": "50px",
  7054. "right": "50px",
  7055. "zIndex": "9999",
  7056. "backgroundColor": "#2268bc",
  7057. "color": "#fff",
  7058. "padding": "12px 20px",
  7059. "cursor": "pointer",
  7060. "borderRadius": "4px",
  7061. },
  7062. "innerHTML": "提交作业"
  7063. })
  7064. let aTool = ''
  7065. let _loading = document.createElement('div')
  7066. _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;"
  7067. // _loading.id = "";
  7068. let _lchild = document.createElement('div')
  7069. let _limg = document.createElement('img')
  7070. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7071. _limg.style = "width: 26px;margin-right: 10px;"
  7072. _lchild.appendChild(_limg)
  7073. let _lspan = document.createElement('span')
  7074. _lspan.innerHTML = "上传中..."
  7075. _lchild.appendChild(_lspan)
  7076. _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%);"
  7077. _loading.appendChild(_lchild)
  7078. var _box = $$('div', {
  7079. "style": {
  7080. "position": "relative",
  7081. "width": "100%",
  7082. "height": "100%",
  7083. },
  7084. })
  7085. _box.appendChild(_loading)
  7086. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7087. switch (str) {
  7088. case "whiteboard":
  7089. aTool = 1;
  7090. _iframe = $$("iframe", {
  7091. "frameborder": "no",
  7092. "border": "0",
  7093. "scrolling ": "no",
  7094. "style": {
  7095. "cssText": "border:0;width:100%;height:100%"
  7096. },
  7097. "src": "https://beta.iwb.cocorobo.cn/"
  7098. })
  7099. _box.appendChild(_iframe);
  7100. _box.appendChild(_jie);
  7101. _formdiv = new U.UF.UI.form(
  7102. "电子白板",
  7103. _box, {
  7104. "id": "whiteboard" + cid + stage + task + tool,
  7105. "style": {
  7106. "width": "90%",
  7107. "height": "90%",
  7108. "overflow": 'hidden'
  7109. },
  7110. "onresize": function () { }
  7111. }, {
  7112. closecallback: function () { }
  7113. }, {
  7114. "style": {
  7115. "height": "36px"
  7116. }
  7117. }).form; //创建窗体
  7118. _taskbar = {
  7119. "id": str + _formdiv.id,
  7120. "style": {
  7121. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7122. },
  7123. "name": "电子白板",
  7124. "forms": _formdiv,
  7125. "click": function () {
  7126. U.MD.D.I.openApplication(str, obj, info);
  7127. }
  7128. }
  7129. break;
  7130. case "mind":
  7131. aTool = 3;
  7132. _iframe = $$("iframe", {
  7133. "frameborder": "no",
  7134. "border": "0",
  7135. "scrolling ": "no",
  7136. "style": {
  7137. "cssText": "border:0;width:100%;height:100%"
  7138. },
  7139. "src": "/kityminder-editor/dist/index.html"
  7140. })
  7141. _box.appendChild(_iframe);
  7142. _box.appendChild(_jie);
  7143. _formdiv = new U.UF.UI.form(
  7144. "思维导图",
  7145. _box, { //"/jsmind/example/demo.html"
  7146. "id": "mind" + cid + stage + task + tool,
  7147. "style": {
  7148. "width": "90%",
  7149. "height": "90%",
  7150. "overflow": 'hidden'
  7151. },
  7152. "onresize": function () { }
  7153. }, {
  7154. closecallback: function () { }
  7155. }, {
  7156. "style": {
  7157. "height": "36px"
  7158. }
  7159. }).form; //创建窗体
  7160. _taskbar = {
  7161. "id": str + _formdiv.id,
  7162. "style": {
  7163. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7164. },
  7165. "name": "思维导图",
  7166. "forms": _formdiv,
  7167. "click": function () {
  7168. U.MD.D.I.openApplication(str, obj, info);
  7169. }
  7170. }
  7171. break;
  7172. case "MindMap":
  7173. aTool = 3;
  7174. _iframe = $$("iframe", {
  7175. "frameborder": "no",
  7176. "border": "0",
  7177. "scrolling ": "no",
  7178. "style": {
  7179. "cssText": "border:0;width:100%;height:100%"
  7180. },
  7181. "src": "//cloud.cocorobo.cn/mind/"
  7182. })
  7183. _box.appendChild(_iframe);
  7184. _box.appendChild(_jie);
  7185. _formdiv = new U.UF.UI.form(
  7186. "思维导图",
  7187. _box, { //"/jsmind/example/demo.html"
  7188. "id": "mind" + cid + stage + task + tool,
  7189. "style": {
  7190. "width": "90%",
  7191. "height": "90%",
  7192. "overflow": 'hidden'
  7193. },
  7194. "onresize": function () { }
  7195. }, {
  7196. closecallback: function () { }
  7197. }, {
  7198. "style": {
  7199. "height": "36px"
  7200. }
  7201. }).form; //创建窗体
  7202. _taskbar = {
  7203. "id": str + _formdiv.id,
  7204. "style": {
  7205. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7206. },
  7207. "name": "思维导图",
  7208. "forms": _formdiv,
  7209. "click": function () {
  7210. U.MD.D.I.openApplication(str, obj, info);
  7211. }
  7212. }
  7213. break;
  7214. case "doc":
  7215. aTool = 6;
  7216. _iframe = $$("iframe", {
  7217. "frameborder": "no",
  7218. "border": "0",
  7219. "scrolling ": "no",
  7220. "style": {
  7221. "cssText": "border:0;width:100%;height:100%"
  7222. },
  7223. "src": "/Office/Word/WordEditArea.htm"
  7224. })
  7225. _box.appendChild(_iframe);
  7226. _box.appendChild(_jie);
  7227. _formdiv = new U.UF.UI.form(
  7228. "协同文档",
  7229. _box, {
  7230. "id": "doc" + cid + stage + task + tool,
  7231. "style": {
  7232. "width": "90%",
  7233. "height": "90%",
  7234. "overflow": 'hidden'
  7235. },
  7236. "onresize": function () { }
  7237. }, {
  7238. closecallback: function () { }
  7239. }, {
  7240. "style": {
  7241. "height": "36px"
  7242. }
  7243. }).form; //创建窗体
  7244. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7245. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7246. })
  7247. _taskbar = {
  7248. "id": str + _formdiv.id,
  7249. "style": {
  7250. "backgroundImage": "url(/img/icon/doc.png)"
  7251. },
  7252. "name": "协同文档",
  7253. "forms": _formdiv,
  7254. "click": function () {
  7255. U.MD.D.I.openApplication(str, obj, info);
  7256. }
  7257. }
  7258. break;
  7259. case "mindNetwork": //好友打开
  7260. aTool = 7;
  7261. _iframe = $$("iframe", {
  7262. "webkitallowfullscreen": "",
  7263. "mozallowfullscreen": "",
  7264. "allowfullscreen": "",
  7265. "frameborder": "no",
  7266. "border": "0",
  7267. "scrolling ": "no",
  7268. "style": {
  7269. "cssText": "border:0; width:100%; height:100%;"
  7270. },
  7271. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7272. })
  7273. _box.appendChild(_iframe);
  7274. _box.appendChild(_jie);
  7275. _formdiv = new U.UF.UI.form(
  7276. "思维网格",
  7277. _box, {
  7278. "id": "mindNetwork" + cid + stage + task + tool,
  7279. "style": {
  7280. "width": "90%",
  7281. "height": "90%",
  7282. "overflow": 'hidden'
  7283. },
  7284. "onresize": function () { }
  7285. }, {
  7286. closecallback: function () { }
  7287. }, {
  7288. "style": {
  7289. "height": "36px"
  7290. }
  7291. }).form; //创建窗体
  7292. _taskbar = {
  7293. "id": str + _formdiv.id,
  7294. "style": {
  7295. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7296. },
  7297. "name": "思维网格",
  7298. "forms": _formdiv,
  7299. "click": function () {
  7300. U.MD.D.I.openApplication(str, obj, info);
  7301. }
  7302. }
  7303. break;
  7304. case "courseDesign":
  7305. _iframe = $$("iframe", {
  7306. "webkitallowfullscreen": "",
  7307. "mozallowfullscreen": "",
  7308. "allowfullscreen": "",
  7309. "frameborder": "no",
  7310. "border": "0",
  7311. "scrolling ": "no",
  7312. "style": {
  7313. "cssText": "border:0; width:100%; height:100%;"
  7314. },
  7315. "src": "/course-design-vue"
  7316. })
  7317. _box.appendChild(_iframe);
  7318. _box.appendChild(_jie);
  7319. _formdiv = new U.UF.UI.form(
  7320. "项目设计",
  7321. _box, {
  7322. "id": "courseDesign" + cid + stage + task + tool,
  7323. "style": {
  7324. "width": "90%",
  7325. "height": "90%",
  7326. "overflow": 'hidden'
  7327. },
  7328. "onresize": function () { }
  7329. }, {
  7330. closecallback: function () { }
  7331. }, {
  7332. "style": {
  7333. "height": "36px"
  7334. }
  7335. }).form; //创建窗体
  7336. _taskbar = {
  7337. "id": str + _formdiv.id,
  7338. "style": {
  7339. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7340. },
  7341. "name": "项目设计",
  7342. "forms": _formdiv,
  7343. "click": function () {
  7344. U.MD.D.I.openApplication(str, obj, info);
  7345. }
  7346. }
  7347. break;
  7348. }
  7349. const script1 = document.createElement("script");
  7350. script1.type = "text/javascript";
  7351. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7352. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7353. const script2 = document.createElement("script");
  7354. script2.type = "text/javascript";
  7355. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7356. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7357. const script3 = document.createElement("script");
  7358. script3.type = "text/javascript";
  7359. script3.charset = "UTF-8";
  7360. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7361. const script4 = document.createElement("script");
  7362. script4.type = "text/javascript";
  7363. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7364. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7365. if (_iframe) {
  7366. if (str == 'doc') {
  7367. _iframe = _formdiv.querySelector('iframe')
  7368. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7369. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7370. _iframe.contentWindow.document.body.appendChild(script1);
  7371. _iframe.contentWindow.document.body.appendChild(script2);
  7372. // _iframe.contentWindow.document.body.appendChild(script3);
  7373. _iframe.contentWindow.document.body.appendChild(script4);
  7374. })
  7375. if (onloadListener) {
  7376. _iframe.contentDocument.location.reload()
  7377. } else {
  7378. _iframe.contentDocument.location.reload()
  7379. }
  7380. } else if (str == 'courseDesign') {
  7381. U.UF.DL.iframeLoad(_iframe, function () {
  7382. // _iframe.contentWindow.U.MD.O.W.load();
  7383. // _iframe.contentWindow.document.body.appendChild(script1);
  7384. _iframe.contentWindow.document.body.appendChild(script2);
  7385. _iframe.contentWindow.document.body.appendChild(script4);
  7386. })
  7387. } else if (str == 'mind') {
  7388. _iframe = _formdiv.querySelector('iframe')
  7389. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7390. //
  7391. _iframe.contentWindow.document.body.appendChild(script1);
  7392. _iframe.contentWindow.document.body.appendChild(script2);
  7393. _iframe.contentWindow.document.body.appendChild(script4);
  7394. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7395. })
  7396. if (onloadListener) {
  7397. _iframe.contentDocument.location.reload()
  7398. } else {
  7399. _iframe.contentDocument.location.reload()
  7400. }
  7401. } else if (str == 'whiteboard') {
  7402. _iframe = _formdiv.querySelector('iframe')
  7403. let onloadListener = _iframe.onload = () => {
  7404. _iframe.contentWindow.document.body.appendChild(script1);
  7405. _iframe.contentWindow.document.body.appendChild(script2);
  7406. _iframe.contentWindow.document.body.appendChild(script4);
  7407. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7408. };
  7409. // if (onloadListener) {
  7410. // try {
  7411. // _iframe.src += "?cocorobo="+new Date().getTime()
  7412. // _iframe.contentWindow.document.location.reload()
  7413. // } catch (error) {
  7414. // }
  7415. // } else {
  7416. // _iframe.contentDocument.location.reload()
  7417. // }
  7418. } else {
  7419. _iframe.onload = () => {
  7420. _iframe.contentWindow.document.body.appendChild(script1);
  7421. _iframe.contentWindow.document.body.appendChild(script2);
  7422. // _iframe.contentWindow.document.body.appendChild(script3);
  7423. _iframe.contentWindow.document.body.appendChild(script4);
  7424. };
  7425. }
  7426. _jie.onclick = async () => {
  7427. let text = ''
  7428. if (aTool == 1) {
  7429. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7430. } else if (aTool == 6) {
  7431. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7432. } else if (aTool == 3) {
  7433. text = await U.MD.D.I.getEditorContent(_iframe);
  7434. }
  7435. _loading.style.display = 'flex'
  7436. console.log(_loading);
  7437. var _ajs = _iframe.contentWindow.document.createElement("script");
  7438. _ajs.type = "text/javascript";
  7439. _ajs.innerHTML =
  7440. // 'console.log(' + _loading + ');\n' +
  7441. 'var _js = document.createElement("script");\n' +
  7442. '_js.type="text/javascript";\n' +
  7443. '_js.charset="UTF-8";\n' +
  7444. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7445. "_js.onload = function(){\n" +
  7446. ' var a = document.getElementsByTagName("img")\n' +
  7447. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7448. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7449. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7450. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7451. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7452. "beforeUpload_shishi(file," +
  7453. "'" +
  7454. _userid +
  7455. "'" +
  7456. ", " +
  7457. "'" +
  7458. _cid +
  7459. "'" +
  7460. ", " +
  7461. "'" +
  7462. _stage +
  7463. "'" +
  7464. ", " +
  7465. "'" +
  7466. _task +
  7467. "'" +
  7468. ", " +
  7469. "'" +
  7470. _tool +
  7471. "'" +
  7472. ", " +
  7473. "'" +
  7474. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7475. "'" +
  7476. ", " +
  7477. "'" +
  7478. aTool +
  7479. "'" +
  7480. ", " +
  7481. "`" +
  7482. text +
  7483. "`" +
  7484. ")\n" +
  7485. " });\n" +
  7486. "}\n" +
  7487. "document.head.appendChild(_js);\n";
  7488. _iframe.contentWindow.document.head.appendChild(_ajs);
  7489. }
  7490. }
  7491. //U.MD.D.I.openClick(str);
  7492. //如果有任务栏信息
  7493. // if (_taskbar) {
  7494. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7495. // }
  7496. }
  7497. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7498. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7499. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7500. _userinfo = US.userInfo, //登录用户信息
  7501. _userid = US.userInfo.userid //登录用户id
  7502. let _iframe;
  7503. let _cid = cid,
  7504. _stage = stage,
  7505. _task = task,
  7506. _tool = tool;
  7507. var _jie = $$("div", {
  7508. "style": {
  7509. "position": "absolute",
  7510. "bottom": "50px",
  7511. "right": "50px",
  7512. "zIndex": "9999",
  7513. "backgroundColor": "#2268bc",
  7514. "color": "#fff",
  7515. "padding": "12px 20px",
  7516. "cursor": "pointer",
  7517. "borderRadius": "4px",
  7518. },
  7519. "innerHTML": "提交作业"
  7520. })
  7521. let aTool = ''
  7522. let _loading = document.createElement('div')
  7523. _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;"
  7524. // _loading.id = "";
  7525. let _lchild = document.createElement('div')
  7526. let _limg = document.createElement('img')
  7527. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7528. _limg.style = "width: 26px;margin-right: 10px;"
  7529. _lchild.appendChild(_limg)
  7530. let _lspan = document.createElement('span')
  7531. _lspan.innerHTML = "上传中..."
  7532. _lchild.appendChild(_lspan)
  7533. _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%);"
  7534. _loading.appendChild(_lchild)
  7535. let _box = $$('div', {
  7536. "style": {
  7537. "position": "relative",
  7538. "width": "100%",
  7539. "height": "100%",
  7540. },
  7541. })
  7542. _box.appendChild(_loading)
  7543. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7544. switch (str) {
  7545. case "whiteboard":
  7546. aTool = 1;
  7547. _iframe = $$("iframe", {
  7548. "frameborder": "no",
  7549. "border": "0",
  7550. "scrolling ": "no",
  7551. "style": {
  7552. "cssText": "border:0;width:100%;height:100%"
  7553. },
  7554. "src": "https://beta.iwb.cocorobo.cn/"
  7555. })
  7556. _box.appendChild(_iframe);
  7557. _box.appendChild(_jie);
  7558. _formdiv = new U.UF.UI.form(
  7559. "电子白板",
  7560. _box, {
  7561. "id": "whiteboard" + cid + stage + task + tool,
  7562. "style": {
  7563. "width": "90%",
  7564. "height": "90%",
  7565. "overflow": 'hidden'
  7566. },
  7567. "onresize": function () { }
  7568. }, {
  7569. closecallback: function () { }
  7570. }, {
  7571. "style": {
  7572. "height": "36px"
  7573. }
  7574. }).form; //创建窗体
  7575. _taskbar = {
  7576. "id": str + _formdiv.id,
  7577. "style": {
  7578. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7579. },
  7580. "name": "电子白板",
  7581. "forms": _formdiv,
  7582. "click": function () {
  7583. U.MD.D.I.openApplication(str, obj, info);
  7584. }
  7585. }
  7586. break;
  7587. case "mind":
  7588. aTool = 3;
  7589. _iframe = $$("iframe", {
  7590. "frameborder": "no",
  7591. "border": "0",
  7592. "scrolling ": "no",
  7593. "style": {
  7594. "cssText": "border:0;width:100%;height:100%"
  7595. },
  7596. "src": "/kityminder-editor/dist/index.html"
  7597. })
  7598. _box.appendChild(_iframe);
  7599. _box.appendChild(_jie);
  7600. _formdiv = new U.UF.UI.form(
  7601. "思维导图",
  7602. _box, { //"/jsmind/example/demo.html"
  7603. "id": "mind" + cid + stage + task + tool,
  7604. "style": {
  7605. "width": "90%",
  7606. "height": "90%",
  7607. "overflow": 'hidden'
  7608. },
  7609. "onresize": function () { }
  7610. }, {
  7611. closecallback: function () { }
  7612. }, {
  7613. "style": {
  7614. "height": "36px"
  7615. }
  7616. }).form; //创建窗体
  7617. _taskbar = {
  7618. "id": str + _formdiv.id,
  7619. "style": {
  7620. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7621. },
  7622. "name": "思维导图",
  7623. "forms": _formdiv,
  7624. "click": function () {
  7625. U.MD.D.I.openApplication(str, obj, info);
  7626. }
  7627. }
  7628. break;
  7629. case "MindMap":
  7630. aTool = 3;
  7631. _iframe = $$("iframe", {
  7632. "frameborder": "no",
  7633. "border": "0",
  7634. "scrolling ": "no",
  7635. "style": {
  7636. "cssText": "border:0;width:100%;height:100%"
  7637. },
  7638. "src": "//cloud.cocorobo.cn/mind/"
  7639. })
  7640. _box.appendChild(_iframe);
  7641. _box.appendChild(_jie);
  7642. _formdiv = new U.UF.UI.form(
  7643. "思维导图",
  7644. _box, { //"/jsmind/example/demo.html"
  7645. "id": "mind" + cid + stage + task + tool,
  7646. "style": {
  7647. "width": "90%",
  7648. "height": "90%",
  7649. "overflow": 'hidden'
  7650. },
  7651. "onresize": function () { }
  7652. }, {
  7653. closecallback: function () { }
  7654. }, {
  7655. "style": {
  7656. "height": "36px"
  7657. }
  7658. }).form; //创建窗体
  7659. _taskbar = {
  7660. "id": str + _formdiv.id,
  7661. "style": {
  7662. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7663. },
  7664. "name": "思维导图",
  7665. "forms": _formdiv,
  7666. "click": function () {
  7667. U.MD.D.I.openApplication(str, obj, info);
  7668. }
  7669. }
  7670. break;
  7671. case "doc":
  7672. aTool = 6;
  7673. _iframe = $$("iframe", {
  7674. "frameborder": "no",
  7675. "border": "0",
  7676. "scrolling ": "no",
  7677. "style": {
  7678. "cssText": "border:0;width:100%;height:100%"
  7679. },
  7680. "src": "/Office/Word/WordEditArea.htm"
  7681. })
  7682. _box.appendChild(_iframe);
  7683. _box.appendChild(_jie);
  7684. _formdiv = new U.UF.UI.form(
  7685. "协同文档",
  7686. _box, {
  7687. "id": "doc" + cid + stage + task + tool,
  7688. "style": {
  7689. "width": "90%",
  7690. "height": "90%",
  7691. "overflow": 'hidden'
  7692. },
  7693. "onresize": function () { }
  7694. }, {
  7695. closecallback: function () { }
  7696. }, {
  7697. "style": {
  7698. "height": "36px"
  7699. }
  7700. }).form; //创建窗体
  7701. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7702. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7703. })
  7704. _taskbar = {
  7705. "id": str + _formdiv.id,
  7706. "style": {
  7707. "backgroundImage": "url(/img/icon/doc.png)"
  7708. },
  7709. "name": "协同文档",
  7710. "forms": _formdiv,
  7711. "click": function () {
  7712. U.MD.D.I.openApplication(str, obj, info);
  7713. }
  7714. }
  7715. break;
  7716. case "mindNetwork": //好友打开
  7717. aTool = 7;
  7718. _iframe = $$("iframe", {
  7719. "webkitallowfullscreen": "",
  7720. "mozallowfullscreen": "",
  7721. "allowfullscreen": "",
  7722. "frameborder": "no",
  7723. "border": "0",
  7724. "scrolling ": "no",
  7725. "style": {
  7726. "cssText": "border:0; width:100%; height:100%;"
  7727. },
  7728. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7729. })
  7730. _box.appendChild(_iframe);
  7731. _box.appendChild(_jie);
  7732. _formdiv = new U.UF.UI.form(
  7733. "思维网格",
  7734. _box, {
  7735. "id": "mindNetwork" + cid + stage + task + tool,
  7736. "style": {
  7737. "width": "90%",
  7738. "height": "90%",
  7739. "overflow": 'hidden'
  7740. },
  7741. "onresize": function () { }
  7742. }, {
  7743. closecallback: function () { }
  7744. }, {
  7745. "style": {
  7746. "height": "36px"
  7747. }
  7748. }).form; //创建窗体
  7749. _taskbar = {
  7750. "id": str + _formdiv.id,
  7751. "style": {
  7752. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7753. },
  7754. "name": "思维网格",
  7755. "forms": _formdiv,
  7756. "click": function () {
  7757. U.MD.D.I.openApplication(str, obj, info);
  7758. }
  7759. }
  7760. break;
  7761. case "courseDesign":
  7762. _iframe = $$("iframe", {
  7763. "webkitallowfullscreen": "",
  7764. "mozallowfullscreen": "",
  7765. "allowfullscreen": "",
  7766. "frameborder": "no",
  7767. "border": "0",
  7768. "scrolling ": "no",
  7769. "style": {
  7770. "cssText": "border:0; width:100%; height:100%;"
  7771. },
  7772. "src": "/course-design-vue"
  7773. })
  7774. _box.appendChild(_iframe);
  7775. _box.appendChild(_jie);
  7776. _formdiv = new U.UF.UI.form(
  7777. "项目设计",
  7778. _box, {
  7779. "id": "courseDesign" + cid + stage + task + tool,
  7780. "style": {
  7781. "width": "90%",
  7782. "height": "90%",
  7783. "overflow": 'hidden'
  7784. },
  7785. "onresize": function () { }
  7786. }, {
  7787. closecallback: function () { }
  7788. }, {
  7789. "style": {
  7790. "height": "36px"
  7791. }
  7792. }).form; //创建窗体
  7793. _taskbar = {
  7794. "id": str + _formdiv.id,
  7795. "style": {
  7796. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7797. },
  7798. "name": "项目设计",
  7799. "forms": _formdiv,
  7800. "click": function () {
  7801. U.MD.D.I.openApplication(str, obj, info);
  7802. }
  7803. }
  7804. break;
  7805. }
  7806. const script1 = document.createElement("script");
  7807. script1.type = "text/javascript";
  7808. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7809. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7810. const script2 = document.createElement("script");
  7811. script2.type = "text/javascript";
  7812. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7813. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7814. const script3 = document.createElement("script");
  7815. script3.type = "text/javascript";
  7816. script3.charset = "UTF-8";
  7817. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7818. const script4 = document.createElement("script");
  7819. script4.type = "text/javascript";
  7820. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7821. script4.src = window.origin + "/js/Common/jietu2E.js";
  7822. if (_iframe) {
  7823. if (str == 'doc') {
  7824. _iframe = _formdiv.querySelector('iframe')
  7825. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7826. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7827. _iframe.contentWindow.document.body.appendChild(script1);
  7828. _iframe.contentWindow.document.body.appendChild(script2);
  7829. // _iframe.contentWindow.document.body.appendChild(script3);
  7830. _iframe.contentWindow.document.body.appendChild(script4);
  7831. })
  7832. if (onloadListener) {
  7833. _iframe.contentDocument.location.reload()
  7834. } else {
  7835. _iframe.contentDocument.location.reload()
  7836. }
  7837. } else if (str == 'courseDesign') {
  7838. U.UF.DL.iframeLoad(_iframe, function () {
  7839. // _iframe.contentWindow.U.MD.O.W.load();
  7840. // _iframe.contentWindow.document.body.appendChild(script1);
  7841. _iframe.contentWindow.document.body.appendChild(script2);
  7842. _iframe.contentWindow.document.body.appendChild(script4);
  7843. })
  7844. } else if (str == 'mind') {
  7845. _iframe = _formdiv.querySelector('iframe')
  7846. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7847. //
  7848. _iframe.contentWindow.document.body.appendChild(script1);
  7849. _iframe.contentWindow.document.body.appendChild(script2);
  7850. _iframe.contentWindow.document.body.appendChild(script4);
  7851. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7852. })
  7853. if (onloadListener) {
  7854. _iframe.contentDocument.location.reload()
  7855. } else {
  7856. _iframe.contentDocument.location.reload()
  7857. }
  7858. } else if (str == 'whiteboard') {
  7859. _iframe = _formdiv.querySelector('iframe')
  7860. let onloadListener = _iframe.onload = () => {
  7861. _iframe.contentWindow.document.body.appendChild(script1);
  7862. _iframe.contentWindow.document.body.appendChild(script2);
  7863. _iframe.contentWindow.document.body.appendChild(script4);
  7864. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7865. };
  7866. // if (onloadListener) {
  7867. // try {
  7868. // _iframe.src += "?cocorobo="+new Date().getTime()
  7869. // _iframe.contentWindow.document.location.reload()
  7870. // } catch (error) {
  7871. // }
  7872. // } else {
  7873. // _iframe.contentDocument.location.reload()
  7874. // }
  7875. } else {
  7876. _iframe.onload = () => {
  7877. _iframe.contentWindow.document.body.appendChild(script1);
  7878. _iframe.contentWindow.document.body.appendChild(script2);
  7879. // _iframe.contentWindow.document.body.appendChild(script3);
  7880. _iframe.contentWindow.document.body.appendChild(script4);
  7881. };
  7882. }
  7883. _jie.onclick = async () => {
  7884. let text = ''
  7885. if (aTool == 1) {
  7886. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7887. } else if (aTool == 6) {
  7888. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7889. } else if (aTool == 3) {
  7890. text = await U.MD.D.I.getEditorContent(_iframe);
  7891. }
  7892. _loading.style.display = 'flex'
  7893. console.log(_loading);
  7894. var _ajs = _iframe.contentWindow.document.createElement("script");
  7895. _ajs.type = "text/javascript";
  7896. _ajs.innerHTML =
  7897. // 'console.log(' + _loading + ');\n' +
  7898. 'var _js = document.createElement("script");\n' +
  7899. '_js.type="text/javascript";\n' +
  7900. '_js.charset="UTF-8";\n' +
  7901. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7902. "_js.onload = function(){\n" +
  7903. ' var a = document.getElementsByTagName("img")\n' +
  7904. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7905. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7906. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7907. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7908. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7909. "beforeUpload_shishi(file," +
  7910. "'" +
  7911. _userid +
  7912. "'" +
  7913. ", " +
  7914. "'" +
  7915. _cid +
  7916. "'" +
  7917. ", " +
  7918. "'" +
  7919. _stage +
  7920. "'" +
  7921. ", " +
  7922. "'" +
  7923. _task +
  7924. "'" +
  7925. ", " +
  7926. "'" +
  7927. _tool +
  7928. "'" +
  7929. ", " +
  7930. "'" +
  7931. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7932. "'" +
  7933. ", " +
  7934. "'" +
  7935. aTool +
  7936. "'" +
  7937. ", " +
  7938. "`" +
  7939. text +
  7940. "`" +
  7941. ")\n" +
  7942. " });\n" +
  7943. "}\n" +
  7944. "document.head.appendChild(_js);\n";
  7945. _iframe.contentWindow.document.head.appendChild(_ajs);
  7946. }
  7947. }
  7948. //U.MD.D.I.openClick(str);
  7949. //如果有任务栏信息
  7950. // if (_taskbar) {
  7951. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7952. // }
  7953. }
  7954. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7955. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7956. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7957. _userid = student.userid, //登录用户id
  7958. _username = student.student //用户名字
  7959. let _iframe;
  7960. let _cid = cid,
  7961. _stage = stage,
  7962. _task = task,
  7963. _tool = tool;
  7964. var _jie = $$("div", {
  7965. "style": {
  7966. "position": "absolute",
  7967. "bottom": "50px",
  7968. "right": "50px",
  7969. "zIndex": "9999",
  7970. "backgroundColor": "#2268bc",
  7971. "color": "#fff",
  7972. "padding": "12px 20px",
  7973. "cursor": "pointer",
  7974. "borderRadius": "4px",
  7975. },
  7976. "innerHTML": "提交作业"
  7977. })
  7978. let aTool = ''
  7979. let _loading = document.createElement('div')
  7980. _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;"
  7981. // _loading.id = "";
  7982. let _lchild = document.createElement('div')
  7983. let _limg = document.createElement('img')
  7984. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7985. _limg.style = "width: 26px;margin-right: 10px;"
  7986. _lchild.appendChild(_limg)
  7987. let _lspan = document.createElement('span')
  7988. _lspan.innerHTML = "上传中..."
  7989. _lchild.appendChild(_lspan)
  7990. _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%);"
  7991. _loading.appendChild(_lchild)
  7992. var _box = $$('div', {
  7993. "style": {
  7994. "position": "relative",
  7995. "width": "100%",
  7996. "height": "100%",
  7997. },
  7998. })
  7999. _box.appendChild(_loading)
  8000. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8001. switch (str) {
  8002. case "whiteboard":
  8003. aTool = 1;
  8004. _iframe = $$("iframe", {
  8005. "frameborder": "no",
  8006. "border": "0",
  8007. "scrolling ": "no",
  8008. "style": {
  8009. "cssText": "border:0;width:100%;height:100%"
  8010. },
  8011. "src": "https://beta.iwb.cocorobo.cn/"
  8012. })
  8013. _box.appendChild(_iframe);
  8014. _box.appendChild(_jie);
  8015. _formdiv = new U.UF.UI.form(
  8016. "电子白板-" + _username,
  8017. _box, {
  8018. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8019. "style": {
  8020. "width": "90%",
  8021. "height": "90%",
  8022. "overflow": 'hidden'
  8023. },
  8024. "onresize": function () { }
  8025. }, {
  8026. closecallback: function () { }
  8027. }, {
  8028. "style": {
  8029. "height": "36px"
  8030. }
  8031. }).form; //创建窗体
  8032. _taskbar = {
  8033. "id": str + _formdiv.id,
  8034. "style": {
  8035. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8036. },
  8037. "name": "电子白板",
  8038. "forms": _formdiv,
  8039. "click": function () {
  8040. U.MD.D.I.openApplication(str, obj, info);
  8041. }
  8042. }
  8043. break;
  8044. case "mind":
  8045. aTool = 3;
  8046. _iframe = $$("iframe", {
  8047. "frameborder": "no",
  8048. "border": "0",
  8049. "scrolling ": "no",
  8050. "style": {
  8051. "cssText": "border:0;width:100%;height:100%"
  8052. },
  8053. "src": "/kityminder-editor/dist/index.html"
  8054. })
  8055. _box.appendChild(_iframe);
  8056. _box.appendChild(_jie);
  8057. _formdiv = new U.UF.UI.form(
  8058. "思维导图-" + _username,
  8059. _box, { //"/jsmind/example/demo.html"
  8060. "id": "mind" + cid + stage + task + tool + _userid,
  8061. "style": {
  8062. "width": "90%",
  8063. "height": "90%",
  8064. "overflow": 'hidden'
  8065. },
  8066. "onresize": function () { }
  8067. }, {
  8068. closecallback: function () { }
  8069. }, {
  8070. "style": {
  8071. "height": "36px"
  8072. }
  8073. }).form; //创建窗体
  8074. _taskbar = {
  8075. "id": str + _formdiv.id,
  8076. "style": {
  8077. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8078. },
  8079. "name": "思维导图",
  8080. "forms": _formdiv,
  8081. "click": function () {
  8082. U.MD.D.I.openApplication(str, obj, info);
  8083. }
  8084. }
  8085. break;
  8086. case "MindMap":
  8087. aTool = 3;
  8088. _iframe = $$("iframe", {
  8089. "frameborder": "no",
  8090. "border": "0",
  8091. "scrolling ": "no",
  8092. "style": {
  8093. "cssText": "border:0;width:100%;height:100%"
  8094. },
  8095. "src": "//cloud.cocorobo.cn/mind/"
  8096. })
  8097. _box.appendChild(_iframe);
  8098. _box.appendChild(_jie);
  8099. _formdiv = new U.UF.UI.form(
  8100. "思维导图-" + _username,
  8101. _box, { //"/jsmind/example/demo.html"
  8102. "id": "mind" + cid + stage + task + tool + _userid,
  8103. "style": {
  8104. "width": "90%",
  8105. "height": "90%",
  8106. "overflow": 'hidden'
  8107. },
  8108. "onresize": function () { }
  8109. }, {
  8110. closecallback: function () { }
  8111. }, {
  8112. "style": {
  8113. "height": "36px"
  8114. }
  8115. }).form; //创建窗体
  8116. _taskbar = {
  8117. "id": str + _formdiv.id,
  8118. "style": {
  8119. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8120. },
  8121. "name": "思维导图",
  8122. "forms": _formdiv,
  8123. "click": function () {
  8124. U.MD.D.I.openApplication(str, obj, info);
  8125. }
  8126. }
  8127. break;
  8128. case "doc":
  8129. aTool = 6;
  8130. _iframe = $$("iframe", {
  8131. "frameborder": "no",
  8132. "border": "0",
  8133. "scrolling ": "no",
  8134. "style": {
  8135. "cssText": "border:0;width:100%;height:100%"
  8136. },
  8137. "src": "/Office/Word/WordEditArea.htm"
  8138. })
  8139. _box.appendChild(_iframe);
  8140. _box.appendChild(_jie);
  8141. _formdiv = new U.UF.UI.form(
  8142. "协同文档-" + _username,
  8143. _box, {
  8144. "id": "doc" + cid + stage + task + tool + _userid,
  8145. "style": {
  8146. "width": "90%",
  8147. "height": "90%",
  8148. "overflow": 'hidden'
  8149. },
  8150. "onresize": function () { }
  8151. }, {
  8152. closecallback: function () { }
  8153. }, {
  8154. "style": {
  8155. "height": "36px"
  8156. }
  8157. }).form; //创建窗体
  8158. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8159. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8160. })
  8161. _taskbar = {
  8162. "id": str + _formdiv.id,
  8163. "style": {
  8164. "backgroundImage": "url(/img/icon/doc.png)"
  8165. },
  8166. "name": "协同文档",
  8167. "forms": _formdiv,
  8168. "click": function () {
  8169. U.MD.D.I.openApplication(str, obj, info);
  8170. }
  8171. }
  8172. break;
  8173. case "mindNetwork": //好友打开
  8174. aTool = 7;
  8175. _iframe = $$("iframe", {
  8176. "webkitallowfullscreen": "",
  8177. "mozallowfullscreen": "",
  8178. "allowfullscreen": "",
  8179. "frameborder": "no",
  8180. "border": "0",
  8181. "scrolling ": "no",
  8182. "style": {
  8183. "cssText": "border:0; width:100%; height:100%;"
  8184. },
  8185. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8186. })
  8187. _box.appendChild(_iframe);
  8188. _box.appendChild(_jie);
  8189. _formdiv = new U.UF.UI.form(
  8190. "思维网格-" + _username,
  8191. _box, {
  8192. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8193. "style": {
  8194. "width": "90%",
  8195. "height": "90%",
  8196. "overflow": 'hidden'
  8197. },
  8198. "onresize": function () { }
  8199. }, {
  8200. closecallback: function () { }
  8201. }, {
  8202. "style": {
  8203. "height": "36px"
  8204. }
  8205. }).form; //创建窗体
  8206. _taskbar = {
  8207. "id": str + _formdiv.id,
  8208. "style": {
  8209. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8210. },
  8211. "name": "思维网格",
  8212. "forms": _formdiv,
  8213. "click": function () {
  8214. U.MD.D.I.openApplication(str, obj, info);
  8215. }
  8216. }
  8217. break;
  8218. case "courseDesign":
  8219. _iframe = $$("iframe", {
  8220. "webkitallowfullscreen": "",
  8221. "mozallowfullscreen": "",
  8222. "allowfullscreen": "",
  8223. "frameborder": "no",
  8224. "border": "0",
  8225. "scrolling ": "no",
  8226. "style": {
  8227. "cssText": "border:0; width:100%; height:100%;"
  8228. },
  8229. "src": "/course-design-vue"
  8230. })
  8231. _box.appendChild(_iframe);
  8232. _box.appendChild(_jie);
  8233. _formdiv = new U.UF.UI.form(
  8234. "项目设计-" + _username,
  8235. _box, {
  8236. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8237. "style": {
  8238. "width": "90%",
  8239. "height": "90%",
  8240. "overflow": 'hidden'
  8241. },
  8242. "onresize": function () { }
  8243. }, {
  8244. closecallback: function () { }
  8245. }, {
  8246. "style": {
  8247. "height": "36px"
  8248. }
  8249. }).form; //创建窗体
  8250. _taskbar = {
  8251. "id": str + _formdiv.id,
  8252. "style": {
  8253. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8254. },
  8255. "name": "项目设计",
  8256. "forms": _formdiv,
  8257. "click": function () {
  8258. U.MD.D.I.openApplication(str, obj, info);
  8259. }
  8260. }
  8261. break;
  8262. }
  8263. const script1 = document.createElement("script");
  8264. script1.type = "text/javascript";
  8265. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8266. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8267. const script2 = document.createElement("script");
  8268. script2.type = "text/javascript";
  8269. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8270. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8271. const script3 = document.createElement("script");
  8272. script3.type = "text/javascript";
  8273. script3.charset = "UTF-8";
  8274. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8275. const script4 = document.createElement("script");
  8276. script4.type = "text/javascript";
  8277. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8278. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8279. if (_iframe) {
  8280. if (str == 'doc') {
  8281. _iframe = _formdiv.querySelector('iframe')
  8282. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8283. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8284. _iframe.contentWindow.document.body.appendChild(script1);
  8285. _iframe.contentWindow.document.body.appendChild(script2);
  8286. // _iframe.contentWindow.document.body.appendChild(script3);
  8287. _iframe.contentWindow.document.body.appendChild(script4);
  8288. })
  8289. if (onloadListener) {
  8290. _iframe.contentDocument.location.reload()
  8291. } else {
  8292. _iframe.contentDocument.location.reload()
  8293. }
  8294. } else if (str == 'courseDesign') {
  8295. U.UF.DL.iframeLoad(_iframe, function () {
  8296. // _iframe.contentWindow.U.MD.O.W.load();
  8297. // _iframe.contentWindow.document.body.appendChild(script1);
  8298. _iframe.contentWindow.document.body.appendChild(script2);
  8299. _iframe.contentWindow.document.body.appendChild(script4);
  8300. })
  8301. } else if (str == 'mind') {
  8302. _iframe = _formdiv.querySelector('iframe')
  8303. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8304. //
  8305. _iframe.contentWindow.document.body.appendChild(script1);
  8306. _iframe.contentWindow.document.body.appendChild(script2);
  8307. _iframe.contentWindow.document.body.appendChild(script4);
  8308. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8309. })
  8310. if (onloadListener) {
  8311. _iframe.contentDocument.location.reload()
  8312. } else {
  8313. _iframe.contentDocument.location.reload()
  8314. }
  8315. } else if (str == 'whiteboard') {
  8316. _iframe = _formdiv.querySelector('iframe')
  8317. let onloadListener = _iframe.onload = () => {
  8318. _iframe.contentWindow.document.body.appendChild(script1);
  8319. _iframe.contentWindow.document.body.appendChild(script2);
  8320. _iframe.contentWindow.document.body.appendChild(script4);
  8321. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8322. };
  8323. // if (onloadListener) {
  8324. // try {
  8325. // _iframe.src += "?cocorobo="+new Date().getTime()
  8326. // _iframe.contentWindow.document.location.reload()
  8327. // } catch (error) {
  8328. // }
  8329. // } else {
  8330. // _iframe.contentDocument.location.reload()
  8331. // }
  8332. } else {
  8333. _iframe.onload = () => {
  8334. _iframe.contentWindow.document.body.appendChild(script1);
  8335. _iframe.contentWindow.document.body.appendChild(script2);
  8336. // _iframe.contentWindow.document.body.appendChild(script3);
  8337. _iframe.contentWindow.document.body.appendChild(script4);
  8338. };
  8339. }
  8340. _jie.onclick = async () => {
  8341. let text = ''
  8342. if (aTool == 1) {
  8343. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8344. } else if (aTool == 6) {
  8345. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8346. } else if (aTool == 3) {
  8347. text = await U.MD.D.I.getEditorContent(_iframe);
  8348. }
  8349. _loading.style.display = 'flex'
  8350. console.log(_loading);
  8351. var _ajs = _iframe.contentWindow.document.createElement("script");
  8352. _ajs.type = "text/javascript";
  8353. _ajs.innerHTML =
  8354. // 'console.log(' + _loading + ');\n' +
  8355. 'var _js = document.createElement("script");\n' +
  8356. '_js.type="text/javascript";\n' +
  8357. '_js.charset="UTF-8";\n' +
  8358. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8359. "_js.onload = function(){\n" +
  8360. ' var a = document.getElementsByTagName("img")\n' +
  8361. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8362. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8363. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8364. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8365. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8366. "beforeUpload_shishi(file," +
  8367. "'" +
  8368. _userid +
  8369. "'" +
  8370. ", " +
  8371. "'" +
  8372. _cid +
  8373. "'" +
  8374. ", " +
  8375. "'" +
  8376. _stage +
  8377. "'" +
  8378. ", " +
  8379. "'" +
  8380. _task +
  8381. "'" +
  8382. ", " +
  8383. "'" +
  8384. _tool +
  8385. "'" +
  8386. ", " +
  8387. "'" +
  8388. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8389. "'" +
  8390. ", " +
  8391. "'" +
  8392. aTool +
  8393. "'" +
  8394. ", " +
  8395. "`" +
  8396. text +
  8397. "`" +
  8398. ")\n" +
  8399. " });\n" +
  8400. "}\n" +
  8401. "document.head.appendChild(_js);\n";
  8402. _iframe.contentWindow.document.head.appendChild(_ajs);
  8403. }
  8404. }
  8405. }
  8406. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8407. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8408. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8409. _userid = student.userid, //登录用户id
  8410. _username = student.student //用户名字
  8411. let _iframe;
  8412. let _cid = cid,
  8413. _stage = stage,
  8414. _task = task,
  8415. _tool = tool;
  8416. var _jie = $$("div", {
  8417. "style": {
  8418. "position": "absolute",
  8419. "bottom": "50px",
  8420. "right": "50px",
  8421. "zIndex": "9999",
  8422. "backgroundColor": "#2268bc",
  8423. "color": "#fff",
  8424. "padding": "12px 20px",
  8425. "cursor": "pointer",
  8426. "borderRadius": "4px",
  8427. },
  8428. "innerHTML": "提交作业"
  8429. })
  8430. let aTool = ''
  8431. let _loading = document.createElement('div')
  8432. _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;"
  8433. // _loading.id = "";
  8434. let _lchild = document.createElement('div')
  8435. let _limg = document.createElement('img')
  8436. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8437. _limg.style = "width: 26px;margin-right: 10px;"
  8438. _lchild.appendChild(_limg)
  8439. let _lspan = document.createElement('span')
  8440. _lspan.innerHTML = "上传中..."
  8441. _lchild.appendChild(_lspan)
  8442. _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%);"
  8443. _loading.appendChild(_lchild)
  8444. var _box = $$('div', {
  8445. "style": {
  8446. "position": "relative",
  8447. "width": "100%",
  8448. "height": "100%",
  8449. },
  8450. })
  8451. _box.appendChild(_loading)
  8452. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8453. switch (str) {
  8454. case "whiteboard":
  8455. aTool = 1;
  8456. _iframe = $$("iframe", {
  8457. "frameborder": "no",
  8458. "border": "0",
  8459. "scrolling ": "no",
  8460. "style": {
  8461. "cssText": "border:0;width:100%;height:100%"
  8462. },
  8463. "src": "https://beta.iwb.cocorobo.cn/"
  8464. })
  8465. _box.appendChild(_iframe);
  8466. _box.appendChild(_jie);
  8467. _formdiv = new U.UF.UI.form(
  8468. "电子白板-" + _username,
  8469. _box, {
  8470. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8471. "style": {
  8472. "width": "90%",
  8473. "height": "90%",
  8474. "overflow": 'hidden'
  8475. },
  8476. "onresize": function () { }
  8477. }, {
  8478. closecallback: function () { }
  8479. }, {
  8480. "style": {
  8481. "height": "36px"
  8482. }
  8483. }).form; //创建窗体
  8484. _taskbar = {
  8485. "id": str + _formdiv.id,
  8486. "style": {
  8487. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8488. },
  8489. "name": "电子白板",
  8490. "forms": _formdiv,
  8491. "click": function () {
  8492. U.MD.D.I.openApplication(str, obj, info);
  8493. }
  8494. }
  8495. break;
  8496. case "mind":
  8497. aTool = 3;
  8498. _iframe = $$("iframe", {
  8499. "frameborder": "no",
  8500. "border": "0",
  8501. "scrolling ": "no",
  8502. "style": {
  8503. "cssText": "border:0;width:100%;height:100%"
  8504. },
  8505. "src": "/kityminder-editor/dist/index.html"
  8506. })
  8507. _box.appendChild(_iframe);
  8508. _box.appendChild(_jie);
  8509. _formdiv = new U.UF.UI.form(
  8510. "思维导图-" + _username,
  8511. _box, { //"/jsmind/example/demo.html"
  8512. "id": "mind" + cid + stage + task + tool + _userid,
  8513. "style": {
  8514. "width": "90%",
  8515. "height": "90%",
  8516. "overflow": 'hidden'
  8517. },
  8518. "onresize": function () { }
  8519. }, {
  8520. closecallback: function () { }
  8521. }, {
  8522. "style": {
  8523. "height": "36px"
  8524. }
  8525. }).form; //创建窗体
  8526. _taskbar = {
  8527. "id": str + _formdiv.id,
  8528. "style": {
  8529. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8530. },
  8531. "name": "思维导图",
  8532. "forms": _formdiv,
  8533. "click": function () {
  8534. U.MD.D.I.openApplication(str, obj, info);
  8535. }
  8536. }
  8537. break;
  8538. case "MindMap":
  8539. aTool = 3;
  8540. _iframe = $$("iframe", {
  8541. "frameborder": "no",
  8542. "border": "0",
  8543. "scrolling ": "no",
  8544. "style": {
  8545. "cssText": "border:0;width:100%;height:100%"
  8546. },
  8547. "src": "//cloud.cocorobo.cn/mind/"
  8548. })
  8549. _box.appendChild(_iframe);
  8550. _box.appendChild(_jie);
  8551. _formdiv = new U.UF.UI.form(
  8552. "思维导图-" + _username,
  8553. _box, { //"/jsmind/example/demo.html"
  8554. "id": "mind" + cid + stage + task + tool + _userid,
  8555. "style": {
  8556. "width": "90%",
  8557. "height": "90%",
  8558. "overflow": 'hidden'
  8559. },
  8560. "onresize": function () { }
  8561. }, {
  8562. closecallback: function () { }
  8563. }, {
  8564. "style": {
  8565. "height": "36px"
  8566. }
  8567. }).form; //创建窗体
  8568. _taskbar = {
  8569. "id": str + _formdiv.id,
  8570. "style": {
  8571. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8572. },
  8573. "name": "思维导图",
  8574. "forms": _formdiv,
  8575. "click": function () {
  8576. U.MD.D.I.openApplication(str, obj, info);
  8577. }
  8578. }
  8579. break;
  8580. case "doc":
  8581. aTool = 6;
  8582. _iframe = $$("iframe", {
  8583. "frameborder": "no",
  8584. "border": "0",
  8585. "scrolling ": "no",
  8586. "style": {
  8587. "cssText": "border:0;width:100%;height:100%"
  8588. },
  8589. "src": "/Office/Word/WordEditArea.htm"
  8590. })
  8591. _box.appendChild(_iframe);
  8592. _box.appendChild(_jie);
  8593. _formdiv = new U.UF.UI.form(
  8594. "协同文档-" + _username,
  8595. _box, {
  8596. "id": "doc" + cid + stage + task + tool + _userid,
  8597. "style": {
  8598. "width": "90%",
  8599. "height": "90%",
  8600. "overflow": 'hidden'
  8601. },
  8602. "onresize": function () { }
  8603. }, {
  8604. closecallback: function () { }
  8605. }, {
  8606. "style": {
  8607. "height": "36px"
  8608. }
  8609. }).form; //创建窗体
  8610. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8611. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8612. })
  8613. _taskbar = {
  8614. "id": str + _formdiv.id,
  8615. "style": {
  8616. "backgroundImage": "url(/img/icon/doc.png)"
  8617. },
  8618. "name": "协同文档",
  8619. "forms": _formdiv,
  8620. "click": function () {
  8621. U.MD.D.I.openApplication(str, obj, info);
  8622. }
  8623. }
  8624. break;
  8625. case "mindNetwork": //好友打开
  8626. aTool = 7;
  8627. _iframe = $$("iframe", {
  8628. "webkitallowfullscreen": "",
  8629. "mozallowfullscreen": "",
  8630. "allowfullscreen": "",
  8631. "frameborder": "no",
  8632. "border": "0",
  8633. "scrolling ": "no",
  8634. "style": {
  8635. "cssText": "border:0; width:100%; height:100%;"
  8636. },
  8637. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8638. })
  8639. _box.appendChild(_iframe);
  8640. _box.appendChild(_jie);
  8641. _formdiv = new U.UF.UI.form(
  8642. "思维网格-" + _username,
  8643. _box, {
  8644. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8645. "style": {
  8646. "width": "90%",
  8647. "height": "90%",
  8648. "overflow": 'hidden'
  8649. },
  8650. "onresize": function () { }
  8651. }, {
  8652. closecallback: function () { }
  8653. }, {
  8654. "style": {
  8655. "height": "36px"
  8656. }
  8657. }).form; //创建窗体
  8658. _taskbar = {
  8659. "id": str + _formdiv.id,
  8660. "style": {
  8661. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8662. },
  8663. "name": "思维网格",
  8664. "forms": _formdiv,
  8665. "click": function () {
  8666. U.MD.D.I.openApplication(str, obj, info);
  8667. }
  8668. }
  8669. break;
  8670. case "courseDesign":
  8671. _iframe = $$("iframe", {
  8672. "webkitallowfullscreen": "",
  8673. "mozallowfullscreen": "",
  8674. "allowfullscreen": "",
  8675. "frameborder": "no",
  8676. "border": "0",
  8677. "scrolling ": "no",
  8678. "style": {
  8679. "cssText": "border:0; width:100%; height:100%;"
  8680. },
  8681. "src": "/course-design-vue"
  8682. })
  8683. _box.appendChild(_iframe);
  8684. _box.appendChild(_jie);
  8685. _formdiv = new U.UF.UI.form(
  8686. "项目设计-" + _username,
  8687. _box, {
  8688. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8689. "style": {
  8690. "width": "90%",
  8691. "height": "90%",
  8692. "overflow": 'hidden'
  8693. },
  8694. "onresize": function () { }
  8695. }, {
  8696. closecallback: function () { }
  8697. }, {
  8698. "style": {
  8699. "height": "36px"
  8700. }
  8701. }).form; //创建窗体
  8702. _taskbar = {
  8703. "id": str + _formdiv.id,
  8704. "style": {
  8705. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8706. },
  8707. "name": "项目设计",
  8708. "forms": _formdiv,
  8709. "click": function () {
  8710. U.MD.D.I.openApplication(str, obj, info);
  8711. }
  8712. }
  8713. break;
  8714. }
  8715. const script1 = document.createElement("script");
  8716. script1.type = "text/javascript";
  8717. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8718. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8719. const script2 = document.createElement("script");
  8720. script2.type = "text/javascript";
  8721. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8722. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8723. const script3 = document.createElement("script");
  8724. script3.type = "text/javascript";
  8725. script3.charset = "UTF-8";
  8726. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8727. const script4 = document.createElement("script");
  8728. script4.type = "text/javascript";
  8729. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8730. script4.src = window.origin + "/js/Common/jietu2E.js";
  8731. if (_iframe) {
  8732. if (str == 'doc') {
  8733. _iframe = _formdiv.querySelector('iframe')
  8734. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8735. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8736. _iframe.contentWindow.document.body.appendChild(script1);
  8737. _iframe.contentWindow.document.body.appendChild(script2);
  8738. // _iframe.contentWindow.document.body.appendChild(script3);
  8739. _iframe.contentWindow.document.body.appendChild(script4);
  8740. })
  8741. if (onloadListener) {
  8742. _iframe.contentDocument.location.reload()
  8743. } else {
  8744. _iframe.contentDocument.location.reload()
  8745. }
  8746. } else if (str == 'courseDesign') {
  8747. U.UF.DL.iframeLoad(_iframe, function () {
  8748. // _iframe.contentWindow.U.MD.O.W.load();
  8749. // _iframe.contentWindow.document.body.appendChild(script1);
  8750. _iframe.contentWindow.document.body.appendChild(script2);
  8751. _iframe.contentWindow.document.body.appendChild(script4);
  8752. })
  8753. } else if (str == 'mind') {
  8754. _iframe = _formdiv.querySelector('iframe')
  8755. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8756. //
  8757. _iframe.contentWindow.document.body.appendChild(script1);
  8758. _iframe.contentWindow.document.body.appendChild(script2);
  8759. _iframe.contentWindow.document.body.appendChild(script4);
  8760. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8761. })
  8762. if (onloadListener) {
  8763. _iframe.contentDocument.location.reload()
  8764. } else {
  8765. _iframe.contentDocument.location.reload()
  8766. }
  8767. } else if (str == 'whiteboard') {
  8768. _iframe = _formdiv.querySelector('iframe')
  8769. let onloadListener = _iframe.onload = () => {
  8770. _iframe.contentWindow.document.body.appendChild(script1);
  8771. _iframe.contentWindow.document.body.appendChild(script2);
  8772. _iframe.contentWindow.document.body.appendChild(script4);
  8773. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8774. };
  8775. // if (onloadListener) {
  8776. // try {
  8777. // _iframe.src += "?cocorobo="+new Date().getTime()
  8778. // _iframe.contentWindow.document.location.reload()
  8779. // } catch (error) {
  8780. // }
  8781. // } else {
  8782. // _iframe.contentDocument.location.reload()
  8783. // }
  8784. } else {
  8785. _iframe.onload = () => {
  8786. _iframe.contentWindow.document.body.appendChild(script1);
  8787. _iframe.contentWindow.document.body.appendChild(script2);
  8788. // _iframe.contentWindow.document.body.appendChild(script3);
  8789. _iframe.contentWindow.document.body.appendChild(script4);
  8790. };
  8791. }
  8792. _jie.onclick = async () => {
  8793. let text = ''
  8794. if (aTool == 1) {
  8795. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8796. } else if (aTool == 6) {
  8797. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8798. } else if (aTool == 3) {
  8799. text = await U.MD.D.I.getEditorContent(_iframe);
  8800. }
  8801. _loading.style.display = 'flex'
  8802. console.log(_loading);
  8803. var _ajs = _iframe.contentWindow.document.createElement("script");
  8804. _ajs.type = "text/javascript";
  8805. _ajs.innerHTML =
  8806. // 'console.log(' + _loading + ');\n' +
  8807. 'var _js = document.createElement("script");\n' +
  8808. '_js.type="text/javascript";\n' +
  8809. '_js.charset="UTF-8";\n' +
  8810. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8811. "_js.onload = function(){\n" +
  8812. ' var a = document.getElementsByTagName("img")\n' +
  8813. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8814. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8815. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8816. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8817. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8818. "beforeUpload_shishi(file," +
  8819. "'" +
  8820. _userid +
  8821. "'" +
  8822. ", " +
  8823. "'" +
  8824. _cid +
  8825. "'" +
  8826. ", " +
  8827. "'" +
  8828. _stage +
  8829. "'" +
  8830. ", " +
  8831. "'" +
  8832. _task +
  8833. "'" +
  8834. ", " +
  8835. "'" +
  8836. _tool +
  8837. "'" +
  8838. ", " +
  8839. "'" +
  8840. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8841. "'" +
  8842. ", " +
  8843. "'" +
  8844. aTool +
  8845. "'" +
  8846. ", " +
  8847. "`" +
  8848. text +
  8849. "`" +
  8850. ")\n" +
  8851. " });\n" +
  8852. "}\n" +
  8853. "document.head.appendChild(_js);\n";
  8854. _iframe.contentWindow.document.head.appendChild(_ajs);
  8855. }
  8856. }
  8857. }
  8858. U.MD.D.I.getEditorContent = function (iframe) {
  8859. return new Promise((resolve, reject) => {
  8860. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8861. console.log(content);
  8862. resolve(content)
  8863. });
  8864. });
  8865. }
  8866. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8867. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8868. // if (res.value[0].length > 0) {
  8869. // // resolve(res.value[0][0].text);
  8870. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8871. // $(fileInput).val('');
  8872. // });
  8873. // }
  8874. // }, [], { "type": "GET", "withCredentials": true });
  8875. var xmlhttp;
  8876. var Mac, Sn, DeviceId
  8877. if (window.XMLHttpRequest) {
  8878. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8879. xmlhttp = new XMLHttpRequest();
  8880. } else {
  8881. // IE6, IE5 浏览器执行代码
  8882. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8883. }
  8884. xmlhttp.onreadystatechange = function () {
  8885. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8886. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8887. // resolve(res.value[0][0].text);
  8888. if (type == '2') {
  8889. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8890. } else if (type == '3') {
  8891. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8892. }
  8893. } else {
  8894. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8895. }
  8896. }
  8897. }
  8898. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8899. xmlhttp.send();
  8900. }
  8901. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8902. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8903. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8904. _userinfo = US.userInfo, //登录用户信息
  8905. _userid = US.userInfo.userid //登录用户id
  8906. let _iframe;
  8907. let _cid = cid,
  8908. _stage = stage,
  8909. _task = task,
  8910. _tool = tool;
  8911. var _jie = $$("div", {
  8912. "style": {
  8913. "position": "absolute",
  8914. "bottom": "50px",
  8915. "right": "50px",
  8916. "zIndex": "9999",
  8917. "backgroundColor": "#2268bc",
  8918. "color": "#fff",
  8919. "padding": "12px 20px",
  8920. "cursor": "pointer",
  8921. "borderRadius": "4px",
  8922. },
  8923. "innerHTML": "确认并提交"
  8924. })
  8925. let aTool = ''
  8926. let _loading = document.createElement('div')
  8927. _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;"
  8928. // _loading.id = "";
  8929. let _lchild = document.createElement('div')
  8930. let _limg = document.createElement('img')
  8931. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8932. _limg.style = "width: 26px;margin-right: 10px;"
  8933. _lchild.appendChild(_limg)
  8934. let _lspan = document.createElement('span')
  8935. _lspan.innerHTML = "上传中..."
  8936. _lchild.appendChild(_lspan)
  8937. _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%);"
  8938. _loading.appendChild(_lchild)
  8939. var _box = $$('div', {
  8940. "style": {
  8941. "position": "relative",
  8942. "width": "100%",
  8943. "height": "100%",
  8944. },
  8945. })
  8946. _box.appendChild(_loading)
  8947. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8948. switch (str) {
  8949. case "whiteboard":
  8950. aTool = 1;
  8951. _iframe = $$("iframe", {
  8952. "frameborder": "no",
  8953. "border": "0",
  8954. "scrolling ": "no",
  8955. "style": {
  8956. "cssText": "border:0;width:100%;height:100%"
  8957. },
  8958. "src": "https://beta.iwb.cocorobo.cn/"
  8959. })
  8960. _box.appendChild(_iframe);
  8961. _box.appendChild(_jie);
  8962. _formdiv = new U.UF.UI.form(
  8963. "电子白板",
  8964. _box, {
  8965. "id": "whiteboards" + cid + stage + task + tool,
  8966. "style": {
  8967. "width": "90%",
  8968. "height": "90%",
  8969. "overflow": 'hidden'
  8970. },
  8971. "onresize": function () { }
  8972. }, {
  8973. closecallback: function () { }
  8974. }, {
  8975. "style": {
  8976. "height": "36px"
  8977. }
  8978. }).form; //创建窗体
  8979. _taskbar = {
  8980. "id": str + _formdiv.id,
  8981. "style": {
  8982. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8983. },
  8984. "name": "电子白板",
  8985. "forms": _formdiv,
  8986. "click": function () {
  8987. U.MD.D.I.openApplication(str, obj, info);
  8988. }
  8989. }
  8990. break;
  8991. case "mind":
  8992. aTool = 3;
  8993. _iframe = $$("iframe", {
  8994. "frameborder": "no",
  8995. "border": "0",
  8996. "scrolling ": "no",
  8997. "style": {
  8998. "cssText": "border:0;width:100%;height:100%"
  8999. },
  9000. "src": "/kityminder-editor/dist/index.html"
  9001. });
  9002. _box.appendChild(_iframe);
  9003. _box.appendChild(_jie);
  9004. _formdiv = new U.UF.UI.form(
  9005. "思维导图",
  9006. _box, { //"/jsmind/example/demo.html"
  9007. "id": "minds" + cid + stage + task + tool,
  9008. "style": {
  9009. "width": "90%",
  9010. "height": "90%",
  9011. "overflow": 'hidden'
  9012. },
  9013. "onresize": function () { }
  9014. }, {
  9015. closecallback: function () { }
  9016. }, {
  9017. "style": {
  9018. "height": "36px"
  9019. }
  9020. }).form; //创建窗体
  9021. _taskbar = {
  9022. "id": str + _formdiv.id,
  9023. "style": {
  9024. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9025. },
  9026. "name": "思维导图",
  9027. "forms": _formdiv,
  9028. "click": function () {
  9029. U.MD.D.I.openApplication(str, obj, info);
  9030. }
  9031. }
  9032. break;
  9033. case "doc":
  9034. aTool = 6;
  9035. _iframe = $$("iframe", {
  9036. "frameborder": "no",
  9037. "border": "0",
  9038. "scrolling ": "no",
  9039. "style": {
  9040. "cssText": "border:0;width:100%;height:100%"
  9041. },
  9042. "src": "/Office/Word/WordEditArea.htm"
  9043. })
  9044. _box.appendChild(_iframe);
  9045. _box.appendChild(_jie);
  9046. _formdiv = new U.UF.UI.form(
  9047. "协同文档",
  9048. _box, {
  9049. "id": "docs" + cid + stage + task + tool,
  9050. "style": {
  9051. "width": "90%",
  9052. "height": "90%",
  9053. "overflow": 'hidden'
  9054. },
  9055. "onresize": function () { }
  9056. }, {
  9057. closecallback: function () { }
  9058. }, {
  9059. "style": {
  9060. "height": "36px"
  9061. }
  9062. }).form; //创建窗体
  9063. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9064. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9065. })
  9066. _taskbar = {
  9067. "id": str + _formdiv.id,
  9068. "style": {
  9069. "backgroundImage": "url(/img/icon/doc.png)"
  9070. },
  9071. "name": "协同文档",
  9072. "forms": _formdiv,
  9073. "click": function () {
  9074. U.MD.D.I.openApplication(str, obj, info);
  9075. }
  9076. }
  9077. break;
  9078. }
  9079. const script1 = document.createElement("script");
  9080. script1.type = "text/javascript";
  9081. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9082. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9083. const script2 = document.createElement("script");
  9084. script2.type = "text/javascript";
  9085. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9086. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9087. const script3 = document.createElement("script");
  9088. script3.type = "text/javascript";
  9089. script3.charset = "UTF-8";
  9090. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9091. const script4 = document.createElement("script");
  9092. script4.type = "text/javascript";
  9093. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9094. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9095. if (_iframe) {
  9096. if (str == 'doc') {
  9097. _iframe = _formdiv.querySelector('iframe')
  9098. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9099. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9100. _iframe.contentWindow.document.body.appendChild(script1);
  9101. _iframe.contentWindow.document.body.appendChild(script2);
  9102. // _iframe.contentWindow.document.body.appendChild(script3);
  9103. _iframe.contentWindow.document.body.appendChild(script4);
  9104. })
  9105. if (onloadListener) {
  9106. _iframe.contentDocument.location.reload()
  9107. } else {
  9108. _iframe.contentDocument.location.reload()
  9109. }
  9110. } else if (str == 'mind') {
  9111. _iframe = _formdiv.querySelector('iframe')
  9112. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9113. _iframe.contentWindow.document.body.appendChild(script1);
  9114. _iframe.contentWindow.document.body.appendChild(script2);
  9115. _iframe.contentWindow.document.body.appendChild(script4);
  9116. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9117. })
  9118. if (onloadListener) {
  9119. _iframe.contentDocument.location.reload()
  9120. } else {
  9121. _iframe.contentDocument.location.reload()
  9122. }
  9123. } else {
  9124. _iframe.onload = () => {
  9125. _iframe.contentWindow.document.body.appendChild(script1);
  9126. _iframe.contentWindow.document.body.appendChild(script2);
  9127. // _iframe.contentWindow.document.body.appendChild(script3);
  9128. _iframe.contentWindow.document.body.appendChild(script4);
  9129. };
  9130. }
  9131. _jie.onclick = async () => {
  9132. let text = ''
  9133. if (aTool == 6) {
  9134. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9135. } else if (aTool == 3) {
  9136. text = await U.MD.D.I.getEditorContent(_iframe);
  9137. }
  9138. _loading.style.display = 'flex'
  9139. console.log(_loading);
  9140. var _ajs = _iframe.contentWindow.document.createElement("script");
  9141. _ajs.type = "text/javascript";
  9142. _ajs.innerHTML =
  9143. // 'console.log(' + _loading + ');\n' +
  9144. 'var _js = document.createElement("script");\n' +
  9145. '_js.type="text/javascript";\n' +
  9146. '_js.charset="UTF-8";\n' +
  9147. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9148. "_js.onload = function(){\n" +
  9149. ' var a = document.getElementsByTagName("img")\n' +
  9150. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9151. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9152. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9153. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9154. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9155. "beforeUpload_shishi(file," +
  9156. "'" +
  9157. _userid +
  9158. "'" +
  9159. ", " +
  9160. "'" +
  9161. _cid +
  9162. "'" +
  9163. ", " +
  9164. "'" +
  9165. _stage +
  9166. "'" +
  9167. ", " +
  9168. "'" +
  9169. _task +
  9170. "'" +
  9171. ", " +
  9172. "'" +
  9173. _tool +
  9174. "'" +
  9175. ", " +
  9176. "'" +
  9177. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9178. "'" +
  9179. ", " +
  9180. "'" +
  9181. aTool +
  9182. "'" +
  9183. ", " +
  9184. "`" +
  9185. text +
  9186. "`" +
  9187. ")\n" +
  9188. " });\n" +
  9189. "}\n" +
  9190. "document.head.appendChild(_js);\n";
  9191. _iframe.contentWindow.document.head.appendChild(_ajs);
  9192. }
  9193. }
  9194. //U.MD.D.I.openClick(str);
  9195. //如果有任务栏信息
  9196. // if (_taskbar) {
  9197. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9198. // }
  9199. }
  9200. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9201. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9202. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9203. _userinfo = US.userInfo, //登录用户信息
  9204. _userid = US.userInfo.userid //登录用户id
  9205. let _iframe;
  9206. let _cid = cid,
  9207. _stage = stage,
  9208. _task = task,
  9209. _tool = tool;
  9210. var _jie = $$("div", {
  9211. "style": {
  9212. "position": "absolute",
  9213. "bottom": "50px",
  9214. "right": "50px",
  9215. "zIndex": "9999",
  9216. "backgroundColor": "#2268bc",
  9217. "color": "#fff",
  9218. "padding": "12px 20px",
  9219. "cursor": "pointer",
  9220. "borderRadius": "4px",
  9221. },
  9222. "innerHTML": "确认并提交"
  9223. })
  9224. let aTool = ''
  9225. let _loading = document.createElement('div')
  9226. _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;"
  9227. // _loading.id = "";
  9228. let _lchild = document.createElement('div')
  9229. let _limg = document.createElement('img')
  9230. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9231. _limg.style = "width: 26px;margin-right: 10px;"
  9232. _lchild.appendChild(_limg)
  9233. let _lspan = document.createElement('span')
  9234. _lspan.innerHTML = "上传中..."
  9235. _lchild.appendChild(_lspan)
  9236. _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%);"
  9237. _loading.appendChild(_lchild)
  9238. var _box = $$('div', {
  9239. "style": {
  9240. "position": "relative",
  9241. "width": "100%",
  9242. "height": "100%",
  9243. },
  9244. })
  9245. _box.appendChild(_loading)
  9246. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9247. switch (str) {
  9248. case "whiteboard":
  9249. aTool = 1;
  9250. _iframe = $$("iframe", {
  9251. "frameborder": "no",
  9252. "border": "0",
  9253. "scrolling ": "no",
  9254. "style": {
  9255. "cssText": "border:0;width:100%;height:100%"
  9256. },
  9257. "src": "https://beta.iwb.cocorobo.cn/"
  9258. })
  9259. _box.appendChild(_iframe);
  9260. _box.appendChild(_jie);
  9261. _formdiv = new U.UF.UI.form(
  9262. "电子白板",
  9263. _box, {
  9264. "id": "whiteboards" + cid + stage + task + tool,
  9265. "style": {
  9266. "width": "90%",
  9267. "height": "90%",
  9268. "overflow": 'hidden'
  9269. },
  9270. "onresize": function () { }
  9271. }, {
  9272. closecallback: function () { }
  9273. }, {
  9274. "style": {
  9275. "height": "36px"
  9276. }
  9277. }).form; //创建窗体
  9278. _taskbar = {
  9279. "id": str + _formdiv.id,
  9280. "style": {
  9281. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9282. },
  9283. "name": "电子白板",
  9284. "forms": _formdiv,
  9285. "click": function () {
  9286. U.MD.D.I.openApplication(str, obj, info);
  9287. }
  9288. }
  9289. break;
  9290. case "mind":
  9291. aTool = 3;
  9292. _iframe = $$("iframe", {
  9293. "frameborder": "no",
  9294. "border": "0",
  9295. "scrolling ": "no",
  9296. "style": {
  9297. "cssText": "border:0;width:100%;height:100%"
  9298. },
  9299. "src": "/kityminder-editor/dist/index.html"
  9300. });
  9301. _box.appendChild(_iframe);
  9302. _box.appendChild(_jie);
  9303. _formdiv = new U.UF.UI.form(
  9304. "思维导图",
  9305. _box, { //"/jsmind/example/demo.html"
  9306. "id": "minds" + cid + stage + task + tool,
  9307. "style": {
  9308. "width": "90%",
  9309. "height": "90%",
  9310. "overflow": 'hidden'
  9311. },
  9312. "onresize": function () { }
  9313. }, {
  9314. closecallback: function () { }
  9315. }, {
  9316. "style": {
  9317. "height": "36px"
  9318. }
  9319. }).form; //创建窗体
  9320. _taskbar = {
  9321. "id": str + _formdiv.id,
  9322. "style": {
  9323. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9324. },
  9325. "name": "思维导图",
  9326. "forms": _formdiv,
  9327. "click": function () {
  9328. U.MD.D.I.openApplication(str, obj, info);
  9329. }
  9330. }
  9331. break;
  9332. case "doc":
  9333. aTool = 6;
  9334. _iframe = $$("iframe", {
  9335. "frameborder": "no",
  9336. "border": "0",
  9337. "scrolling ": "no",
  9338. "style": {
  9339. "cssText": "border:0;width:100%;height:100%"
  9340. },
  9341. "src": "/Office/Word/WordEditArea.htm"
  9342. })
  9343. _box.appendChild(_iframe);
  9344. _box.appendChild(_jie);
  9345. _formdiv = new U.UF.UI.form(
  9346. "协同文档",
  9347. _box, {
  9348. "id": "docs" + cid + stage + task + tool,
  9349. "style": {
  9350. "width": "90%",
  9351. "height": "90%",
  9352. "overflow": 'hidden'
  9353. },
  9354. "onresize": function () { }
  9355. }, {
  9356. closecallback: function () { }
  9357. }, {
  9358. "style": {
  9359. "height": "36px"
  9360. }
  9361. }).form; //创建窗体
  9362. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9363. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9364. })
  9365. _taskbar = {
  9366. "id": str + _formdiv.id,
  9367. "style": {
  9368. "backgroundImage": "url(/img/icon/doc.png)"
  9369. },
  9370. "name": "协同文档",
  9371. "forms": _formdiv,
  9372. "click": function () {
  9373. U.MD.D.I.openApplication(str, obj, info);
  9374. }
  9375. }
  9376. break;
  9377. }
  9378. const script1 = document.createElement("script");
  9379. script1.type = "text/javascript";
  9380. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9381. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9382. const script2 = document.createElement("script");
  9383. script2.type = "text/javascript";
  9384. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9385. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9386. const script3 = document.createElement("script");
  9387. script3.type = "text/javascript";
  9388. script3.charset = "UTF-8";
  9389. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9390. const script4 = document.createElement("script");
  9391. script4.type = "text/javascript";
  9392. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9393. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9394. if (_iframe) {
  9395. if (str == 'doc') {
  9396. _iframe = _formdiv.querySelector('iframe')
  9397. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9398. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9399. _iframe.contentWindow.document.body.appendChild(script1);
  9400. _iframe.contentWindow.document.body.appendChild(script2);
  9401. // _iframe.contentWindow.document.body.appendChild(script3);
  9402. _iframe.contentWindow.document.body.appendChild(script4);
  9403. })
  9404. if (onloadListener) {
  9405. _iframe.contentDocument.location.reload()
  9406. } else {
  9407. _iframe.contentDocument.location.reload()
  9408. }
  9409. } else if (str == 'mind') {
  9410. _iframe = _formdiv.querySelector('iframe')
  9411. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9412. _iframe.contentWindow.document.body.appendChild(script1);
  9413. _iframe.contentWindow.document.body.appendChild(script2);
  9414. _iframe.contentWindow.document.body.appendChild(script4);
  9415. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9416. })
  9417. if (onloadListener) {
  9418. _iframe.contentDocument.location.reload()
  9419. } else {
  9420. _iframe.contentDocument.location.reload()
  9421. }
  9422. } else {
  9423. _iframe.onload = () => {
  9424. _iframe.contentWindow.document.body.appendChild(script1);
  9425. _iframe.contentWindow.document.body.appendChild(script2);
  9426. // _iframe.contentWindow.document.body.appendChild(script3);
  9427. _iframe.contentWindow.document.body.appendChild(script4);
  9428. };
  9429. }
  9430. _jie.onclick = async () => {
  9431. let text = ''
  9432. if (aTool == 6) {
  9433. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9434. } else if (aTool == 3) {
  9435. text = await U.MD.D.I.getEditorContent(_iframe);
  9436. }
  9437. _loading.style.display = 'flex'
  9438. console.log(_loading);
  9439. var _ajs = _iframe.contentWindow.document.createElement("script");
  9440. _ajs.type = "text/javascript";
  9441. _ajs.innerHTML =
  9442. // 'console.log(' + _loading + ');\n' +
  9443. 'var _js = document.createElement("script");\n' +
  9444. '_js.type="text/javascript";\n' +
  9445. '_js.charset="UTF-8";\n' +
  9446. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9447. "_js.onload = function(){\n" +
  9448. ' var a = document.getElementsByTagName("img")\n' +
  9449. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9450. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9451. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9452. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9453. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9454. "beforeUpload_shishi(file," +
  9455. "'" +
  9456. _userid +
  9457. "'" +
  9458. ", " +
  9459. "'" +
  9460. _cid +
  9461. "'" +
  9462. ", " +
  9463. "'" +
  9464. _stage +
  9465. "'" +
  9466. ", " +
  9467. "'" +
  9468. _task +
  9469. "'" +
  9470. ", " +
  9471. "'" +
  9472. _tool +
  9473. "'" +
  9474. ", " +
  9475. "'" +
  9476. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9477. "'" +
  9478. ", " +
  9479. "'" +
  9480. aTool +
  9481. "'" +
  9482. ", " +
  9483. "`" +
  9484. text +
  9485. "`" +
  9486. ")\n" +
  9487. " });\n" +
  9488. "}\n" +
  9489. "document.head.appendChild(_js);\n";
  9490. _iframe.contentWindow.document.head.appendChild(_ajs);
  9491. }
  9492. }
  9493. //U.MD.D.I.openClick(str);
  9494. //如果有任务栏信息
  9495. // if (_taskbar) {
  9496. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9497. // }
  9498. }
  9499. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9500. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9501. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9502. _userinfo = US.userInfo, //登录用户信息
  9503. _userid = US.userInfo.userid //登录用户id
  9504. let _iframe;
  9505. let _cid = cid,
  9506. _stage = stage,
  9507. _task = task,
  9508. _tool = tool;
  9509. var _jie = $$("div", {
  9510. "style": {
  9511. "position": "absolute",
  9512. "bottom": "50px",
  9513. "right": "50px",
  9514. "zIndex": "9999",
  9515. "backgroundColor": "#2268bc",
  9516. "color": "#fff",
  9517. "padding": "12px 20px",
  9518. "cursor": "pointer",
  9519. "borderRadius": "4px",
  9520. },
  9521. "innerHTML": "上传模板"
  9522. })
  9523. let aTool = ''
  9524. let _loading = document.createElement('div')
  9525. _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;"
  9526. // _loading.id = "";
  9527. let _lchild = document.createElement('div')
  9528. let _limg = document.createElement('img')
  9529. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9530. _limg.style = "width: 26px;margin-right: 10px;"
  9531. _lchild.appendChild(_limg)
  9532. let _lspan = document.createElement('span')
  9533. _lspan.innerHTML = "上传中..."
  9534. _lchild.appendChild(_lspan)
  9535. _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%);"
  9536. _loading.appendChild(_lchild)
  9537. var _box = $$('div', {
  9538. "style": {
  9539. "position": "relative",
  9540. "width": "100%",
  9541. "height": "100%",
  9542. },
  9543. })
  9544. _box.appendChild(_loading)
  9545. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9546. switch (str) {
  9547. case "whiteboard":
  9548. aTool = 1;
  9549. _iframe = $$("iframe", {
  9550. "frameborder": "no",
  9551. "border": "0",
  9552. "scrolling ": "no",
  9553. "style": {
  9554. "cssText": "border:0;width:100%;height:100%"
  9555. },
  9556. "src": "https://beta.iwb.cocorobo.cn/"
  9557. })
  9558. _box.appendChild(_iframe);
  9559. _box.appendChild(_jie);
  9560. _formdiv = new U.UF.UI.form(
  9561. "电子白板",
  9562. _box, {
  9563. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9564. "style": {
  9565. "width": "90%",
  9566. "height": "90%",
  9567. "overflow": 'hidden'
  9568. },
  9569. "onresize": function () { }
  9570. }, {
  9571. closecallback: function () { }
  9572. }, {
  9573. "style": {
  9574. "height": "36px"
  9575. }
  9576. }).form; //创建窗体
  9577. _taskbar = {
  9578. "id": str + _formdiv.id,
  9579. "style": {
  9580. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9581. },
  9582. "name": "电子白板",
  9583. "forms": _formdiv,
  9584. "click": function () {
  9585. U.MD.D.I.openApplication(str, obj, info);
  9586. }
  9587. }
  9588. break;
  9589. case "mind":
  9590. aTool = 3;
  9591. _iframe = $$("iframe", {
  9592. "frameborder": "no",
  9593. "border": "0",
  9594. "scrolling ": "no",
  9595. "style": {
  9596. "cssText": "border:0;width:100%;height:100%"
  9597. },
  9598. "src": "/kityminder-editor/dist/index.html"
  9599. });
  9600. _box.appendChild(_iframe);
  9601. _box.appendChild(_jie);
  9602. _formdiv = new U.UF.UI.form(
  9603. "思维导图",
  9604. _box, { //"/jsmind/example/demo.html"
  9605. "id": "minds_Yu" + cid + stage + task + tool,
  9606. "style": {
  9607. "width": "90%",
  9608. "height": "90%",
  9609. "overflow": 'hidden'
  9610. },
  9611. "onresize": function () { }
  9612. }, {
  9613. closecallback: function () { }
  9614. }, {
  9615. "style": {
  9616. "height": "36px"
  9617. }
  9618. }).form; //创建窗体
  9619. _taskbar = {
  9620. "id": str + _formdiv.id,
  9621. "style": {
  9622. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9623. },
  9624. "name": "思维导图",
  9625. "forms": _formdiv,
  9626. "click": function () {
  9627. U.MD.D.I.openApplication(str, obj, info);
  9628. }
  9629. }
  9630. break;
  9631. case "doc":
  9632. aTool = 6;
  9633. _iframe = $$("iframe", {
  9634. "frameborder": "no",
  9635. "border": "0",
  9636. "scrolling ": "no",
  9637. "style": {
  9638. "cssText": "border:0;width:100%;height:100%"
  9639. },
  9640. "src": "/Office/Word/WordEditArea.htm"
  9641. })
  9642. _box.appendChild(_iframe);
  9643. _box.appendChild(_jie);
  9644. _formdiv = new U.UF.UI.form(
  9645. "协同文档",
  9646. _box, {
  9647. "id": "docs_Yu" + cid + stage + task + tool,
  9648. "style": {
  9649. "width": "90%",
  9650. "height": "90%",
  9651. "overflow": 'hidden'
  9652. },
  9653. "onresize": function () { }
  9654. }, {
  9655. closecallback: function () { }
  9656. }, {
  9657. "style": {
  9658. "height": "36px"
  9659. }
  9660. }).form; //创建窗体
  9661. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9662. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9663. })
  9664. _taskbar = {
  9665. "id": str + _formdiv.id,
  9666. "style": {
  9667. "backgroundImage": "url(/img/icon/doc.png)"
  9668. },
  9669. "name": "协同文档",
  9670. "forms": _formdiv,
  9671. "click": function () {
  9672. U.MD.D.I.openApplication(str, obj, info);
  9673. }
  9674. }
  9675. break;
  9676. case "CocoPi":
  9677. aTool = 57;
  9678. _iframe = $$("iframe", {
  9679. "allowpaymentrequest": "allowpaymentrequest",
  9680. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9681. "webkitallowfullscreen": "",
  9682. "mozallowfullscreen": "",
  9683. "frameborder": "no",
  9684. "border": "0",
  9685. "scrolling ": "no",
  9686. "style": {
  9687. "cssText": "border:0;width:100%;height:100%"
  9688. },
  9689. "src": "https://pi.cocorobo.cn/"
  9690. })
  9691. _box.appendChild(_iframe);
  9692. _box.appendChild(_jie);
  9693. _formdiv = new U.UF.UI.form(
  9694. "CocoPi",
  9695. _box, {
  9696. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9697. "style": {
  9698. "width": "90%",
  9699. "height": "90%",
  9700. "overflow": 'hidden'
  9701. },
  9702. "onresize": function () { }
  9703. }, {
  9704. closecallback: function () { }
  9705. }, {
  9706. "style": {
  9707. "height": "36px"
  9708. }
  9709. }).form; //创建窗体
  9710. _taskbar = {
  9711. "id": str + _formdiv.id,
  9712. "style": {
  9713. "backgroundImage": "url(/img/icon/cocopi.png)"
  9714. },
  9715. "name": "CocoPi",
  9716. "forms": _formdiv,
  9717. "click": function () {
  9718. U.MD.D.I.openApplication(str, obj, info);
  9719. }
  9720. }
  9721. break;
  9722. }
  9723. if (_iframe) {
  9724. if (str == 'doc') {
  9725. _iframe = _formdiv.querySelector('iframe')
  9726. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9727. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9728. })
  9729. if (onloadListener) {
  9730. _iframe.contentDocument.location.reload()
  9731. } else {
  9732. _iframe.contentDocument.location.reload()
  9733. }
  9734. } else if (str == 'mind') {
  9735. _iframe = _formdiv.querySelector('iframe')
  9736. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9737. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9738. })
  9739. if (onloadListener) {
  9740. _iframe.contentDocument.location.reload()
  9741. } else {
  9742. _iframe.contentDocument.location.reload()
  9743. }
  9744. } else if (str == 'whiteboard') {
  9745. _iframe = _formdiv.querySelector('iframe')
  9746. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9747. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9748. })
  9749. // if (onloadListener) {
  9750. // try {
  9751. // _iframe.src += "?cocorobo="+new Date().getTime()
  9752. // _iframe.contentWindow.document.location.reload()
  9753. // } catch (error) {
  9754. // }
  9755. // } else {
  9756. // _iframe.contentDocument.location.reload()
  9757. // }
  9758. } else if (str == 'CocoPi') {
  9759. _iframe = _formdiv.querySelector('iframe')
  9760. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9761. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9762. })
  9763. if (onloadListener) {
  9764. _iframe.contentDocument.location.reload()
  9765. } else {
  9766. _iframe.contentDocument.location.reload()
  9767. }
  9768. } else {
  9769. _iframe.onload = () => { };
  9770. }
  9771. _jie.onclick = async () => {
  9772. let text = ''
  9773. let type = '2'
  9774. if (aTool == 1) {
  9775. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9776. type = '3'
  9777. } else if (aTool == 6) {
  9778. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9779. type = '1'
  9780. } else if (aTool == 3) {
  9781. text = await U.MD.D.I.getEditorContent(_iframe);
  9782. type = '2'
  9783. } else if (aTool == 57) {
  9784. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9785. type = '4'
  9786. }
  9787. _loading.style.display = 'flex'
  9788. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9789. }
  9790. }
  9791. //U.MD.D.I.openClick(str);
  9792. //如果有任务栏信息
  9793. // if (_taskbar) {
  9794. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9795. // }
  9796. }
  9797. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9798. var xmlhttp;
  9799. var Mac, Sn, DeviceId
  9800. if (window.XMLHttpRequest) {
  9801. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9802. xmlhttp = new XMLHttpRequest();
  9803. } else {
  9804. // IE6, IE5 浏览器执行代码
  9805. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9806. }
  9807. xmlhttp.onreadystatechange = function () {
  9808. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9809. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9810. // resolve(res.value[0][0].text);
  9811. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9812. }
  9813. }
  9814. }
  9815. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9816. xmlhttp.send();
  9817. }
  9818. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9819. var xmlhttp;
  9820. var Mac, Sn, DeviceId
  9821. if (window.XMLHttpRequest) {
  9822. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9823. xmlhttp = new XMLHttpRequest();
  9824. } else {
  9825. // IE6, IE5 浏览器执行代码
  9826. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9827. }
  9828. xmlhttp.onreadystatechange = function () {
  9829. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9830. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9831. // resolve(res.value[0][0].text);
  9832. if (type == '2') {
  9833. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9834. } else if (type == '3') {
  9835. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9836. } else if (type == '4') {
  9837. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9838. }
  9839. } else {
  9840. if (type == '2') {
  9841. iframe.contentWindow.editor.minder.importData('json', '')
  9842. } else if (type == '3') {
  9843. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9844. } else if (type == '4') {
  9845. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9846. }
  9847. }
  9848. }
  9849. }
  9850. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9851. xmlhttp.send();
  9852. }
  9853. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9854. var xmlhttp;
  9855. var Mac, Sn, DeviceId
  9856. if (window.XMLHttpRequest) {
  9857. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9858. xmlhttp = new XMLHttpRequest();
  9859. } else {
  9860. // IE6, IE5 浏览器执行代码
  9861. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9862. }
  9863. xmlhttp.onreadystatechange = function () {
  9864. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9865. if (xmlhttp.response) {
  9866. // resolve(res.value[0][0].text);
  9867. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9868. // $(fileInput).val('');
  9869. // });
  9870. span.innerHTML = '上传成功'
  9871. setTimeout(() => {
  9872. loading.style.display = 'none'
  9873. }, 1000);
  9874. }
  9875. }
  9876. }
  9877. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9878. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9879. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9880. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9881. // 设置请求头,表示请求体的编码格式
  9882. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9883. // 设置请求体,使用url-encoded格式的数据
  9884. }
  9885. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9886. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9887. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9888. _userinfo = US.userInfo, //登录用户信息
  9889. _userid = US.userInfo.userid //登录用户id
  9890. let _iframe;
  9891. let _cid = cid,
  9892. _stage = stage,
  9893. _task = task,
  9894. _tool = tool;
  9895. var _jie = $$("div", {
  9896. "style": {
  9897. "position": "absolute",
  9898. "bottom": "50px",
  9899. "right": "50px",
  9900. "zIndex": "9999",
  9901. "backgroundColor": "#2268bc",
  9902. "color": "#fff",
  9903. "padding": "12px 20px",
  9904. "cursor": "pointer",
  9905. "borderRadius": "4px",
  9906. },
  9907. "innerHTML": "提交作业"
  9908. })
  9909. let aTool = ''
  9910. let _loading = document.createElement('div')
  9911. _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;"
  9912. // _loading.id = "";
  9913. let _lchild = document.createElement('div')
  9914. let _limg = document.createElement('img')
  9915. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9916. _limg.style = "width: 26px;margin-right: 10px;"
  9917. _lchild.appendChild(_limg)
  9918. let _lspan = document.createElement('span')
  9919. _lspan.innerHTML = "上传中..."
  9920. _lchild.appendChild(_lspan)
  9921. _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%);"
  9922. _loading.appendChild(_lchild)
  9923. var _box = $$('div', {
  9924. "style": {
  9925. "position": "relative",
  9926. "width": "100%",
  9927. "height": "100%",
  9928. },
  9929. })
  9930. _box.appendChild(_loading)
  9931. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9932. switch (str) {
  9933. case "CocoPi":
  9934. aTool = 57;
  9935. _iframe = $$("iframe", {
  9936. "allowpaymentrequest": "allowpaymentrequest",
  9937. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9938. "webkitallowfullscreen": "",
  9939. "mozallowfullscreen": "",
  9940. "frameborder": "no",
  9941. "border": "0",
  9942. "scrolling ": "no",
  9943. "style": {
  9944. "cssText": "border:0;width:100%;height:100%"
  9945. },
  9946. "src": "https://pi.cocorobo.cn/"
  9947. })
  9948. _box.appendChild(_iframe);
  9949. _box.appendChild(_jie);
  9950. _formdiv = new U.UF.UI.form(
  9951. "CocoPi",
  9952. _box, {
  9953. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9954. "style": {
  9955. "width": "90%",
  9956. "height": "90%",
  9957. "overflow": 'hidden'
  9958. },
  9959. "onresize": function () { }
  9960. }, {
  9961. closecallback: function () { }
  9962. }, {
  9963. "style": {
  9964. "height": "36px"
  9965. }
  9966. }).form; //创建窗体
  9967. _taskbar = {
  9968. "id": str + _formdiv.id,
  9969. "style": {
  9970. "backgroundImage": "url(/img/icon/cocopi.png)"
  9971. },
  9972. "name": "CocoPi",
  9973. "forms": _formdiv,
  9974. "click": function () {
  9975. U.MD.D.I.openApplication(str, obj, info);
  9976. }
  9977. }
  9978. break;
  9979. }
  9980. if (_iframe) {
  9981. if (str == 'CocoPi') {
  9982. _iframe = _formdiv.querySelector('iframe')
  9983. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9984. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9985. })
  9986. if (onloadListener) {
  9987. _iframe.contentDocument.location.reload()
  9988. } else {
  9989. _iframe.contentDocument.location.reload()
  9990. }
  9991. }
  9992. _jie.onclick = async () => {
  9993. let text = ''
  9994. if (aTool == 57) {
  9995. text = _iframe.contentWindow.getLoadXmlStr()
  9996. }
  9997. _loading.style.display = 'flex'
  9998. console.log(_loading);
  9999. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10000. _loading.style.display = 'none'
  10001. let _div = document.createElement('div')
  10002. _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;"
  10003. let _inner = document.createElement('div')
  10004. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10005. _inner.innerHTML = "上传成功"
  10006. _div.appendChild(_inner)
  10007. _iframe.contentWindow.window.document.body.appendChild(_div)
  10008. _div.onclick = () => {
  10009. _iframe.contentWindow.window.document.body.removeChild(_div)
  10010. }
  10011. setTimeout(() => {
  10012. _iframe.contentWindow.window.document.body.removeChild(_div)
  10013. }, 1000);
  10014. }, [], { "type": "POST", "withCredentials": true });
  10015. }
  10016. }
  10017. }
  10018. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10019. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10020. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10021. _userid = student.userid, //登录用户id
  10022. _username = student.student //用户名字
  10023. let _iframe;
  10024. let _cid = cid,
  10025. _stage = stage,
  10026. _task = task,
  10027. _tool = tool;
  10028. var _jie = $$("div", {
  10029. "style": {
  10030. "position": "absolute",
  10031. "bottom": "50px",
  10032. "right": "50px",
  10033. "zIndex": "9999",
  10034. "backgroundColor": "#2268bc",
  10035. "color": "#fff",
  10036. "padding": "12px 20px",
  10037. "cursor": "pointer",
  10038. "borderRadius": "4px",
  10039. },
  10040. "innerHTML": "提交作业"
  10041. })
  10042. let aTool = ''
  10043. let _loading = document.createElement('div')
  10044. _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;"
  10045. // _loading.id = "";
  10046. let _lchild = document.createElement('div')
  10047. let _limg = document.createElement('img')
  10048. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10049. _limg.style = "width: 26px;margin-right: 10px;"
  10050. _lchild.appendChild(_limg)
  10051. let _lspan = document.createElement('span')
  10052. _lspan.innerHTML = "上传中..."
  10053. _lchild.appendChild(_lspan)
  10054. _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%);"
  10055. _loading.appendChild(_lchild)
  10056. var _box = $$('div', {
  10057. "style": {
  10058. "position": "relative",
  10059. "width": "100%",
  10060. "height": "100%",
  10061. },
  10062. })
  10063. _box.appendChild(_loading)
  10064. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10065. switch (str) {
  10066. case "CocoPi":
  10067. aTool = 57;
  10068. _iframe = $$("iframe", {
  10069. "allowpaymentrequest": "allowpaymentrequest",
  10070. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10071. "webkitallowfullscreen": "",
  10072. "mozallowfullscreen": "",
  10073. "frameborder": "no",
  10074. "border": "0",
  10075. "scrolling ": "no",
  10076. "style": {
  10077. "cssText": "border:0;width:100%;height:100%"
  10078. },
  10079. "src": "https://pi.cocorobo.cn/"
  10080. })
  10081. _box.appendChild(_iframe);
  10082. _box.appendChild(_jie);
  10083. _formdiv = new U.UF.UI.form(
  10084. "CocoPi-" + _username,
  10085. _box, {
  10086. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10087. "style": {
  10088. "width": "90%",
  10089. "height": "90%",
  10090. "overflow": 'hidden'
  10091. },
  10092. "onresize": function () { }
  10093. }, {
  10094. closecallback: function () { }
  10095. }, {
  10096. "style": {
  10097. "height": "36px"
  10098. }
  10099. }).form; //创建窗体
  10100. _taskbar = {
  10101. "id": str + _formdiv.id,
  10102. "style": {
  10103. "backgroundImage": "url(/img/icon/cocopi.png)"
  10104. },
  10105. "name": "CocoPi",
  10106. "forms": _formdiv,
  10107. "click": function () {
  10108. U.MD.D.I.openApplication(str, obj, info);
  10109. }
  10110. }
  10111. break;
  10112. }
  10113. if (_iframe) {
  10114. if (str == 'CocoPi') {
  10115. _iframe = _formdiv.querySelector('iframe')
  10116. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10117. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10118. })
  10119. if (onloadListener) {
  10120. _iframe.contentDocument.location.reload()
  10121. } else {
  10122. _iframe.contentDocument.location.reload()
  10123. }
  10124. }
  10125. _jie.onclick = async () => {
  10126. let text = ''
  10127. if (aTool == 57) {
  10128. text = _iframe.contentWindow.getLoadXmlStr()
  10129. }
  10130. _loading.style.display = 'flex'
  10131. console.log(_loading);
  10132. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10133. _loading.style.display = 'none'
  10134. let _div = document.createElement('div')
  10135. _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;"
  10136. let _inner = document.createElement('div')
  10137. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10138. _inner.innerHTML = "上传成功"
  10139. _div.appendChild(_inner)
  10140. _iframe.contentWindow.window.document.body.appendChild(_div)
  10141. _div.onclick = () => {
  10142. _iframe.contentWindow.window.document.body.removeChild(_div)
  10143. }
  10144. setTimeout(() => {
  10145. _iframe.contentWindow.window.document.body.removeChild(_div)
  10146. }, 1000);
  10147. }, [], { "type": "POST", "withCredentials": true });
  10148. }
  10149. }
  10150. }
  10151. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10152. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10153. if (res.value[0].length > 0) {
  10154. if (atool == 57) {
  10155. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10156. }
  10157. } else {
  10158. if (atool == 57) {
  10159. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10160. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10161. }
  10162. }
  10163. }, [], { "type": "POST", "withCredentials": true });
  10164. }