DeskTop.js 661 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "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. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. ];
  1379. //nsfx
  1380. U.MD.D.I.nsfxStudentDeskIcon = [
  1381. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. ];
  1386. //stia
  1387. U.MD.D.I.stiaTeacherDeskIcon = [
  1388. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1389. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1390. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1391. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1392. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1395. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1396. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1397. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1401. ];
  1402. //stia
  1403. U.MD.D.I.stiaStudentDeskIcon = [
  1404. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1405. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1406. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1408. ];
  1409. //szdjg
  1410. U.MD.D.I.szdjgTeacherDeskIcon = [
  1411. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1412. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. ];
  1414. //szdjg
  1415. U.MD.D.I.szdjgStudentDeskIcon = [
  1416. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1420. ];
  1421. //010607
  1422. U.MD.D.I.x010607TeacherDeskIcon = [
  1423. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1424. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1426. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1427. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1428. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1429. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1430. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1431. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1432. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1433. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1434. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1435. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1436. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1437. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1438. ];
  1439. //010607
  1440. U.MD.D.I.x010607StudentDeskIcon = [
  1441. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1444. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1445. ];
  1446. //010608
  1447. U.MD.D.I.x010608TeacherDeskIcon = [
  1448. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1449. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1451. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1452. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1453. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1454. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1455. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1456. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1457. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1458. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1459. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1460. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1461. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.x010608StudentDeskIcon = [
  1465. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1466. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1467. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1468. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1469. ];
  1470. //xhly
  1471. U.MD.D.I.xhlyTeacherDeskIcon = [
  1472. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1473. ];
  1474. //010608
  1475. U.MD.D.I.xhlyStudentDeskIcon = [
  1476. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1477. ];
  1478. //北师大
  1479. U.MD.D.I.BSDNSteacherDeskIcon = [
  1480. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1481. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1482. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1483. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1484. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1485. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1486. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1487. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1490. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1491. ];
  1492. //北师大
  1493. U.MD.D.I.BSDNSstudentDeskIcon = [
  1494. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1498. ];
  1499. //CUHK_EDU
  1500. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1501. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1502. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1504. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1507. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1509. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1510. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1511. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1512. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1513. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1514. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1515. ];
  1516. //CUHK_EDU
  1517. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1518. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1519. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1520. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1522. ];
  1523. //010503
  1524. U.MD.D.I.x010503TeacherDeskIcon = [
  1525. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1526. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1527. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1528. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1529. { "Name": "项目管理", "Url": "studentCourseS", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1532. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. ];
  1535. //010503
  1536. U.MD.D.I.x010503StudentDeskIcon = [
  1537. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1538. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1539. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1541. ];
  1542. //SPROUT Lab
  1543. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1546. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1547. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1548. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1549. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1550. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1551. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1552. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1553. ];
  1554. //SPROUT Lab
  1555. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1556. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1560. ];
  1561. //010204
  1562. U.MD.D.I.x010204TeacherDeskIcon = [
  1563. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1564. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1565. ];
  1566. //010204
  1567. U.MD.D.I.x010204StudentDeskIcon = [
  1568. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. ];
  1573. //trail
  1574. U.MD.D.I.trailTeacherDeskIcon = [
  1575. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1576. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1577. ];
  1578. //trail
  1579. U.MD.D.I.trailStudentDeskIcon = [
  1580. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1583. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1584. ];
  1585. //010504
  1586. U.MD.D.I.x010504TeacherDeskIcon = [
  1587. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1588. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1589. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1590. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1591. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1594. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1596. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1597. ];
  1598. //010504
  1599. U.MD.D.I.x010504StudentDeskIcon = [
  1600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1602. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1603. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1604. ];
  1605. //SCNUET
  1606. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1607. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1608. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1609. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1610. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1611. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1612. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1613. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1615. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1616. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1617. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1619. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1620. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1621. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1622. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1623. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1624. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1625. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1626. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1627. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1628. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1629. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1630. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1631. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1632. ];
  1633. //SCNUET
  1634. U.MD.D.I.SCNUETAdminDeskIcon = [
  1635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1639. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1640. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1641. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1642. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1643. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1644. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1645. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1646. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1647. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1648. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1649. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1650. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1651. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1653. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1654. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1655. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1656. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1657. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1658. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1659. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1660. ];
  1661. //SCNUET
  1662. U.MD.D.I.SCNUETStudentDeskIcon = [
  1663. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1664. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1665. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1666. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1667. ];
  1668. //x020201
  1669. U.MD.D.I.x020201TeacherDeskIcon = [
  1670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1675. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1676. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1677. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1678. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1679. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1680. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1681. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1682. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1683. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1684. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1685. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1686. ];
  1687. //x020201
  1688. U.MD.D.I.x020201AdminDeskIcon = [
  1689. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1690. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1691. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1692. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1693. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1694. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1695. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1696. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1697. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1699. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1700. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1701. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1702. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1703. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1704. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1705. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1706. ];
  1707. //020201
  1708. U.MD.D.I.x020201StudentDeskIcon = [
  1709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. ];
  1714. //010611
  1715. U.MD.D.I.x010611TeacherDeskIcon = [
  1716. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1717. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1719. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1720. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1724. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1725. ];
  1726. //010611
  1727. U.MD.D.I.x010611StudentDeskIcon = [
  1728. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1732. ];
  1733. //tianyuan
  1734. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1741. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1742. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1744. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1745. ];
  1746. //010611
  1747. U.MD.D.I.tianyuanStudentDeskIcon = [
  1748. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1749. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1752. ];
  1753. //#region 桌面初始化a
  1754. /**
  1755. * 初始化桌面的起始函数
  1756. *
  1757. */
  1758. U.MD.D.I.init = function () {
  1759. if ($("#U_MD_D_K")[0]) {
  1760. //初始化桌面图标
  1761. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1762. // var clickUrl = ':12588/requestIp.php';
  1763. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1764. // U.MD.D.I.Ip = data;
  1765. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1766. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1767. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1768. // })
  1769. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1770. // })
  1771. }
  1772. }
  1773. /**
  1774. * 模式切换
  1775. *
  1776. */
  1777. U.MD.D.I.ModeCheck = function (type) {
  1778. if (US.Config.type == type) {
  1779. return
  1780. }
  1781. US.Config.type = type
  1782. $('.U_PBL_Check .active')[0].className = ''
  1783. if (type == 1) {
  1784. $('.U_PBL_Check div')[0].className = 'active'
  1785. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1786. } else {
  1787. $('.U_PBL_Check div')[1].className = 'active'
  1788. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1789. }
  1790. //初始化桌面图标
  1791. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1792. if (type == 2) {
  1793. U.MD.D.I.openApplication("project")
  1794. }
  1795. }
  1796. /**
  1797. * 隐藏任务栏
  1798. *
  1799. * @param {element} 桌面元素
  1800. */
  1801. U.MD.D.I.hiddenTaskbar = function (el) {
  1802. //任务栏位置变小
  1803. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1804. //桌面的位置变大
  1805. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1806. }
  1807. /**
  1808. * 隐藏任务栏
  1809. *
  1810. * @param {element} 桌面元素
  1811. */
  1812. U.MD.D.I.hiddenTaskbarout = function (el) {
  1813. //任务栏位置变小
  1814. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1815. //任务栏位置变化
  1816. U.selectEl(el).css({ "bottom": "-60px" });
  1817. //桌面的位置变大
  1818. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1819. }
  1820. }
  1821. /**
  1822. * 初始化打印桌面图标
  1823. *
  1824. * @param {element} 桌面元素
  1825. */
  1826. U.MD.D.I.initDesktopIcons = function (el, type) {
  1827. var i, //用于循环
  1828. _content, //桌面图标元素
  1829. _iconcontent, //桌面图标元素
  1830. _frag = $$("frag"), //定义一个碎片元素
  1831. _type = US.userInfo.type,
  1832. _org = US.userInfo.org,
  1833. _oid = US.userInfo.organizeid,
  1834. _role = US.userInfo.role,
  1835. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1836. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1837. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1838. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1839. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1840. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1841. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1842. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1843. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1844. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1845. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1846. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1847. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1848. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1849. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1850. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1851. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1852. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1853. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1854. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1855. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1856. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1857. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1858. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1859. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1860. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1861. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1862. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1863. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1864. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1865. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1866. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1867. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1868. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1869. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1870. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1871. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1872. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1873. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1874. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1875. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1876. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1877. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1878. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1879. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1880. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1881. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1882. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1883. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1884. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1885. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1886. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1887. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1888. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1889. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1890. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1891. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1892. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1893. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1894. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1895. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1896. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1897. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1898. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1899. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1900. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1901. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1902. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1903. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1904. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1905. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1906. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1907. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1908. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1909. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1910. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1911. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1912. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1913. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1914. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1915. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1916. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1917. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1918. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1919. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1920. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1921. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1922. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1923. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1924. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1925. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1926. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1927. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1928. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1929. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1930. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1931. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1932. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1933. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1934. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1935. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1936. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1937. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1938. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1939. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1940. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1941. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1942. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1943. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1944. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1945. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1946. 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'];
  1947. 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'];
  1948. //清楚桌面图标
  1949. el.innerHTML = "";
  1950. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1951. _teacherDesktopIconInfo.push(
  1952. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1953. { "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)" } },
  1954. )
  1955. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1956. }
  1957. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1958. _teacherDesktopIconInfo.push(
  1959. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1960. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1961. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1962. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1963. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1964. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1965. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1966. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1967. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1968. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1969. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1970. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1971. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1972. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1973. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1974. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1975. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1976. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1977. )
  1978. }
  1979. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1980. _teacherDesktopIconInfo.push(
  1981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1982. )
  1983. }
  1984. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1985. // _teacherDesktopIconInfo.push(
  1986. // )
  1987. // }
  1988. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1989. _teacherDesktopIconInfo.push(
  1990. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1991. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1992. )
  1993. }
  1994. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1995. _teacherDesktopIconInfo.push(
  1996. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1997. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1998. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1999. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2000. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2001. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2002. )
  2003. _studentDesktopIconInfo.push(
  2004. )
  2005. }
  2006. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2007. _teacherDesktopIconInfo.push(
  2008. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2009. )
  2010. _studentDesktopIconInfo.push(
  2011. )
  2012. }
  2013. //010606 组织
  2014. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2015. _teacherDesktopIconInfo.push(
  2016. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2017. )
  2018. _studentDesktopIconInfo.push(
  2019. )
  2020. }
  2021. //麒麟二中 和 民新小学
  2022. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2023. _teacherDesktopIconInfo.push(
  2024. )
  2025. }
  2026. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2027. _teacherDesktopIconInfo.push(
  2028. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2029. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2030. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2031. )
  2032. }
  2033. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2034. _hkTeacherDeskIconInfo.push(
  2035. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2036. )
  2037. }
  2038. //北师大附中(010601)
  2039. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2040. // _teacherDesktopIconInfo.push(
  2041. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2042. // )
  2043. // _studentDesktopIconInfo.push(
  2044. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2045. // )
  2046. // }
  2047. //樂善堂余近卿中學
  2048. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2049. _teacherDesktopIconInfo.push(
  2050. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2051. )
  2052. }
  2053. // Education Artificial Intelligence
  2054. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2055. _teacherDesktopIconInfo.push(
  2056. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2057. )
  2058. }
  2059. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2060. _teacherDesktopIconInfo.push(
  2061. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2062. )
  2063. }
  2064. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2065. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2066. _teacherDesktopIconInfo.push(
  2067. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2068. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2069. )
  2070. }
  2071. //麒麟二中
  2072. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2073. _studentDesktopIconInfo.push(
  2074. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2075. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2076. )
  2077. }
  2078. //万科双语
  2079. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2080. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2081. if (el.Name == '项目管理') {
  2082. el.Name = 'PBL项目'
  2083. }
  2084. return el
  2085. })
  2086. _studentDesktopIconInfo3.push(
  2087. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2088. )
  2089. }
  2090. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2091. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2092. return el.Name != '魔盒识字' && el.Name != '24点'
  2093. })
  2094. }
  2095. 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) {
  2096. _studentDesktopIconInfo.push(
  2097. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2098. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2099. )
  2100. }
  2101. //循环创建桌面图标
  2102. if (type == 1) {
  2103. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2104. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2105. _content = $$("div", {
  2106. className: "U_MD_D_KO",
  2107. "onmousedown": U.UF.C.closure(function (obj) {
  2108. //防止拖动图标即打开了桌面应用
  2109. U.MD.D.click(this, obj);
  2110. }, [_studentDesktopIconInfo[i]]),
  2111. "onclick": U.UF.C.closure(function (obj) {
  2112. //防止拖动图标即打开了桌面应用
  2113. U.MD.D.click(this, obj);
  2114. }, [_studentDesktopIconInfo[i]])
  2115. }, _frag); //
  2116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2119. }
  2120. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2121. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2122. _content = $$("div", {
  2123. className: "U_MD_D_KO",
  2124. "onmousedown": U.UF.C.closure(function (obj) {
  2125. //防止拖动图标即打开了桌面应用
  2126. U.MD.D.click(this, obj);
  2127. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2128. "onclick": U.UF.C.closure(function (obj) {
  2129. //防止拖动图标即打开了桌面应用
  2130. U.MD.D.click(this, obj);
  2131. }, [_hkZJLSStudentDeskIconInfo[i]])
  2132. }, _frag); //
  2133. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2134. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2135. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2136. } //
  2137. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2138. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2139. _content = $$("div", {
  2140. className: "U_MD_D_KO",
  2141. "onmousedown": U.UF.C.closure(function (obj) {
  2142. //防止拖动图标即打开了桌面应用
  2143. U.MD.D.click(this, obj);
  2144. }, [_ytyStudentDeskIconInfo[i]]),
  2145. "onclick": U.UF.C.closure(function (obj) {
  2146. //防止拖动图标即打开了桌面应用
  2147. U.MD.D.click(this, obj);
  2148. }, [_ytyStudentDeskIconInfo[i]])
  2149. }, _frag); //
  2150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2153. } //
  2154. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2155. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2156. _content = $$("div", {
  2157. className: "U_MD_D_KO",
  2158. "onmousedown": U.UF.C.closure(function (obj) {
  2159. //防止拖动图标即打开了桌面应用
  2160. U.MD.D.click(this, obj);
  2161. }, [_jccssylStudentDeskIconInfo[i]]),
  2162. "onclick": U.UF.C.closure(function (obj) {
  2163. //防止拖动图标即打开了桌面应用
  2164. U.MD.D.click(this, obj);
  2165. }, [_jccssylStudentDeskIconInfo[i]])
  2166. }, _frag); //
  2167. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2168. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2169. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2170. }
  2171. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2172. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2173. _content = $$("div", {
  2174. className: "U_MD_D_KO",
  2175. "onmousedown": U.UF.C.closure(function (obj) {
  2176. //防止拖动图标即打开了桌面应用
  2177. U.MD.D.click(this, obj);
  2178. }, [_scnuaiStudentDeskIconInfo[i]]),
  2179. "onclick": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_scnuaiStudentDeskIconInfo[i]])
  2183. }, _frag); //
  2184. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2185. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2186. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2187. }
  2188. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2189. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2190. _content = $$("div", {
  2191. className: "U_MD_D_KO",
  2192. "onmousedown": U.UF.C.closure(function (obj) {
  2193. //防止拖动图标即打开了桌面应用
  2194. U.MD.D.click(this, obj);
  2195. }, [_caleStudentDeskIconInfo[i]]),
  2196. "onclick": U.UF.C.closure(function (obj) {
  2197. //防止拖动图标即打开了桌面应用
  2198. U.MD.D.click(this, obj);
  2199. }, [_caleStudentDeskIconInfo[i]])
  2200. }, _frag); //
  2201. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2202. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2203. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2204. }
  2205. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2206. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2207. _content = $$("div", {
  2208. className: "U_MD_D_KO",
  2209. "onmousedown": U.UF.C.closure(function (obj) {
  2210. //防止拖动图标即打开了桌面应用
  2211. U.MD.D.click(this, obj);
  2212. }, [_thuioeStudentDeskIconInfo[i]]),
  2213. "onclick": U.UF.C.closure(function (obj) {
  2214. //防止拖动图标即打开了桌面应用
  2215. U.MD.D.click(this, obj);
  2216. }, [_thuioeStudentDeskIconInfo[i]])
  2217. }, _frag); //
  2218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2221. }
  2222. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2223. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2224. _content = $$("div", {
  2225. className: "U_MD_D_KO",
  2226. "onmousedown": U.UF.C.closure(function (obj) {
  2227. //防止拖动图标即打开了桌面应用
  2228. U.MD.D.click(this, obj);
  2229. }, [_tpcStudentDeskIconInfo[i]]),
  2230. "onclick": U.UF.C.closure(function (obj) {
  2231. //防止拖动图标即打开了桌面应用
  2232. U.MD.D.click(this, obj);
  2233. }, [_tpcStudentDeskIconInfo[i]])
  2234. }, _frag); //
  2235. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2236. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2237. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2238. } //
  2239. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2240. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2241. _content = $$("div", {
  2242. className: "U_MD_D_KO",
  2243. "onmousedown": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_chjyjStudentDeskIconInfo[i]]),
  2247. "onclick": U.UF.C.closure(function (obj) {
  2248. //防止拖动图标即打开了桌面应用
  2249. U.MD.D.click(this, obj);
  2250. }, [_chjyjStudentDeskIconInfo[i]])
  2251. }, _frag); //
  2252. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2253. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2254. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2255. }
  2256. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2257. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2258. _content = $$("div", {
  2259. className: "U_MD_D_KO",
  2260. "onmousedown": U.UF.C.closure(function (obj) {
  2261. //防止拖动图标即打开了桌面应用
  2262. U.MD.D.click(this, obj);
  2263. }, [_szjkyStudentDeskIconInfo[i]]),
  2264. "onclick": U.UF.C.closure(function (obj) {
  2265. //防止拖动图标即打开了桌面应用
  2266. U.MD.D.click(this, obj);
  2267. }, [_szjkyStudentDeskIconInfo[i]])
  2268. }, _frag); //
  2269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2272. }
  2273. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2274. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2275. _content = $$("div", {
  2276. className: "U_MD_D_KO",
  2277. "onmousedown": U.UF.C.closure(function (obj) {
  2278. //防止拖动图标即打开了桌面应用
  2279. U.MD.D.click(this, obj);
  2280. }, [_x020201StudentDeskIconInfo[i]]),
  2281. "onclick": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_x020201StudentDeskIconInfo[i]])
  2285. }, _frag); //
  2286. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2287. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2288. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2289. }
  2290. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2291. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2292. _content = $$("div", {
  2293. className: "U_MD_D_KO",
  2294. "onmousedown": U.UF.C.closure(function (obj) {
  2295. //防止拖动图标即打开了桌面应用
  2296. U.MD.D.click(this, obj);
  2297. }, [_SCNUETStudentDeskIconInfo[i]]),
  2298. "onclick": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_SCNUETStudentDeskIconInfo[i]])
  2302. }, _frag); //
  2303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2306. }
  2307. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2308. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2309. _content = $$("div", {
  2310. className: "U_MD_D_KO",
  2311. "onmousedown": U.UF.C.closure(function (obj) {
  2312. //防止拖动图标即打开了桌面应用
  2313. U.MD.D.click(this, obj);
  2314. }, [_dseiStudentDeskIconInfo[i]]),
  2315. "onclick": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_dseiStudentDeskIconInfo[i]])
  2319. }, _frag); //
  2320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2323. }
  2324. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2325. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2326. _content = $$("div", {
  2327. className: "U_MD_D_KO",
  2328. "onmousedown": U.UF.C.closure(function (obj) {
  2329. //防止拖动图标即打开了桌面应用
  2330. U.MD.D.click(this, obj);
  2331. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2332. "onclick": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2336. }, _frag); //
  2337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2340. }
  2341. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2342. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2343. _content = $$("div", {
  2344. className: "U_MD_D_KO",
  2345. "onmousedown": U.UF.C.closure(function (obj) {
  2346. //防止拖动图标即打开了桌面应用
  2347. U.MD.D.click(this, obj);
  2348. }, [_nsfxStudentDeskIconInfo[i]]),
  2349. "onclick": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_nsfxStudentDeskIconInfo[i]])
  2353. }, _frag); //
  2354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2357. }
  2358. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2359. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2360. _content = $$("div", {
  2361. className: "U_MD_D_KO",
  2362. "onmousedown": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_stiaStudentDeskIconInfo[i]]),
  2366. "onclick": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_stiaStudentDeskIconInfo[i]])
  2370. }, _frag); //
  2371. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2372. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2373. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2374. }
  2375. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2376. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2377. _content = $$("div", {
  2378. className: "U_MD_D_KO",
  2379. "onmousedown": U.UF.C.closure(function (obj) {
  2380. //防止拖动图标即打开了桌面应用
  2381. U.MD.D.click(this, obj);
  2382. }, [_szdjgStudentDeskIconInfo[i]]),
  2383. "onclick": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_szdjgStudentDeskIconInfo[i]])
  2387. }, _frag); //
  2388. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2389. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2390. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2391. }
  2392. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2393. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2394. _content = $$("div", {
  2395. className: "U_MD_D_KO",
  2396. "onmousedown": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_x010607StudentDeskIconInfo[i]]),
  2400. "onclick": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_x010607StudentDeskIconInfo[i]])
  2404. }, _frag); //
  2405. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2406. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2407. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2408. }
  2409. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2410. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2411. _content = $$("div", {
  2412. className: "U_MD_D_KO",
  2413. "onmousedown": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_xhlyStudentDeskIconInfo[i]]),
  2417. "onclick": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_xhlyStudentDeskIconInfo[i]])
  2421. }, _frag); //
  2422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2425. }
  2426. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2427. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2428. _content = $$("div", {
  2429. className: "U_MD_D_KO",
  2430. "onmousedown": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2434. "onclick": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2438. }, _frag); //
  2439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2442. }
  2443. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2444. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2445. _content = $$("div", {
  2446. className: "U_MD_D_KO",
  2447. "onmousedown": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_x010503StudentDeskIconInfo[i]]),
  2451. "onclick": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_x010503StudentDeskIconInfo[i]])
  2455. }, _frag); //
  2456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2459. }
  2460. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2461. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2462. _content = $$("div", {
  2463. className: "U_MD_D_KO",
  2464. "onmousedown": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_x010504StudentDeskIconInfo[i]]),
  2468. "onclick": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_x010504StudentDeskIconInfo[i]])
  2472. }, _frag); //
  2473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2476. }
  2477. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2478. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2479. _content = $$("div", {
  2480. className: "U_MD_D_KO",
  2481. "onmousedown": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_x010204StudentDeskIconInfo[i]]),
  2485. "onclick": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_x010204StudentDeskIconInfo[i]])
  2489. }, _frag); //
  2490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2493. }
  2494. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2495. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2496. _content = $$("div", {
  2497. className: "U_MD_D_KO",
  2498. "onmousedown": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_trailStudentDeskIconInfo[i]]),
  2502. "onclick": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_trailStudentDeskIconInfo[i]])
  2506. }, _frag); //
  2507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2510. }
  2511. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2512. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2513. _content = $$("div", {
  2514. className: "U_MD_D_KO",
  2515. "onmousedown": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2519. "onclick": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2523. }, _frag); //
  2524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2527. }
  2528. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2529. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2530. _content = $$("div", {
  2531. className: "U_MD_D_KO",
  2532. "onmousedown": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_x010608StudentDeskIconInfo[i]]),
  2536. "onclick": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_x010608StudentDeskIconInfo[i]])
  2540. }, _frag); //
  2541. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2542. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2543. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2544. }
  2545. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2546. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2547. _content = $$("div", {
  2548. className: "U_MD_D_KO",
  2549. "onmousedown": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_x010611StudentDeskIconInfo[i]]),
  2553. "onclick": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_x010611StudentDeskIconInfo[i]])
  2557. }, _frag); //
  2558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2561. }
  2562. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2563. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2564. _content = $$("div", {
  2565. className: "U_MD_D_KO",
  2566. "onmousedown": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_tianyuantudentDeskIconInfo[i]]),
  2570. "onclick": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_tianyuantudentDeskIconInfo[i]])
  2574. }, _frag); //
  2575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2578. }
  2579. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2580. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2581. _content = $$("div", {
  2582. className: "U_MD_D_KO",
  2583. "onmousedown": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_siesStudentDeskIconInfo[i]]),
  2587. "onclick": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_siesStudentDeskIconInfo[i]])
  2591. }, _frag); //
  2592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2595. }
  2596. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2597. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2598. _content = $$("div", {
  2599. className: "U_MD_D_KO",
  2600. "onmousedown": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_guzmsStudentDeskIconInfo[i]]),
  2604. "onclick": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_guzmsStudentDeskIconInfo[i]])
  2608. }, _frag); //
  2609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2612. }
  2613. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2614. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2615. _content = $$("div", {
  2616. className: "U_MD_D_KO",
  2617. "onmousedown": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_hkStudentDeskIconInfo[i]]),
  2621. "onclick": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_hkStudentDeskIconInfo[i]])
  2625. }, _frag); //
  2626. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2629. }
  2630. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2631. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2632. _content = $$("div", {
  2633. className: "U_MD_D_KO",
  2634. "onmousedown": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_hkaceStudentDeskIconInfo[i]]),
  2638. "onclick": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_hkaceStudentDeskIconInfo[i]])
  2642. }, _frag); //
  2643. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2644. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2645. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2646. }
  2647. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2648. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2649. _content = $$("div", {
  2650. className: "U_MD_D_KO",
  2651. "onmousedown": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2655. "onclick": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_BSDNSstudentDesktopIconInfo[i]])
  2659. }, _frag); //
  2660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2663. }
  2664. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2665. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2666. _content = $$("div", {
  2667. className: "U_MD_D_KO",
  2668. "onmousedown": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_cocobizStudentDeskIconInfo[i]]),
  2672. "onclick": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_cocobizStudentDeskIconInfo[i]])
  2676. }, _frag); //
  2677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2680. }
  2681. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2682. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2683. _content = $$("div", {
  2684. className: "U_MD_D_KO",
  2685. "onmousedown": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2689. "onclick": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_xxzjkyStudentDeskIconInfo[i]])
  2693. }, _frag); //
  2694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2697. }
  2698. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2699. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2700. _content = $$("div", {
  2701. className: "U_MD_D_KO",
  2702. "onmousedown": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_studentDesktopIconInfo[i]]),
  2706. "onclick": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_studentDesktopIconInfo[i]])
  2710. }, _frag); //
  2711. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2712. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2713. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2714. }
  2715. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2716. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2717. _content = $$("div", {
  2718. className: "U_MD_D_KO",
  2719. "onmousedown": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_tcStudentDeskIconInfo[i]]),
  2723. "onclick": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_tcStudentDeskIconInfo[i]])
  2727. }, _frag); //
  2728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2731. }
  2732. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2733. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2734. _content = $$("div", {
  2735. className: "U_MD_D_KO",
  2736. "onmousedown": U.UF.C.closure(function (obj) {
  2737. //防止拖动图标即打开了桌面应用
  2738. U.MD.D.click(this, obj);
  2739. }, [_szscStudentDeskIconInfo[i]]),
  2740. "onclick": U.UF.C.closure(function (obj) {
  2741. //防止拖动图标即打开了桌面应用
  2742. U.MD.D.click(this, obj);
  2743. }, [_szscStudentDeskIconInfo[i]])
  2744. }, _frag); //
  2745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2748. }
  2749. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2750. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2751. _content = $$("div", {
  2752. className: "U_MD_D_KO",
  2753. "onmousedown": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_studentDesktopIconInfo3[i]]),
  2757. "onclick": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_studentDesktopIconInfo3[i]])
  2761. }, _frag); //
  2762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2765. }
  2766. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2767. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2768. _content = $$("div", {
  2769. className: "U_MD_D_KO",
  2770. "onmousedown": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_studentDesktopIconInfo2[i]]),
  2774. "onclick": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_studentDesktopIconInfo2[i]])
  2778. }, _frag); //
  2779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2782. }
  2783. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2784. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2785. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2786. continue
  2787. }
  2788. _content = $$("div", {
  2789. className: "U_MD_D_KO",
  2790. "onmousedown": U.UF.C.closure(function (obj) {
  2791. //防止拖动图标即打开了桌面应用
  2792. U.MD.D.click(this, obj);
  2793. }, [_wanketeacherDesktopIconInfo[i]]),
  2794. "onclick": U.UF.C.closure(function (obj) {
  2795. //防止拖动图标即打开了桌面应用
  2796. U.MD.D.click(this, obj);
  2797. }, [_wanketeacherDesktopIconInfo[i]])
  2798. }, _frag); //
  2799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2802. }
  2803. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2804. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2805. _content = $$("div", {
  2806. className: "U_MD_D_KO",
  2807. "onmousedown": U.UF.C.closure(function (obj) {
  2808. //防止拖动图标即打开了桌面应用
  2809. U.MD.D.click(this, obj);
  2810. }, [_wankeAdminDesktopIconInfo[i]]),
  2811. "onclick": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_wankeAdminDesktopIconInfo[i]])
  2815. }, _frag); //
  2816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2819. }
  2820. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2821. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2822. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2823. continue
  2824. }
  2825. _content = $$("div", {
  2826. className: "U_MD_D_KO",
  2827. "onmousedown": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2831. "onclick": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_scnuaiTeacherDeskIconInfo[i]])
  2835. }, _frag); //
  2836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2839. }
  2840. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2841. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2842. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2843. continue
  2844. }
  2845. _content = $$("div", {
  2846. className: "U_MD_D_KO",
  2847. "onmousedown": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2851. "onclick": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_BSDNSteacherDesktopIconInfo[i]])
  2855. }, _frag); //
  2856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2859. }
  2860. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2861. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2862. _content = $$("div", {
  2863. className: "U_MD_D_KO",
  2864. "onmousedown": U.UF.C.closure(function (obj) {
  2865. //防止拖动图标即打开了桌面应用
  2866. U.MD.D.click(this, obj);
  2867. }, [_scnuaiAdminDeskIconInfo[i]]),
  2868. "onclick": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_scnuaiAdminDeskIconInfo[i]])
  2872. }, _frag); //
  2873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2876. }
  2877. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2878. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2879. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2880. continue
  2881. }
  2882. _content = $$("div", {
  2883. className: "U_MD_D_KO",
  2884. "onmousedown": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_jccssylTeacherDeskIconInfo[i]]),
  2888. "onclick": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_jccssylTeacherDeskIconInfo[i]])
  2892. }, _frag); //
  2893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2896. }
  2897. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2898. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2899. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2900. continue
  2901. }
  2902. _content = $$("div", {
  2903. className: "U_MD_D_KO",
  2904. "onmousedown": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_caleTeacherDeskIconInfo[i]]),
  2908. "onclick": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_caleTeacherDeskIconInfo[i]])
  2912. }, _frag); //
  2913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2916. }
  2917. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2918. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2919. _content = $$("div", {
  2920. className: "U_MD_D_KO",
  2921. "onmousedown": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_tpcOrganizerDeskIconInfo[i]]),
  2925. "onclick": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_tpcOrganizerDeskIconInfo[i]])
  2929. }, _frag); //
  2930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2933. }
  2934. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2935. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2936. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2937. continue
  2938. }
  2939. _content = $$("div", {
  2940. className: "U_MD_D_KO",
  2941. "onmousedown": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_tpcTeacherDeskIconInfo[i]]),
  2945. "onclick": U.UF.C.closure(function (obj) {
  2946. //防止拖动图标即打开了桌面应用
  2947. U.MD.D.click(this, obj);
  2948. }, [_tpcTeacherDeskIconInfo[i]])
  2949. }, _frag); //
  2950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2953. }
  2954. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2955. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2956. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2957. continue
  2958. }
  2959. _content = $$("div", {
  2960. className: "U_MD_D_KO",
  2961. "onmousedown": U.UF.C.closure(function (obj) {
  2962. //防止拖动图标即打开了桌面应用
  2963. U.MD.D.click(this, obj);
  2964. }, [_teacherDesktopIconInfo2[i]]),
  2965. "onclick": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_teacherDesktopIconInfo2[i]])
  2969. }, _frag); //
  2970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2973. }
  2974. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2975. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2976. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2977. continue
  2978. }
  2979. _content = $$("div", {
  2980. className: "U_MD_D_KO",
  2981. "onmousedown": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_thuioeTeacherDeskIconInfo[i]]),
  2985. "onclick": U.UF.C.closure(function (obj) {
  2986. //防止拖动图标即打开了桌面应用
  2987. U.MD.D.click(this, obj);
  2988. }, [_thuioeTeacherDeskIconInfo[i]])
  2989. }, _frag); //
  2990. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2991. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2992. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2993. }
  2994. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2995. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2996. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2997. continue
  2998. }
  2999. _content = $$("div", {
  3000. className: "U_MD_D_KO",
  3001. "onmousedown": U.UF.C.closure(function (obj) {
  3002. //防止拖动图标即打开了桌面应用
  3003. U.MD.D.click(this, obj);
  3004. }, [_lotechTeacherDeskIconInfo[i]]),
  3005. "onclick": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_lotechTeacherDeskIconInfo[i]])
  3009. }, _frag); //
  3010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3013. }//
  3014. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3015. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3016. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3017. continue
  3018. }
  3019. _content = $$("div", {
  3020. className: "U_MD_D_KO",
  3021. "onmousedown": U.UF.C.closure(function (obj) {
  3022. //防止拖动图标即打开了桌面应用
  3023. U.MD.D.click(this, obj);
  3024. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3025. "onclick": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3029. }, _frag); //
  3030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3033. }
  3034. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3035. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3036. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3037. continue
  3038. }
  3039. _content = $$("div", {
  3040. className: "U_MD_D_KO",
  3041. "onmousedown": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_siesTeacherDeskIconInfo[i]]),
  3045. "onclick": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_siesTeacherDeskIconInfo[i]])
  3049. }, _frag); //
  3050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3053. }
  3054. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3055. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3056. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3057. continue
  3058. }
  3059. _content = $$("div", {
  3060. className: "U_MD_D_KO",
  3061. "onmousedown": U.UF.C.closure(function (obj) {
  3062. //防止拖动图标即打开了桌面应用
  3063. U.MD.D.click(this, obj);
  3064. }, [_guzmsTeacherDeskIconInfo[i]]),
  3065. "onclick": U.UF.C.closure(function (obj) {
  3066. //防止拖动图标即打开了桌面应用
  3067. U.MD.D.click(this, obj);
  3068. }, [_guzmsTeacherDeskIconInfo[i]])
  3069. }, _frag); //
  3070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3073. }
  3074. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3075. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3076. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3077. continue
  3078. }
  3079. _content = $$("div", {
  3080. className: "U_MD_D_KO",
  3081. "onmousedown": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_longhuaTeacherDeskIconInfo[i]]),
  3085. "onclick": U.UF.C.closure(function (obj) {
  3086. //防止拖动图标即打开了桌面应用
  3087. U.MD.D.click(this, obj);
  3088. }, [_longhuaTeacherDeskIconInfo[i]])
  3089. }, _frag); //
  3090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3093. }
  3094. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3095. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3096. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3097. continue
  3098. }
  3099. _content = $$("div", {
  3100. className: "U_MD_D_KO",
  3101. "onmousedown": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_ytyTeacherDeskIconInfo[i]]),
  3105. "onclick": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_ytyTeacherDeskIconInfo[i]])
  3109. }, _frag); //
  3110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3113. }
  3114. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3115. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3116. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3117. continue
  3118. }
  3119. _content = $$("div", {
  3120. className: "U_MD_D_KO",
  3121. "onmousedown": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3125. "onclick": U.UF.C.closure(function (obj) {
  3126. //防止拖动图标即打开了桌面应用
  3127. U.MD.D.click(this, obj);
  3128. }, [_yunhaiTeacherDeskIconInfo[i]])
  3129. }, _frag); //
  3130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3133. } //_hkStudentDeskIconInfo
  3134. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3135. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3136. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3137. continue
  3138. }
  3139. _content = $$("div", {
  3140. className: "U_MD_D_KO",
  3141. "onmousedown": U.UF.C.closure(function (obj) {
  3142. //防止拖动图标即打开了桌面应用
  3143. U.MD.D.click(this, obj);
  3144. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3145. "onclick": U.UF.C.closure(function (obj) {
  3146. //防止拖动图标即打开了桌面应用
  3147. U.MD.D.click(this, obj);
  3148. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3149. }, _frag); //
  3150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3153. }
  3154. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3155. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3156. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3157. continue
  3158. }
  3159. _content = $$("div", {
  3160. className: "U_MD_D_KO",
  3161. "onmousedown": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_hkTeacherDeskIconInfo[i]]),
  3165. "onclick": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_hkTeacherDeskIconInfo[i]])
  3169. }, _frag); //
  3170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3173. }
  3174. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3175. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3176. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3177. continue
  3178. }
  3179. _content = $$("div", {
  3180. className: "U_MD_D_KO",
  3181. "onmousedown": U.UF.C.closure(function (obj) {
  3182. //防止拖动图标即打开了桌面应用
  3183. U.MD.D.click(this, obj);
  3184. }, [_hkaceTeacherDeskIconInfo[i]]),
  3185. "onclick": U.UF.C.closure(function (obj) {
  3186. //防止拖动图标即打开了桌面应用
  3187. U.MD.D.click(this, obj);
  3188. }, [_hkaceTeacherDeskIconInfo[i]])
  3189. }, _frag); //
  3190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3193. }
  3194. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3195. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3196. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3197. continue
  3198. }
  3199. _content = $$("div", {
  3200. className: "U_MD_D_KO",
  3201. "onmousedown": U.UF.C.closure(function (obj) {
  3202. //防止拖动图标即打开了桌面应用
  3203. U.MD.D.click(this, obj);
  3204. }, [_cocobizTeacherDeskIconInfo[i]]),
  3205. "onclick": U.UF.C.closure(function (obj) {
  3206. //防止拖动图标即打开了桌面应用
  3207. U.MD.D.click(this, obj);
  3208. }, [_cocobizTeacherDeskIconInfo[i]])
  3209. }, _frag); //
  3210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3213. }
  3214. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3215. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3216. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3217. continue
  3218. }
  3219. _content = $$("div", {
  3220. className: "U_MD_D_KO",
  3221. "onmousedown": U.UF.C.closure(function (obj) {
  3222. //防止拖动图标即打开了桌面应用
  3223. U.MD.D.click(this, obj);
  3224. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3225. "onclick": U.UF.C.closure(function (obj) {
  3226. //防止拖动图标即打开了桌面应用
  3227. U.MD.D.click(this, obj);
  3228. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3229. }, _frag); //
  3230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3233. }
  3234. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3235. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3236. _content = $$("div", {
  3237. className: "U_MD_D_KO",
  3238. "onmousedown": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_gdjgAdminDeskIconInfo[i]]),
  3242. "onclick": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_gdjgAdminDeskIconInfo[i]])
  3246. }, _frag); //
  3247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3250. }
  3251. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3252. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3253. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3254. continue
  3255. }
  3256. _content = $$("div", {
  3257. className: "U_MD_D_KO",
  3258. "onmousedown": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_gdjgTeacherDeskIconInfo[i]]),
  3262. "onclick": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_gdjgTeacherDeskIconInfo[i]])
  3266. }, _frag); //
  3267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3270. }
  3271. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3272. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3273. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3274. continue
  3275. }
  3276. _content = $$("div", {
  3277. className: "U_MD_D_KO",
  3278. "onmousedown": U.UF.C.closure(function (obj) {
  3279. //防止拖动图标即打开了桌面应用
  3280. U.MD.D.click(this, obj);
  3281. }, [_szherTeacherDeskIconInfo[i]]),
  3282. "onclick": U.UF.C.closure(function (obj) {
  3283. //防止拖动图标即打开了桌面应用
  3284. U.MD.D.click(this, obj);
  3285. }, [_szherTeacherDeskIconInfo[i]])
  3286. }, _frag); //
  3287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3290. }
  3291. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3292. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3293. _content = $$("div", {
  3294. className: "U_MD_D_KO",
  3295. "onmousedown": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_heyuannAdminDeskIconInfo[i]]),
  3299. "onclick": U.UF.C.closure(function (obj) {
  3300. //防止拖动图标即打开了桌面应用
  3301. U.MD.D.click(this, obj);
  3302. }, [_heyuannAdminDeskIconInfo[i]])
  3303. }, _frag); //
  3304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3307. }
  3308. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3309. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3310. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3311. continue
  3312. }
  3313. _content = $$("div", {
  3314. className: "U_MD_D_KO",
  3315. "onmousedown": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_heyuanTeacherDeskIconInfo[i]]),
  3319. "onclick": U.UF.C.closure(function (obj) {
  3320. //防止拖动图标即打开了桌面应用
  3321. U.MD.D.click(this, obj);
  3322. }, [_heyuanTeacherDeskIconInfo[i]])
  3323. }, _frag); //
  3324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3327. } //
  3328. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3329. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3330. _content = $$("div", {
  3331. className: "U_MD_D_KO",
  3332. "onmousedown": U.UF.C.closure(function (obj) {
  3333. //防止拖动图标即打开了桌面应用
  3334. U.MD.D.click(this, obj);
  3335. }, [_dseiAdminDeskIconInfo[i]]),
  3336. "onclick": U.UF.C.closure(function (obj) {
  3337. //防止拖动图标即打开了桌面应用
  3338. U.MD.D.click(this, obj);
  3339. }, [_dseiAdminDeskIconInfo[i]])
  3340. }, _frag); //
  3341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3344. }
  3345. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3346. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3347. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3348. continue
  3349. }
  3350. _content = $$("div", {
  3351. className: "U_MD_D_KO",
  3352. "onmousedown": U.UF.C.closure(function (obj) {
  3353. //防止拖动图标即打开了桌面应用
  3354. U.MD.D.click(this, obj);
  3355. }, [_dseiTeacherDeskIconInfo[i]]),
  3356. "onclick": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_dseiTeacherDeskIconInfo[i]])
  3360. }, _frag); //
  3361. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3362. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3363. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3364. } //
  3365. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3366. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3367. _content = $$("div", {
  3368. className: "U_MD_D_KO",
  3369. "onmousedown": U.UF.C.closure(function (obj) {
  3370. //防止拖动图标即打开了桌面应用
  3371. U.MD.D.click(this, obj);
  3372. }, [_chjyjAdminDeskIconInfo[i]]),
  3373. "onclick": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_chjyjAdminDeskIconInfo[i]])
  3377. }, _frag); //
  3378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3381. }//
  3382. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3383. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3384. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3385. continue
  3386. }
  3387. _content = $$("div", {
  3388. className: "U_MD_D_KO",
  3389. "onmousedown": U.UF.C.closure(function (obj) {
  3390. //防止拖动图标即打开了桌面应用
  3391. U.MD.D.click(this, obj);
  3392. }, [_chjyjTeacherDeskIconInfo[i]]),
  3393. "onclick": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_chjyjTeacherDeskIconInfo[i]])
  3397. }, _frag); //
  3398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3401. }
  3402. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3403. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3404. _content = $$("div", {
  3405. className: "U_MD_D_KO",
  3406. "onmousedown": U.UF.C.closure(function (obj) {
  3407. //防止拖动图标即打开了桌面应用
  3408. U.MD.D.click(this, obj);
  3409. }, [_szjkyAdminDeskIconInfo[i]]),
  3410. "onclick": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_szjkyAdminDeskIconInfo[i]])
  3414. }, _frag); //
  3415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3418. }//
  3419. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3420. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3421. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3422. continue
  3423. }
  3424. _content = $$("div", {
  3425. className: "U_MD_D_KO",
  3426. "onmousedown": U.UF.C.closure(function (obj) {
  3427. //防止拖动图标即打开了桌面应用
  3428. U.MD.D.click(this, obj);
  3429. }, [_szjkyTeacherDeskIconInfo[i]]),
  3430. "onclick": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_szjkyTeacherDeskIconInfo[i]])
  3434. }, _frag); //
  3435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3438. }
  3439. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3440. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3441. _content = $$("div", {
  3442. className: "U_MD_D_KO",
  3443. "onmousedown": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_x020201AdminDeskIconInfo[i]]),
  3447. "onclick": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_x020201AdminDeskIconInfo[i]])
  3451. }, _frag); //
  3452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3455. }//
  3456. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3457. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3458. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3459. continue
  3460. }
  3461. _content = $$("div", {
  3462. className: "U_MD_D_KO",
  3463. "onmousedown": U.UF.C.closure(function (obj) {
  3464. //防止拖动图标即打开了桌面应用
  3465. U.MD.D.click(this, obj);
  3466. }, [_x020201TeacherDeskIconInfo[i]]),
  3467. "onclick": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_x020201TeacherDeskIconInfo[i]])
  3471. }, _frag); //
  3472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3475. }
  3476. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3477. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3478. _content = $$("div", {
  3479. className: "U_MD_D_KO",
  3480. "onmousedown": U.UF.C.closure(function (obj) {
  3481. //防止拖动图标即打开了桌面应用
  3482. U.MD.D.click(this, obj);
  3483. }, [_SCNUETAdminDeskIconInfo[i]]),
  3484. "onclick": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_SCNUETAdminDeskIconInfo[i]])
  3488. }, _frag); //
  3489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3492. }//
  3493. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3494. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3495. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3496. continue
  3497. }
  3498. _content = $$("div", {
  3499. className: "U_MD_D_KO",
  3500. "onmousedown": U.UF.C.closure(function (obj) {
  3501. //防止拖动图标即打开了桌面应用
  3502. U.MD.D.click(this, obj);
  3503. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3504. "onclick": U.UF.C.closure(function (obj) {
  3505. //防止拖动图标即打开了桌面应用
  3506. U.MD.D.click(this, obj);
  3507. }, [_SCNUETTeacherDeskIconInfo[i]])
  3508. }, _frag); //
  3509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3512. }
  3513. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3514. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3515. _content = $$("div", {
  3516. className: "U_MD_D_KO",
  3517. "onmousedown": U.UF.C.closure(function (obj) {
  3518. //防止拖动图标即打开了桌面应用
  3519. U.MD.D.click(this, obj);
  3520. }, [_futianAdminDeskIconInfo[i]]),
  3521. "onclick": U.UF.C.closure(function (obj) {
  3522. //防止拖动图标即打开了桌面应用
  3523. U.MD.D.click(this, obj);
  3524. }, [_futianAdminDeskIconInfo[i]])
  3525. }, _frag); //
  3526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3529. }
  3530. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3531. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3532. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3533. continue
  3534. }
  3535. _content = $$("div", {
  3536. className: "U_MD_D_KO",
  3537. "onmousedown": U.UF.C.closure(function (obj) {
  3538. //防止拖动图标即打开了桌面应用
  3539. U.MD.D.click(this, obj);
  3540. }, [_futianTeacherDeskIconInfo[i]]),
  3541. "onclick": U.UF.C.closure(function (obj) {
  3542. //防止拖动图标即打开了桌面应用
  3543. U.MD.D.click(this, obj);
  3544. }, [_futianTeacherDeskIconInfo[i]])
  3545. }, _frag); //
  3546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3549. }
  3550. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3551. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3552. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3553. continue
  3554. }
  3555. _content = $$("div", {
  3556. className: "U_MD_D_KO",
  3557. "onmousedown": U.UF.C.closure(function (obj) {
  3558. //防止拖动图标即打开了桌面应用
  3559. U.MD.D.click(this, obj);
  3560. }, [_MingdeTeacherDeskIcon[i]]),
  3561. "onclick": U.UF.C.closure(function (obj) {
  3562. //防止拖动图标即打开了桌面应用
  3563. U.MD.D.click(this, obj);
  3564. }, [_MingdeTeacherDeskIcon[i]])
  3565. }, _frag); //
  3566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3569. }
  3570. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3571. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3572. _content = $$("div", {
  3573. className: "U_MD_D_KO",
  3574. "onmousedown": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_lhsAdminDesktopIconInfo[i]]),
  3578. "onclick": U.UF.C.closure(function (obj) {
  3579. //防止拖动图标即打开了桌面应用
  3580. U.MD.D.click(this, obj);
  3581. }, [_lhsAdminDesktopIconInfo[i]])
  3582. }, _frag); //
  3583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3586. }
  3587. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3588. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3589. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3590. continue
  3591. }
  3592. _content = $$("div", {
  3593. className: "U_MD_D_KO",
  3594. "onmousedown": U.UF.C.closure(function (obj) {
  3595. //防止拖动图标即打开了桌面应用
  3596. U.MD.D.click(this, obj);
  3597. }, [_lhsteacherDesktopIconInfo[i]]),
  3598. "onclick": U.UF.C.closure(function (obj) {
  3599. //防止拖动图标即打开了桌面应用
  3600. U.MD.D.click(this, obj);
  3601. }, [_lhsteacherDesktopIconInfo[i]])
  3602. }, _frag); //
  3603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3606. }
  3607. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3608. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3609. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3610. continue
  3611. }
  3612. _content = $$("div", {
  3613. className: "U_MD_D_KO",
  3614. "onmousedown": U.UF.C.closure(function (obj) {
  3615. //防止拖动图标即打开了桌面应用
  3616. U.MD.D.click(this, obj);
  3617. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3618. "onclick": U.UF.C.closure(function (obj) {
  3619. //防止拖动图标即打开了桌面应用
  3620. U.MD.D.click(this, obj);
  3621. }, [_zhoujiateacherDesktopIconInfo[i]])
  3622. }, _frag); //
  3623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3626. }
  3627. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3628. for (i = 0; i < _hanDeskIcon.length; i++) {
  3629. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3630. continue
  3631. }
  3632. _content = $$("div", {
  3633. className: "U_MD_D_KO",
  3634. "onmousedown": U.UF.C.closure(function (obj) {
  3635. //防止拖动图标即打开了桌面应用
  3636. U.MD.D.click(this, obj);
  3637. }, [_hanDeskIcon[i]]),
  3638. "onclick": U.UF.C.closure(function (obj) {
  3639. //防止拖动图标即打开了桌面应用
  3640. U.MD.D.click(this, obj);
  3641. }, [_hanDeskIcon[i]])
  3642. }, _frag); //
  3643. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3644. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3645. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3646. }
  3647. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3648. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3649. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3650. continue
  3651. }
  3652. _content = $$("div", {
  3653. className: "U_MD_D_KO",
  3654. "onmousedown": U.UF.C.closure(function (obj) {
  3655. //防止拖动图标即打开了桌面应用
  3656. U.MD.D.click(this, obj);
  3657. }, [_orgStemDeskIcon[i]]),
  3658. "onclick": U.UF.C.closure(function (obj) {
  3659. //防止拖动图标即打开了桌面应用
  3660. U.MD.D.click(this, obj);
  3661. }, [_orgStemDeskIcon[i]])
  3662. }, _frag); //
  3663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3666. }
  3667. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3668. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3669. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3670. continue
  3671. }
  3672. _content = $$("div", {
  3673. className: "U_MD_D_KO",
  3674. "onmousedown": U.UF.C.closure(function (obj) {
  3675. //防止拖动图标即打开了桌面应用
  3676. U.MD.D.click(this, obj);
  3677. }, [_szulsDeskIcon[i]]),
  3678. "onclick": U.UF.C.closure(function (obj) {
  3679. //防止拖动图标即打开了桌面应用
  3680. U.MD.D.click(this, obj);
  3681. }, [_szulsDeskIcon[i]])
  3682. }, _frag); //
  3683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3686. }
  3687. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3688. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3689. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3690. continue
  3691. }
  3692. _content = $$("div", {
  3693. className: "U_MD_D_KO",
  3694. "onmousedown": U.UF.C.closure(function (obj) {
  3695. //防止拖动图标即打开了桌面应用
  3696. U.MD.D.click(this, obj);
  3697. }, [_orgDesktopIconInfo[i]]),
  3698. "onclick": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_orgDesktopIconInfo[i]])
  3702. }, _frag); //
  3703. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3706. }
  3707. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3708. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3709. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3710. continue
  3711. }
  3712. _content = $$("div", {
  3713. className: "U_MD_D_KO",
  3714. "onmousedown": U.UF.C.closure(function (obj) {
  3715. //防止拖动图标即打开了桌面应用
  3716. U.MD.D.click(this, obj);
  3717. }, [_schoolDesktopIconInfo[i]]),
  3718. "onclick": U.UF.C.closure(function (obj) {
  3719. //防止拖动图标即打开了桌面应用
  3720. U.MD.D.click(this, obj);
  3721. }, [_schoolDesktopIconInfo[i]])
  3722. }, _frag); //
  3723. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3724. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3725. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3726. }
  3727. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3728. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3729. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3730. continue
  3731. }
  3732. _content = $$("div", {
  3733. className: "U_MD_D_KO",
  3734. "onmousedown": U.UF.C.closure(function (obj) {
  3735. //防止拖动图标即打开了桌面应用
  3736. U.MD.D.click(this, obj);
  3737. }, [_GMteacherDesktopIconInfo[i]]),
  3738. "onclick": U.UF.C.closure(function (obj) {
  3739. //防止拖动图标即打开了桌面应用
  3740. U.MD.D.click(this, obj);
  3741. }, [_GMteacherDesktopIconInfo[i]])
  3742. }, _frag); //
  3743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3746. }
  3747. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3748. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3749. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3750. continue
  3751. }
  3752. _content = $$("div", {
  3753. className: "U_MD_D_KO",
  3754. "onmousedown": U.UF.C.closure(function (obj) {
  3755. //防止拖动图标即打开了桌面应用
  3756. U.MD.D.click(this, obj);
  3757. }, [_SONGteacherDesktopIconInfo[i]]),
  3758. "onclick": U.UF.C.closure(function (obj) {
  3759. //防止拖动图标即打开了桌面应用
  3760. U.MD.D.click(this, obj);
  3761. }, [_SONGteacherDesktopIconInfo[i]])
  3762. }, _frag); //
  3763. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3764. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3765. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3766. }
  3767. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3768. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3769. _content = $$("div", {
  3770. className: "U_MD_D_KO",
  3771. "onmousedown": U.UF.C.closure(function (obj) {
  3772. //防止拖动图标即打开了桌面应用
  3773. U.MD.D.click(this, obj);
  3774. }, [_GMstudentDesktopIconInfo[i]]),
  3775. "onclick": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_GMstudentDesktopIconInfo[i]])
  3779. }, _frag); //
  3780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3783. }
  3784. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3785. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3786. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3787. continue
  3788. }
  3789. _content = $$("div", {
  3790. className: "U_MD_D_KO",
  3791. "onmousedown": U.UF.C.closure(function (obj) {
  3792. //防止拖动图标即打开了桌面应用
  3793. U.MD.D.click(this, obj);
  3794. }, [_tcTeacherDeskIconInfo[i]]),
  3795. "onclick": U.UF.C.closure(function (obj) {
  3796. //防止拖动图标即打开了桌面应用
  3797. U.MD.D.click(this, obj);
  3798. }, [_tcTeacherDeskIconInfo[i]])
  3799. }, _frag); //
  3800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3803. }
  3804. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3805. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3806. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3807. continue
  3808. }
  3809. _content = $$("div", {
  3810. className: "U_MD_D_KO",
  3811. "onmousedown": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_tcOrganizerDeskIconInfo[i]]),
  3815. "onclick": U.UF.C.closure(function (obj) {
  3816. //防止拖动图标即打开了桌面应用
  3817. U.MD.D.click(this, obj);
  3818. }, [_tcOrganizerDeskIconInfo[i]])
  3819. }, _frag); //
  3820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3823. }
  3824. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3825. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3826. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3827. continue
  3828. }
  3829. _content = $$("div", {
  3830. className: "U_MD_D_KO",
  3831. "onmousedown": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_szscTeacherDeskIconInfo[i]]),
  3835. "onclick": U.UF.C.closure(function (obj) {
  3836. //防止拖动图标即打开了桌面应用
  3837. U.MD.D.click(this, obj);
  3838. }, [_szscTeacherDeskIconInfo[i]])
  3839. }, _frag); //
  3840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3843. }
  3844. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3845. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3846. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3847. continue
  3848. }
  3849. _content = $$("div", {
  3850. className: "U_MD_D_KO",
  3851. "onmousedown": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_szscOrganizerDeskIconInfo[i]]),
  3855. "onclick": U.UF.C.closure(function (obj) {
  3856. //防止拖动图标即打开了桌面应用
  3857. U.MD.D.click(this, obj);
  3858. }, [_szscOrganizerDeskIconInfo[i]])
  3859. }, _frag); //
  3860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3863. }
  3864. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3865. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3866. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3867. continue
  3868. }
  3869. _content = $$("div", {
  3870. className: "U_MD_D_KO",
  3871. "onmousedown": U.UF.C.closure(function (obj) {
  3872. //防止拖动图标即打开了桌面应用
  3873. U.MD.D.click(this, obj);
  3874. }, [_nsfxTeacherDeskIconInfo[i]]),
  3875. "onclick": U.UF.C.closure(function (obj) {
  3876. //防止拖动图标即打开了桌面应用
  3877. U.MD.D.click(this, obj);
  3878. }, [_nsfxTeacherDeskIconInfo[i]])
  3879. }, _frag); //
  3880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3883. }
  3884. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3885. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3886. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3887. continue
  3888. }
  3889. _content = $$("div", {
  3890. className: "U_MD_D_KO",
  3891. "onmousedown": U.UF.C.closure(function (obj) {
  3892. //防止拖动图标即打开了桌面应用
  3893. U.MD.D.click(this, obj);
  3894. }, [_stiaTeacherDeskIconInfo[i]]),
  3895. "onclick": U.UF.C.closure(function (obj) {
  3896. //防止拖动图标即打开了桌面应用
  3897. U.MD.D.click(this, obj);
  3898. }, [_stiaTeacherDeskIconInfo[i]])
  3899. }, _frag); //
  3900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3903. }
  3904. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3905. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3906. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3907. continue
  3908. }
  3909. _content = $$("div", {
  3910. className: "U_MD_D_KO",
  3911. "onmousedown": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_szdjgTeacherDeskIconInfo[i]]),
  3915. "onclick": U.UF.C.closure(function (obj) {
  3916. //防止拖动图标即打开了桌面应用
  3917. U.MD.D.click(this, obj);
  3918. }, [_szdjgTeacherDeskIconInfo[i]])
  3919. }, _frag); //
  3920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3923. }
  3924. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3925. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3926. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3927. continue
  3928. }
  3929. _content = $$("div", {
  3930. className: "U_MD_D_KO",
  3931. "onmousedown": U.UF.C.closure(function (obj) {
  3932. //防止拖动图标即打开了桌面应用
  3933. U.MD.D.click(this, obj);
  3934. }, [_x010607TeacherDeskIconInfo[i]]),
  3935. "onclick": U.UF.C.closure(function (obj) {
  3936. //防止拖动图标即打开了桌面应用
  3937. U.MD.D.click(this, obj);
  3938. }, [_x010607TeacherDeskIconInfo[i]])
  3939. }, _frag); //
  3940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3943. }
  3944. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3945. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3946. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3947. continue
  3948. }
  3949. _content = $$("div", {
  3950. className: "U_MD_D_KO",
  3951. "onmousedown": U.UF.C.closure(function (obj) {
  3952. //防止拖动图标即打开了桌面应用
  3953. U.MD.D.click(this, obj);
  3954. }, [_xhlyTeacherDeskIconInfo[i]]),
  3955. "onclick": U.UF.C.closure(function (obj) {
  3956. //防止拖动图标即打开了桌面应用
  3957. U.MD.D.click(this, obj);
  3958. }, [_xhlyTeacherDeskIconInfo[i]])
  3959. }, _frag); //
  3960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3963. }
  3964. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3965. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3966. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3967. continue
  3968. }
  3969. _content = $$("div", {
  3970. className: "U_MD_D_KO",
  3971. "onmousedown": U.UF.C.closure(function (obj) {
  3972. //防止拖动图标即打开了桌面应用
  3973. U.MD.D.click(this, obj);
  3974. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3975. "onclick": U.UF.C.closure(function (obj) {
  3976. //防止拖动图标即打开了桌面应用
  3977. U.MD.D.click(this, obj);
  3978. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3979. }, _frag); //
  3980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3983. }
  3984. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3985. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3986. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3987. continue
  3988. }
  3989. _content = $$("div", {
  3990. className: "U_MD_D_KO",
  3991. "onmousedown": U.UF.C.closure(function (obj) {
  3992. //防止拖动图标即打开了桌面应用
  3993. U.MD.D.click(this, obj);
  3994. }, [_x010503TeacherDeskIconInfo[i]]),
  3995. "onclick": U.UF.C.closure(function (obj) {
  3996. //防止拖动图标即打开了桌面应用
  3997. U.MD.D.click(this, obj);
  3998. }, [_x010503TeacherDeskIconInfo[i]])
  3999. }, _frag); //
  4000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4003. }
  4004. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4005. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4006. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4007. continue
  4008. }
  4009. _content = $$("div", {
  4010. className: "U_MD_D_KO",
  4011. "onmousedown": U.UF.C.closure(function (obj) {
  4012. //防止拖动图标即打开了桌面应用
  4013. U.MD.D.click(this, obj);
  4014. }, [_x010504TeacherDeskIconInfo[i]]),
  4015. "onclick": U.UF.C.closure(function (obj) {
  4016. //防止拖动图标即打开了桌面应用
  4017. U.MD.D.click(this, obj);
  4018. }, [_x010504TeacherDeskIconInfo[i]])
  4019. }, _frag); //
  4020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4023. }
  4024. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4025. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4026. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4027. continue
  4028. }
  4029. _content = $$("div", {
  4030. className: "U_MD_D_KO",
  4031. "onmousedown": U.UF.C.closure(function (obj) {
  4032. //防止拖动图标即打开了桌面应用
  4033. U.MD.D.click(this, obj);
  4034. }, [_x010204TeacherDeskIconInfo[i]]),
  4035. "onclick": U.UF.C.closure(function (obj) {
  4036. //防止拖动图标即打开了桌面应用
  4037. U.MD.D.click(this, obj);
  4038. }, [_x010204TeacherDeskIconInfo[i]])
  4039. }, _frag); //
  4040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4043. }
  4044. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4045. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4046. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4047. continue
  4048. }
  4049. _content = $$("div", {
  4050. className: "U_MD_D_KO",
  4051. "onmousedown": U.UF.C.closure(function (obj) {
  4052. //防止拖动图标即打开了桌面应用
  4053. U.MD.D.click(this, obj);
  4054. }, [_trailTeacherDeskIconInfo[i]]),
  4055. "onclick": U.UF.C.closure(function (obj) {
  4056. //防止拖动图标即打开了桌面应用
  4057. U.MD.D.click(this, obj);
  4058. }, [_trailTeacherDeskIconInfo[i]])
  4059. }, _frag); //
  4060. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4061. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4062. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4063. }
  4064. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4065. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4066. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4067. continue
  4068. }
  4069. _content = $$("div", {
  4070. className: "U_MD_D_KO",
  4071. "onmousedown": U.UF.C.closure(function (obj) {
  4072. //防止拖动图标即打开了桌面应用
  4073. U.MD.D.click(this, obj);
  4074. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4075. "onclick": U.UF.C.closure(function (obj) {
  4076. //防止拖动图标即打开了桌面应用
  4077. U.MD.D.click(this, obj);
  4078. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4079. }, _frag); //
  4080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4083. }
  4084. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4085. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4086. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4087. continue
  4088. }
  4089. _content = $$("div", {
  4090. className: "U_MD_D_KO",
  4091. "onmousedown": U.UF.C.closure(function (obj) {
  4092. //防止拖动图标即打开了桌面应用
  4093. U.MD.D.click(this, obj);
  4094. }, [_x010608TeacherDeskIconInfo[i]]),
  4095. "onclick": U.UF.C.closure(function (obj) {
  4096. //防止拖动图标即打开了桌面应用
  4097. U.MD.D.click(this, obj);
  4098. }, [_x010608TeacherDeskIconInfo[i]])
  4099. }, _frag); //
  4100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4103. }
  4104. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4105. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4106. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4107. continue
  4108. }
  4109. _content = $$("div", {
  4110. className: "U_MD_D_KO",
  4111. "onmousedown": U.UF.C.closure(function (obj) {
  4112. //防止拖动图标即打开了桌面应用
  4113. U.MD.D.click(this, obj);
  4114. }, [_x010611TeacherDeskIconInfo[i]]),
  4115. "onclick": U.UF.C.closure(function (obj) {
  4116. //防止拖动图标即打开了桌面应用
  4117. U.MD.D.click(this, obj);
  4118. }, [_x010611TeacherDeskIconInfo[i]])
  4119. }, _frag); //
  4120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4123. }
  4124. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4125. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4126. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4127. continue
  4128. }
  4129. _content = $$("div", {
  4130. className: "U_MD_D_KO",
  4131. "onmousedown": U.UF.C.closure(function (obj) {
  4132. //防止拖动图标即打开了桌面应用
  4133. U.MD.D.click(this, obj);
  4134. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4135. "onclick": U.UF.C.closure(function (obj) {
  4136. //防止拖动图标即打开了桌面应用
  4137. U.MD.D.click(this, obj);
  4138. }, [_tianyuanTeacherDeskIconInfo[i]])
  4139. }, _frag); //
  4140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4143. }
  4144. } else {
  4145. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4146. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4147. continue
  4148. }
  4149. _content = $$("div", {
  4150. className: "U_MD_D_KO",
  4151. "onmousedown": U.UF.C.closure(function (obj) {
  4152. //防止拖动图标即打开了桌面应用
  4153. U.MD.D.click(this, obj);
  4154. }, [_teacherDesktopIconInfo[i]]),
  4155. "onclick": U.UF.C.closure(function (obj) {
  4156. //防止拖动图标即打开了桌面应用
  4157. U.MD.D.click(this, obj);
  4158. }, [_teacherDesktopIconInfo[i]])
  4159. }, _frag); //
  4160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4163. }
  4164. }
  4165. } else {
  4166. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4167. _content = $$("div", {
  4168. className: "U_MD_D_KO",
  4169. style: { 'width': '124px', 'height': '145px' },
  4170. "onmousedown": U.UF.C.closure(function (obj) {
  4171. //防止拖动图标即打开了桌面应用
  4172. U.MD.D.click(this, obj);
  4173. }, [_easyDesktopIconInfo[i]]),
  4174. "onclick": U.UF.C.closure(function (obj) {
  4175. //防止拖动图标即打开了桌面应用
  4176. U.MD.D.click(this, obj);
  4177. }, [_easyDesktopIconInfo[i]])
  4178. }, _frag); //
  4179. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4182. }
  4183. }
  4184. if (type == 1) {
  4185. //加载好后给图标定位
  4186. U.MD.D.iconPostion($(_frag).Child());
  4187. } else {
  4188. //加载好后给图标定位
  4189. U.MD.D.iconPostion2($(_frag).Child());
  4190. }
  4191. //把图标加载到页面
  4192. el.appendChild(_frag);
  4193. }
  4194. /**
  4195. * 显示任务栏
  4196. *
  4197. * @param {element} 桌面元素
  4198. */
  4199. U.MD.D.I.displayTaskbar = function (el) {
  4200. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4201. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4202. //任务栏位置变化
  4203. U.selectEl(el).css({ "bottom": "0px" });
  4204. //桌面位置变话
  4205. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4206. }
  4207. }
  4208. //#region 桌面图标拖动逻辑
  4209. /**
  4210. * 桌面排列图标
  4211. *
  4212. * @param {element} 桌面元素
  4213. * @param {object} 上下相距的距离
  4214. * @param {object} 左右相距的距离
  4215. * @return {object} 命名空间
  4216. */
  4217. U.MD.D.iconPostion = function (childs, top, left) {
  4218. var i; //用于循环处理
  4219. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4220. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4221. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4222. for (i = 0; i < childs.length; i++) {
  4223. //如果竖排top超过了范围处理
  4224. if (top + 95 > US.height - 10) {
  4225. //left超过了页面范围处理,则向上重叠打印处理
  4226. if ((left + 180) > US.width) {
  4227. top -= 110;
  4228. left -= 90;
  4229. }
  4230. //没有超过范围,那么left+90添加到下一个竖排打印
  4231. else {
  4232. left += 90;
  4233. top = 15;
  4234. };
  4235. }
  4236. //给图标的位置赋值
  4237. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4238. if (i < childs.length - 1) {
  4239. //页面图标每次向下加95
  4240. top += 95;
  4241. }
  4242. }
  4243. //返回最后调用的图标的位置
  4244. return [top, left];
  4245. }
  4246. /**
  4247. * 桌面排列图标
  4248. *
  4249. * @param {element} 桌面元素
  4250. * @param {object} 上下相距的距离
  4251. * @param {object} 左右相距的距离
  4252. * @return {object} 命名空间
  4253. */
  4254. U.MD.D.iconPostion2 = function (childs, top, left) {
  4255. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4256. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4257. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4258. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4259. for (i = 0; i < childs.length; i++) {
  4260. //如果竖排top超过了范围处理
  4261. if (left + 150 > US.width - 10) {
  4262. //left超过了页面范围处理,则向上重叠打印处理
  4263. if ((top + 180) > US.Height) {
  4264. top -= 150;
  4265. left -= 150;
  4266. }
  4267. //没有超过范围,那么left+90添加到下一个竖排打印
  4268. else {
  4269. top += 150;
  4270. left = ol;
  4271. };
  4272. }
  4273. //给图标的位置赋值
  4274. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4275. if (i < childs.length - 1) {
  4276. //页面图标每次向下加95
  4277. left += 150;
  4278. }
  4279. }
  4280. //返回最后调用的图标的位置
  4281. return [top, left];
  4282. }
  4283. /**
  4284. * 桌面点击事件逻辑
  4285. *
  4286. * @param {element} 桌面元素
  4287. * @param {object} 上下相距的距离
  4288. * @param {object} 左右相距的距离
  4289. * @return {object} 命名空间
  4290. */
  4291. U.MD.D.click = function (el, obj) {
  4292. var _buttonnumber = event.button; //点击的按钮的事件值
  4293. var _userinfo = US.userInfo;
  4294. U.UF.EV.stopBubble(); //阻止向上冒泡
  4295. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4296. if (_buttonnumber < 2) {
  4297. //如果是click事件的处理
  4298. if (event.type == "click") {
  4299. //如果元素在mousemove事件中没有移动则出发click事件
  4300. if (!U.MD.D.I.IsDrag) {
  4301. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4302. U.alert("请先登录您的账号!");
  4303. setTimeout(() => {
  4304. U.MD.U.L.login();
  4305. }, 2000);
  4306. } else {
  4307. //打开应用处理
  4308. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4309. }
  4310. }
  4311. }
  4312. //如果是mouse事件的处理
  4313. else {
  4314. if (US.Config.type == '1') {
  4315. //拖动处理,添加拖动和拖动结束事件
  4316. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4317. }
  4318. }
  4319. U.MD.D.I.IsDrag = false;
  4320. }
  4321. }
  4322. /**
  4323. * 拖动的处理
  4324. *
  4325. */
  4326. U.MD.D.iconMove = function () {
  4327. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4328. U.MD.D.I.IsDrag = true;
  4329. }
  4330. /**
  4331. * 拖动结束后,这里是定位处理,以网状的形式定位
  4332. *
  4333. * @param {element} 拖动的元素
  4334. * @return {object} 命名空间
  4335. */
  4336. U.MD.D.iconUp = function (el) {
  4337. var _top = 15,
  4338. _left = 20,
  4339. _margin,
  4340. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4341. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4342. if (_positioninfo["OT"] > 15) {
  4343. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4344. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4345. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4346. }
  4347. if (_positioninfo["OL"] > 20) {
  4348. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4349. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4350. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4351. }
  4352. //while循环判断么一个重叠的元素
  4353. do {
  4354. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4355. _top = _positioninfo[0] + 95; //得到定位后的top
  4356. _left = _positioninfo[1]; //得到定位后的left
  4357. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4358. }
  4359. /**
  4360. * 判断拖动后图标是否重叠
  4361. *
  4362. * @param {element} 拖动的元素
  4363. * @param {element} 桌面所有的元素
  4364. * @param {array} 拖动元素的位置
  4365. ----------[0] 上 top
  4366. ----------[1] 左 left
  4367. * @return {object} 命名空间
  4368. */
  4369. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4370. //循环所有的图标
  4371. for (var i = 0; i < childs.length; i++) {
  4372. //判断有没有和该图标诶子重叠的元素
  4373. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4374. return childs[i]; //如果有返回
  4375. }
  4376. }
  4377. }
  4378. //#endregion
  4379. //#endregion
  4380. //#region 桌面应用
  4381. /**
  4382. * 打开应用
  4383. *
  4384. * @param {string} 类型
  4385. -----------------Disk 网盘系统
  4386. -----------------PDisk 学习系统网盘
  4387. -----------------Poto 图片
  4388. -----------------Video 视频
  4389. -----------------Music 音乐
  4390. -----------------Word word
  4391. -----------------Excel excel
  4392. -----------------Txt 记事本
  4393. -----------------PB 学习系统
  4394. -----------------Blog 朋友圈系统
  4395. -----------------FTP ftp系统
  4396. -----------------Group 好友群
  4397. -----------------SY 首页系统
  4398. -----------------Set 个人设置
  4399. -----------------XSet 系统设置
  4400. -----------------App 我们所有的app
  4401. -----------------BC c.1473.cn 平台
  4402. -----------------CWeb d.1473.cn 变成平台
  4403. -----------------其他的外联系统 我们统一用iframe打开
  4404. * @param {array} 类型
  4405. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4406. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4407. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4408. 如果第一个参数为其他,则无第二个参数
  4409. * @returns {array}
  4410. */
  4411. window.addEventListener('message', function (e) { // 监听 message 事件
  4412. // alert(e.data.type);
  4413. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4414. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4415. //3是展示全部阶段 2学生 1老师 4专家
  4416. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4417. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4418. //3是展示全部阶段 2学生 1老师 4专家
  4419. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4420. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4421. //3是展示全部阶段 2学生 1老师 4专家
  4422. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4423. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4424. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4425. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4426. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4427. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4428. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4429. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4430. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4431. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4432. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4433. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4434. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4435. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4436. //3是展示全部阶段 2学生 1老师 4专家
  4437. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4438. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4439. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4440. U.MD.D.I.selectUser();
  4441. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4442. var _formel = document.getElementById("study");
  4443. U.UF.F.windowZooming(_formel);
  4444. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4445. var _formel = document.getElementById("studyDetail");
  4446. U.UF.F.windowZooming(_formel);
  4447. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4448. var _formel = document.getElementById("studyDetail");
  4449. U.UF.F.windowZooming(_formel);
  4450. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4451. var _formel = document.getElementById("studentStudy");
  4452. U.UF.F.windowZooming(_formel);
  4453. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4454. // var _formel = document.getElementById("study");
  4455. //如果最大化了,那么就把他缩小
  4456. // if (_formel.ismaximize) {
  4457. // return;
  4458. // }
  4459. // U.UF.F.windowZooming(_formel);
  4460. // U.UF.F.topWindow(_formel);
  4461. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4462. // var _formel = document.getElementById("studyDetail");
  4463. //如果最大化了,那么就把他缩小
  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 == "5") {
  4470. // var _formel = document.getElementById("studentStudy");
  4471. // if (_formel.ismaximize) {
  4472. // return;
  4473. // }
  4474. // U.UF.F.windowZooming(_formel);
  4475. // U.UF.F.topWindow(_formel);
  4476. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4477. var _formel = document.getElementById("study");
  4478. // if (_formel.ismaximize) {
  4479. // return;
  4480. // }
  4481. // U.UF.F.windowZooming(_formel);
  4482. U.UF.F.topWindow(_formel);
  4483. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4484. var _formel = document.getElementById("studentIndex");
  4485. U.UF.F.windowZooming(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4487. var _formel = document.getElementById("studyDetailS");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4490. var _formel = document.getElementById("studioIndex");
  4491. U.UF.F.windowZooming(_formel);
  4492. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4493. var _formel = document.getElementById("studyDetailStudio");
  4494. U.UF.F.windowZooming(_formel);
  4495. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4496. var _formel = document.getElementById("studyDetailStudio");
  4497. U.UF.F.windowZooming(_formel);
  4498. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4499. var _formel = document.getElementById("studyDetailNT");
  4500. U.UF.F.windowZooming(_formel);
  4501. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4502. var _formel = document.getElementById("studyDetailS");
  4503. U.UF.F.windowZooming(_formel);
  4504. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4505. var _formel = document.getElementById("studyDetailS");
  4506. U.UF.F.topWindow(_formel);
  4507. } else if (e.data.tools && e.data.tools == "1") {
  4508. // U.MD.D.I.openApplication("whiteboard")
  4509. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4510. } else if (e.data.tools && e.data.tools == "2") {
  4511. U.MD.D.I.openApplication("note")
  4512. } else if (e.data.tools && e.data.tools == "3") {
  4513. // U.MD.D.I.openApplication("mind")
  4514. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4515. } else if (e.data.tools && e.data.tools == "4") {
  4516. U.MD.D.I.openApplication("investigation")
  4517. } else if (e.data.tools && e.data.tools == "6") {
  4518. // U.MD.D.I.openApplication("doc")
  4519. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4520. } else if (e.data.tools && e.data.tools == "7") {
  4521. // U.MD.D.I.openApplication("mindNetwork")
  4522. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4523. } else if (e.data.tools && e.data.tools == "8") {
  4524. U.MD.D.I.openApplication("library")
  4525. } else if (e.data.tools && e.data.tools == "17") {
  4526. U.MD.D.I.openApplication("stuLibrary")
  4527. } else if (e.data.tools && e.data.tools == "18") {
  4528. U.MD.D.I.openApplication("train")
  4529. } else if (e.data.tools && e.data.tools == "21") {
  4530. U.MD.D.I.openApplication("program")
  4531. } else if (e.data.tools && e.data.tools == "22") {
  4532. U.MD.D.I.openApplication("AIprogram2")
  4533. } else if (e.data.tools && e.data.tools == "23") {
  4534. U.MD.D.I.openApplication("Pythonprogram")
  4535. } else if (e.data.tools && e.data.tools == "24") {
  4536. U.MD.D.I.openApplication("AIprogram")
  4537. } else if (e.data.tools && e.data.tools == "25") {
  4538. U.MD.D.I.openApplication("sys")
  4539. } else if (e.data.tools && e.data.tools == "26") {
  4540. // U.MD.D.I.openApplication("courseDesign")
  4541. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4542. } else if (e.data.tools && e.data.tools == "31") {
  4543. U.MD.D.I.openApplication("netWorkPanel")
  4544. } else if (e.data.tools && e.data.tools == "32") {
  4545. U.MD.D.I.openApplication("codeEdit")
  4546. } else if (e.data.tools && e.data.tools == "57") {
  4547. U.MD.D.I.openApplication("CocoPi")
  4548. } else if (e.data.tools && e.data.tools == "63") {
  4549. U.MD.D.I.openApplication("Wood")
  4550. } else if (e.data.tools && e.data.tools == "58") {
  4551. U.MD.D.I.openApplication("car")
  4552. } else if (e.data.tools && e.data.tools == "59") {
  4553. U.MD.D.I.openApplication("lineSearch")
  4554. } else if (e.data.tools && e.data.tools == "60") {
  4555. U.MD.D.I.openApplication("deepLearning")
  4556. } else if (e.data.tools && e.data.tools == "61") {
  4557. U.MD.D.I.openApplication("allHistory")
  4558. } else if (e.data.tools && e.data.tools == "28") {
  4559. U.MD.D.I.openApplication("translation")
  4560. } else if (e.data.tools && e.data.tools == "37") {
  4561. U.MD.D.I.openApplication("mohe")
  4562. } else if (e.data.tools && e.data.tools == "38") {
  4563. U.MD.D.I.openApplication("24game")
  4564. } else if (e.data.tools && e.data.tools == "39") {
  4565. U.MD.D.I.openApplication("GeoGebra")
  4566. } else if (e.data.tools && e.data.tools == "43") {
  4567. U.MD.D.I.openApplication("studentEvaluate")
  4568. } else if (e.data.tools && e.data.tools == "44") {
  4569. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4570. } else if (e.data.tools && e.data.tools == "46") {
  4571. U.MD.D.I.openApplication("project")
  4572. } else if (e.data.tools && e.data.tools == "71") {
  4573. U.MD.D.I.openApplication("aigptCourse")
  4574. } else if (e.data.tools && e.data.tools == "1s") {
  4575. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4576. } else if (e.data.tools && e.data.tools == "3s") {
  4577. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "6s") {
  4579. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "1studio") {
  4581. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "3studio") {
  4583. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4584. } else if (e.data.tools && e.data.tools == "6studio") {
  4585. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4586. } else if (e.data.tools && e.data.tools == "3y") {
  4587. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4588. } else if (e.data.tools && e.data.tools == "1y") {
  4589. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4590. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4591. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4592. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4593. U.MD.D.I.openApplication("AIAnalyse")
  4594. } else if (e.data.tools && e.data.tools == "1teacher") {
  4595. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4596. } else if (e.data.tools && e.data.tools == "3teacher") {
  4597. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4598. } else if (e.data.tools && e.data.tools == "7teacher") {
  4599. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4600. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4601. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4602. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4603. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4604. } else if (e.data.tools && e.data.tools == "1E") {
  4605. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4606. } else if (e.data.tools && e.data.tools == "3E") {
  4607. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4608. } else if (e.data.tools && e.data.tools == "57y") {
  4609. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4610. } else if (e.data.tools && e.data.tools == "57u") {
  4611. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4612. } else if (e.data.tools && e.data.tools == "57teacher") {
  4613. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4614. } else if (e.data.tools && e.data.tools == "64") {
  4615. U.MD.D.I.openApplication("AIChat")
  4616. } else if (e.data.tools && e.data.tools == "66") {
  4617. U.MD.D.I.openApplication("formulaEdi")
  4618. } else if (e.data.tools && e.data.tools == "67") {
  4619. U.MD.D.I.openApplication("molStr")
  4620. } else if (e.data.tools && e.data.tools == "68") {
  4621. U.MD.D.I.openApplication("timeAxis")
  4622. } else if (e.data.tools && e.data.tools == "openCourse") {
  4623. let _data = {
  4624. typea: e.data.typea || '',
  4625. typeb: e.data.typeb || '',
  4626. typed: e.data.typed || '',
  4627. }
  4628. U.MD.D.I.openInApplication("index", _data)
  4629. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4630. let _data = {
  4631. classid: e.data.classid || '',
  4632. }
  4633. U.MD.D.I.openInApplication("dataClass", _data)
  4634. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4635. let _data = {
  4636. cid: e.data.cid || '',
  4637. gid: e.data.gid || '',
  4638. }
  4639. U.MD.D.I.openInApplication("opencCscl", _data)
  4640. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4641. U.MD.D.I.openApplication("dataBoardTest")
  4642. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4643. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4644. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4645. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4646. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4647. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4648. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4649. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4650. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4651. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4652. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4653. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4654. }else if (e.data.tools && e.data.tools == "loginSz") {
  4655. U.MD.D.I.openInApplication("loginSz")
  4656. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4657. if($('#classroom_observation_board')[0]){
  4658. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4659. }
  4660. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4661. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4662. if($('#classroom_observation_ob_comment')[0]){
  4663. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4664. }
  4665. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4666. }else if (e.data.tools && e.data.tools == "logout"){
  4667. U.MD.U.LO.logoutSystem()
  4668. }else if (e.data.tools && e.data.tools == "getLogin"){
  4669. let _iframe = $('#UI_Login')[0];
  4670. if (_iframe) {
  4671. var userInfo = US.userInfo;
  4672. var type = 2
  4673. if(userInfo && userInfo.userid){
  4674. type = 1
  4675. }
  4676. _contentWindow = _iframe.contentWindow;
  4677. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4678. }
  4679. }
  4680. });
  4681. U.MD.D.I.selectUser = function () {
  4682. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4683. if (res.value[0].length > 0) {
  4684. US.userInfo = res.value[0][0];
  4685. $(".userName")[0].innerHTML = US.userInfo.username;
  4686. }
  4687. }, [], { "type": "GET", "withCredentials": true });
  4688. }
  4689. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4690. var _userinfo = US.userInfo, //登录用户信息
  4691. _userid = US.userInfo.userid, //登录用户id
  4692. _oid = _userinfo.organizeid,
  4693. _type = US.userInfo.type,
  4694. _org = US.userInfo.org,
  4695. _role = US.userInfo.role,
  4696. _classId = US.userInfo.classid;
  4697. if (_type == 4) {
  4698. tType = 4
  4699. }
  4700. switch (str) {
  4701. case "studyDetailNT": //无终端模式
  4702. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4703. setTimeout(() => {
  4704. U.MD.U.L.login();
  4705. }, 2000);
  4706. } else {
  4707. _formdiv = new U.UF.UI.form(
  4708. "课程详情",
  4709. $$("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 }), {
  4710. "id": "studyDetailNT",
  4711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4712. "onresize": function () { }
  4713. }, {
  4714. closecallback: function () { }
  4715. }, { "style": { "height": "36px" } }).form; //创建窗体
  4716. _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); } }
  4717. break;
  4718. }
  4719. case "studyDetail":
  4720. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4721. setTimeout(() => {
  4722. U.MD.U.L.login();
  4723. }, 2000);
  4724. } else {
  4725. _formdiv = new U.UF.UI.form(
  4726. "课程详情",
  4727. $$("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 }), {
  4728. "id": "studyDetail",
  4729. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4730. "onresize": function () { }
  4731. }, {
  4732. closecallback: function () { }
  4733. }, { "style": { "height": "36px" } }).form; //创建窗体
  4734. _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); } }
  4735. break;
  4736. }
  4737. case "studyDetailTrain":
  4738. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4739. setTimeout(() => {
  4740. U.MD.U.L.login();
  4741. }, 2000);
  4742. } else {
  4743. _formdiv = new U.UF.UI.form(
  4744. "培训详情",
  4745. $$("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 }), {
  4746. "id": "studyDetailTrain",
  4747. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4748. "onresize": function () { }
  4749. }, {
  4750. closecallback: function () { }
  4751. }, { "style": { "height": "36px" } }).form; //创建窗体
  4752. _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); } }
  4753. break;
  4754. }
  4755. case "studyDetailS":
  4756. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4757. setTimeout(() => {
  4758. U.MD.U.L.login();
  4759. }, 2000);
  4760. } else {
  4761. _formdiv = new U.UF.UI.form(
  4762. "项目详情",
  4763. $$("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 }), {
  4764. "id": "studyDetailS",
  4765. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4766. "onresize": function () { }
  4767. }, {
  4768. closecallback: function () { }
  4769. }, { "style": { "height": "36px" } }).form; //创建窗体
  4770. _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); } }
  4771. break;
  4772. }
  4773. case "studyDetailStudio":
  4774. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4775. setTimeout(() => {
  4776. U.MD.U.L.login();
  4777. }, 2000);
  4778. } else {
  4779. _formdiv = new U.UF.UI.form(
  4780. "工作详情",
  4781. $$("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 }), {
  4782. "id": "studyDetailStudio",
  4783. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4784. "onresize": function () { }
  4785. }, {
  4786. closecallback: function () { }
  4787. }, { "style": { "height": "36px" } }).form; //创建窗体
  4788. _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); } }
  4789. break;
  4790. }
  4791. case "studyDetailS5":
  4792. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4793. setTimeout(() => {
  4794. U.MD.U.L.login();
  4795. }, 2000);
  4796. } else {
  4797. _formdiv = new U.UF.UI.form(
  4798. "项目详情",
  4799. $$("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 }), {
  4800. "id": "studyDetailS",
  4801. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4802. "onresize": function () { }
  4803. }, {
  4804. closecallback: function () { }
  4805. }, { "style": { "height": "36px" } }).form; //创建窗体
  4806. _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); } }
  4807. break;
  4808. }
  4809. case "studyDetailGM":
  4810. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4811. setTimeout(() => {
  4812. U.MD.U.L.login();
  4813. }, 2000);
  4814. } else {
  4815. _formdiv = new U.UF.UI.form(
  4816. "课程详情",
  4817. $$("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 }), {
  4818. "id": "studyDetail",
  4819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4820. "onresize": function () { }
  4821. }, {
  4822. closecallback: function () { }
  4823. }, { "style": { "height": "36px" } }).form; //创建窗体
  4824. _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); } }
  4825. break;
  4826. }
  4827. case "hanUrl":
  4828. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4829. setTimeout(() => {
  4830. U.MD.U.L.login();
  4831. }, 2000);
  4832. } else {
  4833. _formdiv = new U.UF.UI.form(
  4834. "汉字宫",
  4835. $$("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" }), {
  4836. "id": "hanUrl",
  4837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4838. "onresize": function () { }
  4839. }, {
  4840. closecallback: function () { }
  4841. }, { "style": { "height": "36px" } }).form; //创建窗体
  4842. _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); } }
  4843. break;
  4844. }
  4845. case "index":
  4846. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4847. setTimeout(() => {
  4848. U.MD.U.L.login();
  4849. }, 2000);
  4850. } else {
  4851. _formdiv = new U.UF.UI.form(
  4852. "课程中心",
  4853. $$("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 }), {
  4854. "id": "study",
  4855. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4856. "onresize": function () { }
  4857. }, {
  4858. closecallback: function () { }
  4859. }, { "style": { "height": "36px" } }).form; //创建窗体
  4860. _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); } }
  4861. break;
  4862. }
  4863. case "dataClass":
  4864. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4865. setTimeout(() => {
  4866. U.MD.U.L.login();
  4867. }, 2000);
  4868. } else {
  4869. _formdiv = new U.UF.UI.form(
  4870. "数据报告",
  4871. $$("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 }), {
  4872. "id": "dataClass",
  4873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4874. "onresize": function () { }
  4875. }, {
  4876. closecallback: function () { }
  4877. }, { "style": { "height": "36px" } }).form; //创建窗体
  4878. _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); } }
  4879. break;
  4880. }
  4881. case "opencCscl":
  4882. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4883. setTimeout(() => {
  4884. U.MD.U.L.login();
  4885. }, 2000);
  4886. } else {
  4887. _formdiv = new U.UF.UI.form(
  4888. "协同建构",
  4889. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4890. "id": "futureClass",
  4891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4892. "onresize": function () { }
  4893. }, {
  4894. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4895. }, { "style": { "height": "36px" } }).form; //创建窗体
  4896. _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); } }
  4897. break;
  4898. }
  4899. case "openCourseUpdate":
  4900. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4901. setTimeout(() => {
  4902. U.MD.U.L.login();
  4903. }, 2000);
  4904. } else {
  4905. _formdiv = new U.UF.UI.form(
  4906. "课程管理",
  4907. $$("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 }), {
  4908. "id": "openCourseUpdate",
  4909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4910. "onresize": function () { }
  4911. }, {
  4912. closecallback: function () { }
  4913. }, { "style": { "height": "36px" } }).form; //创建窗体
  4914. break;
  4915. }
  4916. case "openNewCourseUpdate":
  4917. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4918. setTimeout(() => {
  4919. U.MD.U.L.login();
  4920. }, 2000);
  4921. } else {
  4922. _formdiv = new U.UF.UI.form(
  4923. "课程管理",
  4924. $$("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 }), {
  4925. "id": "openCourseUpdate",
  4926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4927. "onresize": function () { }
  4928. }, {
  4929. closecallback: function () { }
  4930. }, { "style": { "height": "36px" } }).form; //创建窗体
  4931. break;
  4932. }
  4933. case "openCourseEUpdate":
  4934. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4935. setTimeout(() => {
  4936. U.MD.U.L.login();
  4937. }, 2000);
  4938. } else {
  4939. _formdiv = new U.UF.UI.form(
  4940. "课程管理",
  4941. $$("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 }), {
  4942. "id": "openCourseUpdate",
  4943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4944. "onresize": function () { }
  4945. }, {
  4946. closecallback: function () { }
  4947. }, { "style": { "height": "36px" } }).form; //创建窗体
  4948. break;
  4949. }
  4950. case "openCourseAiUpdate":
  4951. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4952. setTimeout(() => {
  4953. U.MD.U.L.login();
  4954. }, 2000);
  4955. } else {
  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/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4959. "id": "openCourseUpdate",
  4960. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4961. "onresize": function () { }
  4962. }, {
  4963. closecallback: function () { }
  4964. }, { "style": { "height": "36px" } }).form; //创建窗体
  4965. break;
  4966. }
  4967. case "openCourseAiUpdate2":
  4968. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4969. setTimeout(() => {
  4970. U.MD.U.L.login();
  4971. }, 2000);
  4972. } else {
  4973. _formdiv = new U.UF.UI.form(
  4974. "课程管理",
  4975. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4976. "id": "openCourseUpdate",
  4977. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4978. "onresize": function () { }
  4979. }, {
  4980. closecallback: function () { }
  4981. }, { "style": { "height": "36px" } }).form; //创建窗体
  4982. break;
  4983. }
  4984. case "openCourseNewUpdate":
  4985. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4986. setTimeout(() => {
  4987. U.MD.U.L.login();
  4988. }, 2000);
  4989. } else {
  4990. _formdiv = new U.UF.UI.form(
  4991. "课程管理",
  4992. $$("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 }), {
  4993. "id": "openCourseUpdate",
  4994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4995. "onresize": function () { }
  4996. }, {
  4997. closecallback: function () { }
  4998. }, { "style": { "height": "36px" } }).form; //创建窗体
  4999. break;
  5000. }
  5001. case "inviteLoginSz":
  5002. _formdiv = new U.UF.UI.form(
  5003. "随机码登录",
  5004. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5005. "id": "loginSz",
  5006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5007. "onresize": function () { }
  5008. }, {
  5009. closecallback: function () { }
  5010. }, { "style": { "height": "36px" } }).form; //创建窗体
  5011. break;
  5012. case "loginSz":
  5013. _formdiv = new U.UF.UI.form(
  5014. "教师登录",
  5015. $$("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" }), {
  5016. "id": "loginSz",
  5017. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5018. "onresize": function () { }
  5019. }, {
  5020. closecallback: function () { }
  5021. }, { "style": { "height": "36px" } }).form; //创建窗体
  5022. break;
  5023. case "teacher":
  5024. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5025. setTimeout(() => {
  5026. U.MD.U.L.login();
  5027. }, 2000);
  5028. } else {
  5029. _formdiv = new U.UF.UI.form(
  5030. "教师管理",
  5031. $$("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 }), {
  5032. "id": "teacher",
  5033. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5034. "onresize": function () { }
  5035. }, {
  5036. closecallback: function () { }
  5037. }, { "style": { "height": "36px" } }).form; //创建窗体
  5038. break;
  5039. }
  5040. case "dataBoardSZArea":
  5041. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5042. setTimeout(() => {
  5043. U.MD.U.L.login();
  5044. }, 2000);
  5045. } else {
  5046. _formdiv = new U.UF.UI.form(
  5047. "综合数据看板",
  5048. $$("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 }), {
  5049. "id": "dataBoardSZArea",
  5050. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5051. "onresize": function () { }
  5052. }, {
  5053. closecallback: function () { }
  5054. }, { "style": { "height": "36px" } }).form; //创建窗体
  5055. break;
  5056. }
  5057. case "dataBoardSZCity":
  5058. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5059. setTimeout(() => {
  5060. U.MD.U.L.login();
  5061. }, 2000);
  5062. } else {
  5063. _formdiv = new U.UF.UI.form(
  5064. "综合数据看板",
  5065. $$("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 }), {
  5066. "id": "dataBoardSZCity",
  5067. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5068. "onresize": function () { }
  5069. }, {
  5070. closecallback: function () { }
  5071. }, { "style": { "height": "36px" } }).form; //创建窗体
  5072. break;
  5073. }
  5074. case "classroom_observation_board":
  5075. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5076. setTimeout(() => {
  5077. U.MD.U.L.login();
  5078. }, 2000);
  5079. } else {
  5080. _formdiv = new U.UF.UI.form(
  5081. "课堂观察",
  5082. $$("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 }), {
  5083. "id": "classroom_observation_board",
  5084. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5085. "onresize": function () { }
  5086. }, {
  5087. closecallback: function () { }
  5088. }, { "style": { "height": "36px" } }).form; //创建窗体
  5089. break;
  5090. }
  5091. case "classroom_observation_ob_comment":
  5092. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5093. setTimeout(() => {
  5094. U.MD.U.L.login();
  5095. }, 2000);
  5096. } else {
  5097. _formdiv = new U.UF.UI.form(
  5098. "课堂审核",
  5099. $$("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 }), {
  5100. "id": "classroom_observation_ob_comment",
  5101. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5102. "onresize": function () { }
  5103. }, {
  5104. closecallback: function () { }
  5105. }, { "style": { "height": "36px" } }).form; //创建窗体
  5106. break;
  5107. }
  5108. }
  5109. }
  5110. U.MD.D.I.openApplication = function (str, obj, info) {
  5111. obj = obj || {};
  5112. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5113. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5114. _userinfo = US.userInfo, //登录用户信息
  5115. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5116. _oid = obj.organizeid || _userinfo.organizeid,
  5117. _type = US.userInfo.type,
  5118. _org = US.userInfo.org,
  5119. _role = US.userInfo.role,
  5120. _classId = US.userInfo.classid,
  5121. _TscreenType = 1
  5122. _screenType = 2,
  5123. _SscreenType = 3;
  5124. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5125. return;
  5126. }
  5127. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5128. switch (str) {
  5129. case "studnetProject": //好友打开
  5130. _formdiv = new U.UF.UI.form(
  5131. "我的项目",
  5132. $$("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 }), {
  5133. "id": "studnetProject",
  5134. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5135. "onresize": function () { }
  5136. }, {
  5137. closecallback: function () { }
  5138. }, { "style": { "height": "36px" } }).form; //创建窗体
  5139. _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); } }
  5140. break;
  5141. case "studentEvaluate": //好友打开
  5142. _formdiv = new U.UF.UI.form(
  5143. "我的评价",
  5144. $$("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 }), {
  5145. "id": "studentEvaluate",
  5146. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5147. "onresize": function () { }
  5148. }, {
  5149. closecallback: function () { }
  5150. }, { "style": { "height": "36px" } }).form; //创建窗体
  5151. _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); } }
  5152. break;
  5153. case "my":
  5154. _formdiv = new U.UF.UI.form(
  5155. "我的资料",
  5156. $$("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 }), {
  5157. "id": "my",
  5158. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5159. "onresize": function () { }
  5160. }, {
  5161. closecallback: function () { }
  5162. }, { "style": { "height": "36px" } }).form; //创建窗体
  5163. _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); } }
  5164. break;
  5165. case "program":
  5166. _formdiv = new U.UF.UI.form(
  5167. "编程平台",
  5168. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5169. "id": "program",
  5170. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5171. "onresize": function () { }
  5172. }, {
  5173. closecallback: function () { }
  5174. }, { "style": { "height": "36px" } }).form; //创建窗体
  5175. _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); } }
  5176. break;
  5177. case "library":
  5178. _formdiv = new U.UF.UI.form(
  5179. "素材库",
  5180. $$("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 }), {
  5181. "id": "library",
  5182. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5183. "onresize": function () { }
  5184. }, {
  5185. closecallback: function () { }
  5186. }, { "style": { "height": "36px" } }).form; //创建窗体
  5187. _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); } }
  5188. break;
  5189. case "whiteboard":
  5190. _formdiv = new U.UF.UI.form(
  5191. "电子白板",
  5192. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5193. "id": "whiteboard",
  5194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5195. "onresize": function () { }
  5196. }, {
  5197. closecallback: function () { }
  5198. }, { "style": { "height": "36px" } }).form; //创建窗体
  5199. _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); } }
  5200. break;
  5201. case "investigation":
  5202. _formdiv = new U.UF.UI.form(
  5203. "问卷调查",
  5204. $$("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 }), {
  5205. "id": "investigation",
  5206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5207. "onresize": function () { }
  5208. }, {
  5209. closecallback: function () { }
  5210. }, { "style": { "height": "36px" } }).form; //创建窗体
  5211. _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); } }
  5212. break;
  5213. case "note":
  5214. _formdiv = new U.UF.UI.form(
  5215. "便签分类",
  5216. $$("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 }), {
  5217. "id": "note",
  5218. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5219. "onresize": function () { }
  5220. }, {
  5221. closecallback: function () { }
  5222. }, { "style": { "height": "36px" } }).form; //创建窗体
  5223. _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); } }
  5224. break;
  5225. // case "score":
  5226. // _formdiv = new U.UF.UI.form(
  5227. // "量规评分",
  5228. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5229. // "id": "score",
  5230. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5231. // "onresize": function() {}
  5232. // }, {
  5233. // closecallback: function() {}
  5234. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5235. // _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); } }
  5236. // break;
  5237. case "mind":
  5238. _formdiv = new U.UF.UI.form(
  5239. "思维导图",
  5240. $$("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"
  5241. "id": "mind",
  5242. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5243. "onresize": function () { }
  5244. }, {
  5245. closecallback: function () { }
  5246. }, { "style": { "height": "36px" } }).form; //创建窗体
  5247. _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); } }
  5248. break;
  5249. case "doc":
  5250. // U.MD.D.I.isRoom();
  5251. _formdiv = new U.UF.UI.form(
  5252. "协同文档",
  5253. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5254. "id": "doc",
  5255. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5256. "onresize": function () { }
  5257. }, {
  5258. closecallback: function () { }
  5259. }, { "style": { "height": "36px" } }).form; //创建窗体
  5260. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5261. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5262. // })
  5263. _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); } }
  5264. break;
  5265. case "studentStudy":
  5266. _formdiv = new U.UF.UI.form(
  5267. "课程中心",
  5268. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5269. "id": "studentStudy",
  5270. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5276. break;
  5277. case "train": //好友打开
  5278. _formdiv = new U.UF.UI.form(
  5279. "训练平台",
  5280. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5281. "id": "train",
  5282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5283. "onresize": function () { }
  5284. }, {
  5285. closecallback: function () { }
  5286. }, { "style": { "height": "36px" } }).form; //创建窗体
  5287. _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); } }
  5288. break;
  5289. case "mindNetwork": //好友打开
  5290. _formdiv = new U.UF.UI.form(
  5291. "思维网格",
  5292. $$("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 }), {
  5293. "id": "mindNetwork",
  5294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5295. "onresize": function () { }
  5296. }, {
  5297. closecallback: function () { }
  5298. }, { "style": { "height": "36px" } }).form; //创建窗体
  5299. _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); } }
  5300. break;
  5301. case "studentClassRoom": //好友打开
  5302. _formdiv = new U.UF.UI.form(
  5303. "实时课堂",
  5304. $$("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 }), {
  5305. "id": "studentClassRoom",
  5306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5307. "onresize": function () { }
  5308. }, {
  5309. closecallback: function () { }
  5310. }, { "style": { "height": "36px" } }).form; //创建窗体
  5311. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5312. setTimeout(() => {
  5313. U.UF.F.windowZooming(_formdiv)
  5314. }, 0);
  5315. break;
  5316. }
  5317. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5318. switch (str) {
  5319. case "studnetProject": //好友打开
  5320. _formdiv = new U.UF.UI.form(
  5321. "我的项目",
  5322. $$("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 }), {
  5323. "id": "studnetProject",
  5324. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5325. "onresize": function () { }
  5326. }, {
  5327. closecallback: function () { }
  5328. }, { "style": { "height": "36px" } }).form; //创建窗体
  5329. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5330. break;
  5331. case "studentEvaluate": //好友打开
  5332. _formdiv = new U.UF.UI.form(
  5333. "我的评价",
  5334. $$("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 }), {
  5335. "id": "studentEvaluate",
  5336. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5337. "onresize": function () { }
  5338. }, {
  5339. closecallback: function () { }
  5340. }, { "style": { "height": "36px" } }).form; //创建窗体
  5341. _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); } }
  5342. break;
  5343. case "my":
  5344. _formdiv = new U.UF.UI.form(
  5345. "我的资料",
  5346. $$("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 }), {
  5347. "id": "my",
  5348. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5349. "onresize": function () { }
  5350. }, {
  5351. closecallback: function () { }
  5352. }, { "style": { "height": "36px" } }).form; //创建窗体
  5353. _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); } }
  5354. break;
  5355. case "program":
  5356. _formdiv = new U.UF.UI.form(
  5357. "编程平台",
  5358. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5359. "id": "program",
  5360. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5361. "onresize": function () { }
  5362. }, {
  5363. closecallback: function () { }
  5364. }, { "style": { "height": "36px" } }).form; //创建窗体
  5365. _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); } }
  5366. break;
  5367. case "library":
  5368. _formdiv = new U.UF.UI.form(
  5369. "素材库",
  5370. $$("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 }), {
  5371. "id": "library",
  5372. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5373. "onresize": function () { }
  5374. }, {
  5375. closecallback: function () { }
  5376. }, { "style": { "height": "36px" } }).form; //创建窗体
  5377. _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); } }
  5378. break;
  5379. case "whiteboard":
  5380. _formdiv = new U.UF.UI.form(
  5381. "电子白板",
  5382. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5383. "id": "whiteboard",
  5384. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5385. "onresize": function () { }
  5386. }, {
  5387. closecallback: function () { }
  5388. }, { "style": { "height": "36px" } }).form; //创建窗体
  5389. _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); } }
  5390. break;
  5391. case "investigation":
  5392. _formdiv = new U.UF.UI.form(
  5393. "问卷调查",
  5394. $$("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 }), {
  5395. "id": "investigation",
  5396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5397. "onresize": function () { }
  5398. }, {
  5399. closecallback: function () { }
  5400. }, { "style": { "height": "36px" } }).form; //创建窗体
  5401. _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); } }
  5402. break;
  5403. case "note":
  5404. _formdiv = new U.UF.UI.form(
  5405. "便签分类",
  5406. $$("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 }), {
  5407. "id": "note",
  5408. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5409. "onresize": function () { }
  5410. }, {
  5411. closecallback: function () { }
  5412. }, { "style": { "height": "36px" } }).form; //创建窗体
  5413. _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); } }
  5414. break;
  5415. // case "score":
  5416. // _formdiv = new U.UF.UI.form(
  5417. // "量规评分",
  5418. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5419. // "id": "score",
  5420. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5421. // "onresize": function() {}
  5422. // }, {
  5423. // closecallback: function() {}
  5424. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5425. // _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); } }
  5426. // break;
  5427. case "mind":
  5428. _formdiv = new U.UF.UI.form(
  5429. "思维导图",
  5430. $$("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"
  5431. "id": "mind",
  5432. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5433. "onresize": function () { }
  5434. }, {
  5435. closecallback: function () { }
  5436. }, { "style": { "height": "36px" } }).form; //创建窗体
  5437. _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); } }
  5438. break;
  5439. case "doc":
  5440. // U.MD.D.I.isRoom();
  5441. _formdiv = new U.UF.UI.form(
  5442. "协同文档",
  5443. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5444. "id": "doc",
  5445. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5446. "onresize": function () { }
  5447. }, {
  5448. closecallback: function () { }
  5449. }, { "style": { "height": "36px" } }).form; //创建窗体
  5450. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5451. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5452. })
  5453. _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); } }
  5454. break;
  5455. case "train": //好友打开
  5456. _formdiv = new U.UF.UI.form(
  5457. "训练平台",
  5458. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5459. "id": "train",
  5460. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5461. "onresize": function () { }
  5462. }, {
  5463. closecallback: function () { }
  5464. }, { "style": { "height": "36px" } }).form; //创建窗体
  5465. _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); } }
  5466. break;
  5467. case "studentStudy":
  5468. _formdiv = new U.UF.UI.form(
  5469. "课程中心",
  5470. $$("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
  5471. "id": "studentStudy",
  5472. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5473. "onresize": function () { }
  5474. }, {
  5475. closecallback: function () { }
  5476. }, { "style": { "height": "36px" } }).form; //创建窗体
  5477. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5478. break;
  5479. case "mindNetwork": //好友打开
  5480. _formdiv = new U.UF.UI.form(
  5481. "思维网格",
  5482. $$("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 }), {
  5483. "id": "mindNetwork",
  5484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5485. "onresize": function () { }
  5486. }, {
  5487. closecallback: function () { }
  5488. }, { "style": { "height": "36px" } }).form; //创建窗体
  5489. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5490. break;
  5491. case "studentClassRoom": //好友打开
  5492. _formdiv = new U.UF.UI.form(
  5493. "实时课堂",
  5494. $$("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 }), {
  5495. "id": "studentClassRoom",
  5496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5497. "onresize": function () { }
  5498. }, {
  5499. closecallback: function () { }
  5500. }, { "style": { "height": "36px" } }).form; //创建窗体
  5501. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5502. setTimeout(() => {
  5503. U.UF.F.windowZooming(_formdiv)
  5504. }, 0);
  5505. break;
  5506. }
  5507. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5508. //选择应用处理
  5509. switch (str) {
  5510. case "project": //好友打开
  5511. _formdiv = new U.UF.UI.form(
  5512. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5513. $$("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 }), {
  5514. "id": "project",
  5515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5516. "onresize": function () { }
  5517. }, {
  5518. closecallback: function () { }
  5519. }, { "style": { "height": "36px" } }).form; //创建窗体
  5520. _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); } }
  5521. break;
  5522. case "student":
  5523. _formdiv = new U.UF.UI.form(
  5524. "学生管理",
  5525. $$("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 }), {
  5526. "id": "student",
  5527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5528. "onresize": function () { }
  5529. }, {
  5530. closecallback: function () { }
  5531. }, { "style": { "height": "36px" } }).form; //创建窗体
  5532. _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); } }
  5533. break;
  5534. case "evaluate":
  5535. _formdiv = new U.UF.UI.form(
  5536. "学生评价",
  5537. $$("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 }), {
  5538. "id": "evaluate",
  5539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5540. "onresize": function () { }
  5541. }, {
  5542. closecallback: function () { }
  5543. }, { "style": { "height": "36px" } }).form; //创建窗体
  5544. _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); } }
  5545. break;
  5546. case "sys":
  5547. _formdiv = new U.UF.UI.form(
  5548. "目标管理",
  5549. $$("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 }), {
  5550. "id": "sys",
  5551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5552. "onresize": function () { }
  5553. }, {
  5554. closecallback: function () { }
  5555. }, { "style": { "height": "36px" } }).form; //创建窗体
  5556. _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); } }
  5557. break;
  5558. case "courseDesign":
  5559. _formdiv = new U.UF.UI.form(
  5560. "项目设计",
  5561. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5562. "id": "courseDesign",
  5563. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5564. "onresize": function () { }
  5565. }, {
  5566. closecallback: function () { }
  5567. }, { "style": { "height": "36px" } }).form; //创建窗体
  5568. _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); } }
  5569. break;
  5570. case "program":
  5571. _formdiv = new U.UF.UI.form(
  5572. "编程平台",
  5573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5574. "id": "program",
  5575. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5576. "onresize": function () { }
  5577. }, {
  5578. closecallback: function () { }
  5579. }, { "style": { "height": "36px" } }).form; //创建窗体
  5580. _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); } }
  5581. break;
  5582. case "class":
  5583. _formdiv = new U.UF.UI.form(
  5584. "班级管理",
  5585. $$("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 }), {
  5586. "id": "class",
  5587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5588. "onresize": function () { }
  5589. }, {
  5590. closecallback: function () { }
  5591. }, { "style": { "height": "36px" } }).form; //创建窗体
  5592. _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); } }
  5593. break;
  5594. case "Grade":
  5595. _formdiv = new U.UF.UI.form(
  5596. "年级管理",
  5597. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5598. "id": "Grade",
  5599. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5600. "onresize": function () { }
  5601. }, {
  5602. closecallback: function () { }
  5603. }, { "style": { "height": "36px" } }).form; //创建窗体
  5604. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5605. break;
  5606. case "teacherOffice":
  5607. _formdiv = new U.UF.UI.form(
  5608. "教研室",
  5609. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5610. "id": "teacherOffice",
  5611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5612. "onresize": function () { }
  5613. }, {
  5614. closecallback: function () { }
  5615. }, { "style": { "height": "36px" } }).form; //创建窗体
  5616. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5617. break;
  5618. case "my":
  5619. _formdiv = new U.UF.UI.form(
  5620. "我的资料",
  5621. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5622. "id": "my",
  5623. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5624. "onresize": function () { }
  5625. }, {
  5626. closecallback: function () { }
  5627. }, { "style": { "height": "36px" } }).form; //创建窗体
  5628. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5629. break;
  5630. case "notice":
  5631. _formdiv = new U.UF.UI.form(
  5632. "通知公告",
  5633. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5634. "id": "notice",
  5635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5636. "onresize": function () { }
  5637. }, {
  5638. closecallback: function () { }
  5639. }, { "style": { "height": "36px" } }).form; //创建窗体
  5640. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5641. break;
  5642. case "library":
  5643. _formdiv = new U.UF.UI.form(
  5644. "素材库",
  5645. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5646. "id": "library",
  5647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5648. "onresize": function () { }
  5649. }, {
  5650. closecallback: function () { }
  5651. }, { "style": { "height": "36px" } }).form; //创建窗体
  5652. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5653. break;
  5654. case "whiteboard":
  5655. _formdiv = new U.UF.UI.form(
  5656. "电子白板",
  5657. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5658. "id": "whiteboard",
  5659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5660. "onresize": function () { }
  5661. }, {
  5662. closecallback: function () { }
  5663. }, { "style": { "height": "36px" } }).form; //创建窗体
  5664. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5665. break;
  5666. case "investigation":
  5667. _formdiv = new U.UF.UI.form(
  5668. "问卷调查",
  5669. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5670. "id": "investigation",
  5671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5672. "onresize": function () { }
  5673. }, {
  5674. closecallback: function () { }
  5675. }, { "style": { "height": "36px" } }).form; //创建窗体
  5676. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5677. break;
  5678. case "note":
  5679. _formdiv = new U.UF.UI.form(
  5680. "便签分类",
  5681. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5682. "id": "note",
  5683. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5684. "onresize": function () { }
  5685. }, {
  5686. closecallback: function () { }
  5687. }, { "style": { "height": "36px" } }).form; //创建窗体
  5688. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5689. break;
  5690. // case "score":
  5691. // _formdiv = new U.UF.UI.form(
  5692. // "量规评分",
  5693. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5694. // "id": "score",
  5695. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5696. // "onresize": function() {}
  5697. // }, {
  5698. // closecallback: function() {}
  5699. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5700. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5701. // break;
  5702. case "mind":
  5703. _formdiv = new U.UF.UI.form(
  5704. "思维导图",
  5705. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5706. "id": "mind",
  5707. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5708. "onresize": function () { }
  5709. }, {
  5710. closecallback: function () { }
  5711. }, { "style": { "height": "36px" } }).form; //创建窗体
  5712. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5713. break;
  5714. case "doc":
  5715. // U.MD.D.I.isRoom();
  5716. _formdiv = new U.UF.UI.form(
  5717. "协同文档",
  5718. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5719. "id": "doc",
  5720. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5721. "onresize": function () { }
  5722. }, {
  5723. closecallback: function () { }
  5724. }, { "style": { "height": "36px" } }).form; //创建窗体
  5725. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5726. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5727. })
  5728. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5729. break;
  5730. case "study":
  5731. _formdiv = new U.UF.UI.form(
  5732. "课程中心",
  5733. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5734. "id": "study",
  5735. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5741. break;
  5742. case "mindNetwork": //好友打开
  5743. _formdiv = new U.UF.UI.form(
  5744. "思维网格",
  5745. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5746. "id": "mindNetwork",
  5747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5748. "onresize": function () { }
  5749. }, {
  5750. closecallback: function () { }
  5751. }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5753. break;
  5754. case "train": //好友打开
  5755. _formdiv = new U.UF.UI.form(
  5756. "训练平台",
  5757. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5758. "id": "mindNetwork",
  5759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5760. "onresize": function () { }
  5761. }, {
  5762. closecallback: function () { }
  5763. }, { "style": { "height": "36px" } }).form; //创建窗体
  5764. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5765. break;
  5766. case "teacherClassRoom": //好友打开
  5767. _formdiv = new U.UF.UI.form(
  5768. "实时课堂",
  5769. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5770. "id": "teacherClassRoom",
  5771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5777. setTimeout(() => {
  5778. U.UF.F.windowZooming(_formdiv)
  5779. }, 0);
  5780. break;
  5781. }
  5782. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5783. switch (str) {
  5784. case "project": //好友打开
  5785. _formdiv = new U.UF.UI.form(
  5786. "课程管理",
  5787. $$("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 }), {
  5788. "id": "project",
  5789. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5790. "onresize": function () { }
  5791. }, {
  5792. closecallback: function () { }
  5793. }, { "style": { "height": "36px" } }).form; //创建窗体
  5794. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5795. break;
  5796. case "evaluate":
  5797. _formdiv = new U.UF.UI.form(
  5798. "学生评价",
  5799. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5800. "id": "evaluate",
  5801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5802. "onresize": function () { }
  5803. }, {
  5804. closecallback: function () { }
  5805. }, { "style": { "height": "36px" } }).form; //创建窗体
  5806. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5807. break;
  5808. case "notice":
  5809. _formdiv = new U.UF.UI.form(
  5810. "通知公告",
  5811. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5812. "id": "notice",
  5813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5814. "onresize": function () { }
  5815. }, {
  5816. closecallback: function () { }
  5817. }, { "style": { "height": "36px" } }).form; //创建窗体
  5818. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5819. break;
  5820. case "stuLibrary":
  5821. _formdiv = new U.UF.UI.form(
  5822. "学习资料",
  5823. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  5824. "id": "stuLibrary",
  5825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5826. "onresize": function () { }
  5827. }, {
  5828. closecallback: function () { }
  5829. }, { "style": { "height": "36px" } }).form; //创建窗体
  5830. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5831. break;
  5832. case "program":
  5833. _formdiv = new U.UF.UI.form(
  5834. "编程平台",
  5835. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5836. "id": "program",
  5837. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5838. "onresize": function () { }
  5839. }, {
  5840. closecallback: function () { }
  5841. }, { "style": { "height": "36px" } }).form; //创建窗体
  5842. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5843. break;
  5844. case "whiteboard":
  5845. _formdiv = new U.UF.UI.form(
  5846. "电子白板",
  5847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5848. "id": "whiteboard",
  5849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5850. "onresize": function () { }
  5851. }, {
  5852. closecallback: function () { }
  5853. }, { "style": { "height": "36px" } }).form; //创建窗体
  5854. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5855. break;
  5856. case "investigation":
  5857. _formdiv = new U.UF.UI.form(
  5858. "问卷调查",
  5859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5860. "id": "investigation",
  5861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //创建窗体
  5866. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5867. break;
  5868. case "mind":
  5869. _formdiv = new U.UF.UI.form(
  5870. "思维导图",
  5871. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5872. "id": "mind",
  5873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5874. "onresize": function () { }
  5875. }, {
  5876. closecallback: function () { }
  5877. }, { "style": { "height": "36px" } }).form; //创建窗体
  5878. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5879. break;
  5880. case "doc":
  5881. // U.MD.D.I.isRoom();
  5882. _formdiv = new U.UF.UI.form(
  5883. "协同文档",
  5884. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5885. "id": "doc",
  5886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5887. "onresize": function () { }
  5888. }, {
  5889. closecallback: function () { }
  5890. }, { "style": { "height": "36px" } }).form; //创建窗体
  5891. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5892. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5893. })
  5894. _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); } }
  5895. break;
  5896. case "study":
  5897. _formdiv = new U.UF.UI.form(
  5898. "课程中心",
  5899. $$("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
  5900. "id": "study",
  5901. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5902. "onresize": function () { }
  5903. }, {
  5904. closecallback: function () { }
  5905. }, { "style": { "height": "36px" } }).form; //创建窗体
  5906. _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); } }
  5907. break;
  5908. case "mindNetwork": //好友打开
  5909. _formdiv = new U.UF.UI.form(
  5910. "思维网格",
  5911. $$("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 }), {
  5912. "id": "mindNetwork",
  5913. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5914. "onresize": function () { }
  5915. }, {
  5916. closecallback: function () { }
  5917. }, { "style": { "height": "36px" } }).form; //创建窗体
  5918. _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); } }
  5919. break;
  5920. case "train": //好友打开
  5921. _formdiv = new U.UF.UI.form(
  5922. "训练平台",
  5923. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5924. "id": "train",
  5925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5926. "onresize": function () { }
  5927. }, {
  5928. closecallback: function () { }
  5929. }, { "style": { "height": "36px" } }).form; //创建窗体
  5930. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5931. break;
  5932. case "sys":
  5933. _formdiv = new U.UF.UI.form(
  5934. "目标管理",
  5935. $$("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 }), {
  5936. "id": "sys",
  5937. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5938. "onresize": function () { }
  5939. }, {
  5940. closecallback: function () { }
  5941. }, { "style": { "height": "36px" } }).form; //创建窗体
  5942. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5943. break;
  5944. case "courseDesign":
  5945. _formdiv = new U.UF.UI.form(
  5946. "项目设计",
  5947. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5948. "id": "courseDesign",
  5949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5950. "onresize": function () { }
  5951. }, {
  5952. closecallback: function () { }
  5953. }, { "style": { "height": "36px" } }).form; //创建窗体
  5954. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5955. break;
  5956. }
  5957. } else if (!_type) {
  5958. switch (str) {
  5959. case "my":
  5960. _formdiv = new U.UF.UI.form(
  5961. "我的资料",
  5962. $$("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 }), {
  5963. "id": "my",
  5964. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5965. "onresize": function () { }
  5966. }, {
  5967. closecallback: function () { }
  5968. }, { "style": { "height": "36px" } }).form; //创建窗体
  5969. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5970. break;
  5971. }
  5972. }
  5973. switch (str) {
  5974. // AIprogram2 AI体验 aihub.cocorobo.cn
  5975. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5976. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5977. case "formulaEdi": //公式编辑
  5978. _formdiv = new U.UF.UI.form(
  5979. "公式编辑",
  5980. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5981. "id": "formulaEdi",
  5982. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5983. "onresize": function () { }
  5984. }, {
  5985. closecallback: function () { }
  5986. }, { "style": { "height": "36px" } }).form; //创建窗体
  5987. _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); } }
  5988. break;
  5989. case "molStr": //分子结构
  5990. _formdiv = new U.UF.UI.form(
  5991. "分子结构",
  5992. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5993. "id": "molStr",
  5994. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5995. "onresize": function () { }
  5996. }, {
  5997. closecallback: function () { }
  5998. }, { "style": { "height": "36px" } }).form; //创建窗体
  5999. _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); } }
  6000. break;
  6001. case "timeAxis": //时间轴
  6002. _formdiv = new U.UF.UI.form(
  6003. "时间轴",
  6004. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6005. "id": "timeAxis",
  6006. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6007. "onresize": function () { }
  6008. }, {
  6009. closecallback: function () { }
  6010. }, { "style": { "height": "36px" } }).form; //创建窗体
  6011. _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); } }
  6012. break;
  6013. case "AIprogram2": //AI体验
  6014. _formdiv = new U.UF.UI.form(
  6015. "AI体验",
  6016. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6017. "id": "AIprogram2",
  6018. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. _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); } }
  6024. break;
  6025. case "Pythonprogram": //python编程
  6026. _formdiv = new U.UF.UI.form(
  6027. "Python编程",
  6028. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6029. "id": "Pythonprogram",
  6030. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6031. "onresize": function () { }
  6032. }, {
  6033. closecallback: function () { }
  6034. }, { "style": { "height": "36px" } }).form; //创建窗体
  6035. _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); } }
  6036. break;
  6037. case "AIprogram": //ai编程
  6038. _formdiv = new U.UF.UI.form(
  6039. "AI编程平台",
  6040. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6041. "id": "AIprogram",
  6042. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6043. "onresize": function () { }
  6044. }, {
  6045. closecallback: function () { }
  6046. }, { "style": { "height": "36px" } }).form; //创建窗体
  6047. _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); } }
  6048. break;
  6049. case "CocoPi": //CocoPi
  6050. _formdiv = new U.UF.UI.form(
  6051. "CocoPi",
  6052. $$("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" }), {
  6053. "id": "CocoPi",
  6054. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6055. "onresize": function () { }
  6056. }, {
  6057. closecallback: function () { }
  6058. }, { "style": { "height": "36px" } }).form; //创建窗体
  6059. _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); } }
  6060. break;
  6061. case "Wood": //Wood
  6062. _formdiv = new U.UF.UI.form(
  6063. "海龟编程",
  6064. $$("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/" }), {
  6065. "id": "Wood",
  6066. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6067. "onresize": function () { }
  6068. }, {
  6069. closecallback: function () { }
  6070. }, { "style": { "height": "36px" } }).form; //创建窗体
  6071. _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); } }
  6072. break;
  6073. case "car": //模拟驾驶
  6074. _formdiv = new U.UF.UI.form(
  6075. "模拟驾驶",
  6076. $$("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/" }), {
  6077. "id": "car",
  6078. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6079. "onresize": function () { }
  6080. }, {
  6081. closecallback: function () { }
  6082. }, { "style": { "height": "36px" } }).form; //创建窗体
  6083. _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); } }
  6084. break;
  6085. case "lineSearch": //路径搜索
  6086. _formdiv = new U.UF.UI.form(
  6087. "路径搜索",
  6088. $$("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/" }), {
  6089. "id": "lineSearch",
  6090. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6091. "onresize": function () { }
  6092. }, {
  6093. closecallback: function () { }
  6094. }, { "style": { "height": "36px" } }).form; //创建窗体
  6095. _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); } }
  6096. break;
  6097. case "deepLearning": //深度学习
  6098. _formdiv = new U.UF.UI.form(
  6099. "深度学习",
  6100. $$("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/#" }), {
  6101. "id": "deepLearning",
  6102. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6103. "onresize": function () { }
  6104. }, {
  6105. closecallback: function () { }
  6106. }, { "style": { "height": "36px" } }).form; //创建窗体
  6107. _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); } }
  6108. break;
  6109. case "allHistory": //深度学习
  6110. _formdiv = new U.UF.UI.form(
  6111. "全历史",
  6112. $$("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/" }), {
  6113. "id": "allHistory",
  6114. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6115. "onresize": function () { }
  6116. }, {
  6117. closecallback: function () { }
  6118. }, { "style": { "height": "36px" } }).form; //创建窗体
  6119. _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); } }
  6120. break;
  6121. case "chatPDF": //ai编程
  6122. _formdiv = new U.UF.UI.form(
  6123. "chatPDF",
  6124. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6125. "id": "chatPDF",
  6126. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6127. "onresize": function () { }
  6128. }, {
  6129. closecallback: function () { }
  6130. }, { "style": { "height": "36px" } }).form; //创建窗体
  6131. _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); } }
  6132. break;
  6133. case "resources": //国家教育
  6134. _formdiv = new U.UF.UI.form(
  6135. "国家教育",
  6136. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6137. "id": "resources",
  6138. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6139. "onresize": function () { }
  6140. }, {
  6141. closecallback: function () { }
  6142. }, { "style": { "height": "36px" } }).form; //创建窗体
  6143. _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); } }
  6144. break;
  6145. case "codeEdit": //源码编辑
  6146. _formdiv = new U.UF.UI.form(
  6147. "源码编辑",
  6148. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6149. "id": "codeEdit",
  6150. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6151. "onresize": function () { }
  6152. }, {
  6153. closecallback: function () { }
  6154. }, { "style": { "height": "36px" } }).form; //创建窗体
  6155. _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); } }
  6156. break; //
  6157. case "MindMap": //MindMap
  6158. _formdiv = new U.UF.UI.form(
  6159. "MindMap",
  6160. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6161. "id": "MindMap",
  6162. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6163. "onresize": function () { }
  6164. }, {
  6165. closecallback: function () { }
  6166. }, { "style": { "height": "36px" } }).form; //创建窗体
  6167. _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); } }
  6168. break;
  6169. case "netWorkPanel": //netWorkPanel
  6170. _formdiv = new U.UF.UI.form(
  6171. "netWorkPanel",
  6172. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6173. "id": "netWorkPanel",
  6174. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6175. "onresize": function () { }
  6176. }, {
  6177. closecallback: function () { }
  6178. }, { "style": { "height": "36px" } }).form; //创建窗体
  6179. _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); } }
  6180. break;
  6181. case "GeoGebra": //GeoGebra
  6182. _formdiv = new U.UF.UI.form(
  6183. "GeoGebra",
  6184. $$("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" }), {
  6185. "id": "GeoGebra",
  6186. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6187. "onresize": function () { }
  6188. }, {
  6189. closecallback: function () { }
  6190. }, { "style": { "height": "36px" } }).form; //创建窗体
  6191. _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); } }
  6192. break;
  6193. case "translation": //翻译
  6194. _formdiv = new U.UF.UI.form(
  6195. "翻译",
  6196. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6197. "id": "translation",
  6198. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6199. "onresize": function () { }
  6200. }, {
  6201. closecallback: function () { }
  6202. }, { "style": { "height": "36px" } }).form; //创建窗体
  6203. _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); } }
  6204. break;
  6205. case "mohe": //魔盒
  6206. _formdiv = new U.UF.UI.form(
  6207. "魔盒识字",
  6208. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6209. "id": "mohe",
  6210. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6211. "onresize": function () { }
  6212. }, {
  6213. closecallback: function () { }
  6214. }, { "style": { "height": "36px" } }).form; //创建窗体
  6215. _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); } }
  6216. break;
  6217. case "24game": //24点
  6218. _formdiv = new U.UF.UI.form(
  6219. "24点",
  6220. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6221. "id": "24game",
  6222. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6223. "onresize": function () { }
  6224. }, {
  6225. closecallback: function () { }
  6226. }, { "style": { "height": "36px" } }).form; //创建窗体
  6227. _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); } }
  6228. break;
  6229. case "case":
  6230. _formdiv = new U.UF.UI.form(
  6231. "课程进展",
  6232. $$("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 }), {
  6233. "id": "case",
  6234. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6235. "onresize": function () { }
  6236. }, {
  6237. closecallback: function () { }
  6238. }, { "style": { "height": "36px" } }).form; //创建窗体
  6239. _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); } }
  6240. break;
  6241. case "snf":
  6242. _formdiv = new U.UF.UI.form(
  6243. "赛诺梵",
  6244. $$("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" }), {
  6245. "id": "snf",
  6246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6247. "onresize": function () { }
  6248. }, {
  6249. closecallback: function () { }
  6250. }, { "style": { "height": "36px" } }).form; //创建窗体
  6251. _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); } }
  6252. break;
  6253. case "hanFamily":
  6254. _formdiv = new U.UF.UI.form(
  6255. "汉字家族",
  6256. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6257. "id": "hanFamily",
  6258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6259. "onresize": function () { }
  6260. }, {
  6261. closecallback: function () { }
  6262. }, { "style": { "height": "36px" } }).form; //创建窗体
  6263. _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); } }
  6264. break;
  6265. case "hanClassics":
  6266. _formdiv = new U.UF.UI.form(
  6267. "国学经典",
  6268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6269. "id": "hanClassics",
  6270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6271. "onresize": function () { }
  6272. }, {
  6273. closecallback: function () { }
  6274. }, { "style": { "height": "36px" } }).form; //创建窗体
  6275. _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); } }
  6276. break;
  6277. case "hanTraining":
  6278. _formdiv = new U.UF.UI.form(
  6279. "笔画训练",
  6280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6281. "id": "hanTraining",
  6282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //创建窗体
  6287. _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); } }
  6288. break;
  6289. case "hanClass":
  6290. _formdiv = new U.UF.UI.form(
  6291. "书法课堂",
  6292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6293. "id": "hanClass",
  6294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, { "style": { "height": "36px" } }).form; //创建窗体
  6299. _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); } }
  6300. break;
  6301. case "han":
  6302. _formdiv = new U.UF.UI.form(
  6303. "汉字宫",
  6304. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6305. "id": "han",
  6306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6307. "onresize": function () { }
  6308. }, {
  6309. closecallback: function () { }
  6310. }, { "style": { "height": "36px" } }).form; //创建窗体
  6311. _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); } }
  6312. break;
  6313. case "projectGM": //课程管理
  6314. _formdiv = new U.UF.UI.form(
  6315. "课程管理",
  6316. $$("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 }), {
  6317. "id": "projectGM",
  6318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //创建窗体
  6323. _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); } }
  6324. break;
  6325. case "studyGM": //课程中心
  6326. _formdiv = new U.UF.UI.form(
  6327. "课程中心",
  6328. $$("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
  6329. "id": "study",
  6330. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6331. "onresize": function () { }
  6332. }, {
  6333. closecallback: function () { }
  6334. }, { "style": { "height": "36px" } }).form; //创建窗体
  6335. _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); } }
  6336. break;
  6337. // studentGM
  6338. case "studentGM": //学生管理
  6339. _formdiv = new U.UF.UI.form(
  6340. "学生管理",
  6341. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  6342. "id": "studentGM",
  6343. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6344. "onresize": function () { }
  6345. }, {
  6346. closecallback: function () { }
  6347. }, { "style": { "height": "36px" } }).form; //创建窗体
  6348. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6349. break;
  6350. case "evaluateGM": //学生评价
  6351. _formdiv = new U.UF.UI.form(
  6352. "学生评价",
  6353. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6354. "id": "evaluateGM",
  6355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6356. "onresize": function () { }
  6357. }, {
  6358. closecallback: function () { }
  6359. }, { "style": { "height": "36px" } }).form; //创建窗体
  6360. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6361. break;
  6362. // classGM
  6363. case "classGM": //班级管理
  6364. _formdiv = new U.UF.UI.form(
  6365. "班级管理",
  6366. $$("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 }), {
  6367. "id": "classGM",
  6368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6369. "onresize": function () { }
  6370. }, {
  6371. closecallback: function () { }
  6372. }, { "style": { "height": "36px" } }).form; //创建窗体
  6373. _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); } }
  6374. break;
  6375. // dataGM
  6376. case "dataGM":
  6377. _formdiv = new U.UF.UI.form(
  6378. "我的资料",
  6379. $$("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 }), {
  6380. "id": "dataGM",
  6381. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6382. "onresize": function () { }
  6383. }, {
  6384. closecallback: function () { }
  6385. }, { "style": { "height": "36px" } }).form; //创建窗体
  6386. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6387. break;
  6388. // caseGM
  6389. case "caseGM": //课程进展
  6390. _formdiv = new U.UF.UI.form(
  6391. "课程进展",
  6392. $$("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 }), {
  6393. "id": "caseGM",
  6394. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6395. "onresize": function () { }
  6396. }, {
  6397. closecallback: function () { }
  6398. }, { "style": { "height": "36px" } }).form; //创建窗体
  6399. _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); } }
  6400. break;
  6401. // meterialGM
  6402. case "meterialGM": //素材库
  6403. _formdiv = new U.UF.UI.form(
  6404. "素材库",
  6405. $$("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 }), {
  6406. "id": "meterialGM",
  6407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6408. "onresize": function () { }
  6409. }, {
  6410. closecallback: function () { }
  6411. }, { "style": { "height": "36px" } }).form; //创建窗体
  6412. _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); } }
  6413. break;
  6414. // evaluateSGM
  6415. case "evaluateSGM": //我的评价
  6416. _formdiv = new U.UF.UI.form(
  6417. "我的评价",
  6418. $$("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 }), {
  6419. "id": "evaluateSGM",
  6420. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6421. "onresize": function () { }
  6422. }, {
  6423. closecallback: function () { }
  6424. }, { "style": { "height": "36px" } }).form; //创建窗体
  6425. _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); } }
  6426. break;
  6427. case "jupyter": //jupyter
  6428. _formdiv = new U.UF.UI.form(
  6429. "jupyter",
  6430. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6431. "id": "jupyter",
  6432. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6433. "onresize": function () { }
  6434. }, {
  6435. closecallback: function () { }
  6436. }, { "style": { "height": "36px" } }).form; //创建窗体
  6437. _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); } }
  6438. break;
  6439. case "number": //数字实验室
  6440. _formdiv = new U.UF.UI.form(
  6441. "数字实验室",
  6442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6443. "id": "number",
  6444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6445. "onresize": function () { }
  6446. }, {
  6447. closecallback: function () { }
  6448. }, { "style": { "height": "36px" } }).form; //创建窗体
  6449. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6450. break;
  6451. case "studentCourse": //项目管理 学生
  6452. _formdiv = new U.UF.UI.form(
  6453. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6454. $$("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 }), {
  6455. "id": "studentCourse",
  6456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6457. "onresize": function () { }
  6458. }, {
  6459. closecallback: function () { }
  6460. }, { "style": { "height": "36px" } }).form; //创建窗体
  6461. _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); } }
  6462. break;
  6463. case "studentCourseS": //项目管理 老师
  6464. _formdiv = new U.UF.UI.form(
  6465. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6466. $$("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 }), {
  6467. "id": "studentCourseS",
  6468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6469. "onresize": function () { }
  6470. }, {
  6471. closecallback: function () { }
  6472. }, { "style": { "height": "36px" } }).form; //创建窗体
  6473. _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); } }
  6474. break;
  6475. case "studentIndex": //项目中心
  6476. _formdiv = new U.UF.UI.form(
  6477. "项目中心",
  6478. $$("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 }), {
  6479. "id": "studentIndex",
  6480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6481. "onresize": function () { }
  6482. }, {
  6483. closecallback: function () { }
  6484. }, { "style": { "height": "36px" } }).form; //创建窗体
  6485. _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); } }
  6486. break;
  6487. case "CaseDesignS":
  6488. _formdiv = new U.UF.UI.form(
  6489. "项目进展",
  6490. $$("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 }), {
  6491. "id": "case",
  6492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6493. "onresize": function () { }
  6494. }, {
  6495. closecallback: function () { }
  6496. }, { "style": { "height": "36px" } }).form; //创建窗体
  6497. _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); } }
  6498. break;
  6499. case "tcStudent": //腾讯学生管理
  6500. _formdiv = new U.UF.UI.form(
  6501. "学生管理",
  6502. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6503. "id": "tcStudent",
  6504. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6505. "onresize": function () { }
  6506. }, {
  6507. closecallback: function () { }
  6508. }, { "style": { "height": "36px" } }).form; //创建窗体
  6509. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6510. break;
  6511. case "tcSchool": //腾讯学校管理
  6512. _formdiv = new U.UF.UI.form(
  6513. "学校管理",
  6514. $$("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 }), {
  6515. "id": "tcSchool",
  6516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6517. "onresize": function () { }
  6518. }, {
  6519. closecallback: function () { }
  6520. }, { "style": { "height": "36px" } }).form; //创建窗体
  6521. _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); } }
  6522. break;
  6523. case "tcTeacher": //腾讯学校管理
  6524. _formdiv = new U.UF.UI.form(
  6525. "教师管理",
  6526. $$("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 }), {
  6527. "id": "tcTeacher",
  6528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6529. "onresize": function () { }
  6530. }, {
  6531. closecallback: function () { }
  6532. }, { "style": { "height": "36px" } }).form; //创建窗体
  6533. _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); } }
  6534. break;
  6535. case "teacher":
  6536. _formdiv = new U.UF.UI.form(
  6537. "教师管理",
  6538. $$("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 }), {
  6539. "id": "teacher",
  6540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6541. "onresize": function () { }
  6542. }, {
  6543. closecallback: function () { }
  6544. }, { "style": { "height": "36px" } }).form; //创建窗体
  6545. _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); } }
  6546. break;
  6547. case "tcData": //腾讯我的资料
  6548. _formdiv = new U.UF.UI.form(
  6549. "我的资料",
  6550. $$("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 }), {
  6551. "id": "tcData",
  6552. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6553. "onresize": function () { }
  6554. }, {
  6555. closecallback: function () { }
  6556. }, { "style": { "height": "36px" } }).form; //创建窗体
  6557. _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); } }
  6558. break;
  6559. case "tcNotice": //腾讯消息通知
  6560. _formdiv = new U.UF.UI.form(
  6561. "消息通知",
  6562. $$("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 }), {
  6563. "id": "tcNotice",
  6564. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6565. "onresize": function () { }
  6566. }, {
  6567. closecallback: function () { }
  6568. }, { "style": { "height": "36px" } }).form; //创建窗体
  6569. _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); } }
  6570. break;
  6571. case "myReport": //好友打开
  6572. _formdiv = new U.UF.UI.form(
  6573. "我的评价",
  6574. $$("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 }), {
  6575. "id": "myReport",
  6576. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6577. "onresize": function () { }
  6578. }, {
  6579. closecallback: function () { }
  6580. }, { "style": { "height": "36px" } }).form; //创建窗体
  6581. _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); } }
  6582. break;
  6583. case "learnAna": //好友打开
  6584. _formdiv = new U.UF.UI.form(
  6585. "学习分析",
  6586. $$("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 }), {
  6587. "id": "learnAna",
  6588. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6589. "onresize": function () { }
  6590. }, {
  6591. closecallback: function () { }
  6592. }, { "style": { "height": "36px" } }).form; //创建窗体
  6593. _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); } }
  6594. break;
  6595. case "AIChat": //AI共创
  6596. _formdiv = new U.UF.UI.form(
  6597. "AI共创",
  6598. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6599. "id": "AIChat",
  6600. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6601. "onresize": function () { }
  6602. }, {
  6603. istop: true,
  6604. closecallback: function () { $("#aichat_icon").remove(); },
  6605. narrowcallback: function () {
  6606. if (!$("#aichat_icon")[0]) {
  6607. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6608. }
  6609. },
  6610. }, { "style": { "height": "36px" } }).form; //创建窗体
  6611. _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); } }
  6612. break;
  6613. case "ainew": //AI共创
  6614. _formdiv = new U.UF.UI.form(
  6615. "AI协同",
  6616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6617. "id": "ainew",
  6618. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //创建窗体
  6623. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6624. break;
  6625. case "gpt4": //gpt4
  6626. _formdiv = new U.UF.UI.form(
  6627. "AI助手",
  6628. $$("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 }), {
  6629. "id": "gpt4",
  6630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () { }
  6634. }, { "style": { "height": "36px" } }).form; //创建窗体
  6635. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6636. break;
  6637. case "aigpt": //gpt4
  6638. _formdiv = new U.UF.UI.form(
  6639. "AI助手+",
  6640. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6641. "id": "aigpt",
  6642. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6643. "onresize": function () { }
  6644. }, {
  6645. closecallback: function () {
  6646. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6647. }
  6648. }, { "style": { "height": "36px" } }).form; //创建窗体
  6649. _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); } }
  6650. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6651. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6652. })
  6653. break;
  6654. case "aiKnowledge": //aiKnowledge
  6655. _formdiv = new U.UF.UI.form(
  6656. "知识建构",
  6657. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6658. "id": "aiKnowledge",
  6659. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, { "style": { "height": "36px" } }).form; //创建窗体
  6664. _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); } }
  6665. break;
  6666. case "futureClass": //AI共创
  6667. _formdiv = new U.UF.UI.form(
  6668. "协同建构",
  6669. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://cscl.cocorobo.cn
  6670. "id": "synergyCourse",
  6671. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6672. "onresize": function () { }
  6673. }, {
  6674. closecallback: function () {
  6675. $("iframe", _formdiv)[0].contentWindow.loginout();
  6676. }
  6677. }, { "style": { "height": "36px" } }).form; //创建窗体
  6678. _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); } }
  6679. break;
  6680. case "aiagent": //ai agent
  6681. _formdiv = new U.UF.UI.form(
  6682. "AI Agent",
  6683. $$("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" }), {
  6684. "id": "AIAgent",
  6685. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6686. "onresize": function () { }
  6687. }, {
  6688. closecallback: function () { }
  6689. }, { "style": { "height": "36px" } }).form; //创建窗体
  6690. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6691. break;
  6692. case "dataBoard": //数据看板
  6693. _formdiv = new U.UF.UI.form(
  6694. "数据看板",
  6695. $$("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 }), {
  6696. "id": "dataBoard",
  6697. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6698. "onresize": function () { }
  6699. }, {
  6700. closecallback: function () { }
  6701. }, { "style": { "height": "36px" } }).form; //创建窗体
  6702. _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); } }
  6703. break;
  6704. case "dataBoardSies": //数据融合
  6705. _formdiv = new U.UF.UI.form(
  6706. "数据融合",
  6707. $$("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 }), {
  6708. "id": "dataBoardSies",
  6709. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6710. "onresize": function () { }
  6711. }, {
  6712. closecallback: function () { }
  6713. }, { "style": { "height": "36px" } }).form; //创建窗体
  6714. _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); } }
  6715. break;
  6716. case "dataBoardNew": //数据看板
  6717. _formdiv = new U.UF.UI.form(
  6718. "综合看板",
  6719. $$("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 }), {
  6720. "id": "dataBoardNew",
  6721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6722. "onresize": function () { }
  6723. }, {
  6724. closecallback: function () { }
  6725. }, { "style": { "height": "36px" } }).form; //创建窗体
  6726. _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); } }
  6727. break;
  6728. case "dataBoardTest": //数据看板
  6729. _formdiv = new U.UF.UI.form(
  6730. "评测看板",
  6731. $$("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 }), {
  6732. "id": "dataBoardTest",
  6733. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6734. "onresize": function () { }
  6735. }, {
  6736. closecallback: function () { }
  6737. }, { "style": { "height": "36px" } }).form; //创建窗体
  6738. _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); } }
  6739. break;
  6740. case "AIAnalyse": //AI共创
  6741. _formdiv = new U.UF.UI.form(
  6742. "AI分析",
  6743. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6744. "id": "AIAnalyse",
  6745. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6746. "onresize": function () { }
  6747. }, {
  6748. closecallback: function () { }
  6749. }, { "style": { "height": "36px" } }).form; //创建窗体
  6750. _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); } }
  6751. break;
  6752. case "studioCourse": //AI共创
  6753. _formdiv = new U.UF.UI.form(
  6754. "工作管理",
  6755. $$("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 }), {
  6756. "id": "studioCourse",
  6757. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6758. "onresize": function () { }
  6759. }, {
  6760. closecallback: function () { }
  6761. }, { "style": { "height": "36px" } }).form; //创建窗体
  6762. _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); } }
  6763. break;
  6764. case "studioIndex": //AI共创
  6765. _formdiv = new U.UF.UI.form(
  6766. "工作中心",
  6767. $$("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 }), {
  6768. "id": "studioIndex",
  6769. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6770. "onresize": function () { }
  6771. }, {
  6772. closecallback: function () { }
  6773. }, { "style": { "height": "36px" } }).form; //创建窗体
  6774. _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); } }
  6775. break;
  6776. case "source":
  6777. _formdiv = new U.UF.UI.form(
  6778. "教学资源",
  6779. $$("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 }), {
  6780. "id": "source",
  6781. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6782. "onresize": function () { }
  6783. }, {
  6784. closecallback: function () { }
  6785. }, { "style": { "height": "36px" } }).form; //创建窗体
  6786. _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); } }
  6787. break;
  6788. case "testTeacher":
  6789. _formdiv = new U.UF.UI.form(
  6790. "智能表单",
  6791. $$("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 }), {
  6792. "id": "testTeacher",
  6793. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6794. "onresize": function () { }
  6795. }, {
  6796. closecallback: function () { }
  6797. }, { "style": { "height": "36px" } }).form; //创建窗体
  6798. _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); } }
  6799. break;
  6800. case "testStudent":
  6801. _formdiv = new U.UF.UI.form(
  6802. "教师中心",
  6803. $$("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 }), {
  6804. "id": "testStudent",
  6805. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6806. "onresize": function () { }
  6807. }, {
  6808. closecallback: function () { }
  6809. }, { "style": { "height": "36px" } }).form; //创建窗体
  6810. _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); } }
  6811. break;
  6812. case "testTeacherSies":
  6813. _formdiv = new U.UF.UI.form(
  6814. "教师管理",
  6815. $$("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 }), {
  6816. "id": "testTeacherSies",
  6817. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6818. "onresize": function () { }
  6819. }, {
  6820. closecallback: function () { }
  6821. }, { "style": { "height": "36px" } }).form; //创建窗体
  6822. _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); } }
  6823. break;
  6824. case "testStudentSies":
  6825. _formdiv = new U.UF.UI.form(
  6826. "教师中心",
  6827. $$("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 }), {
  6828. "id": "testStudentSies",
  6829. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6830. "onresize": function () { }
  6831. }, {
  6832. closecallback: function () { }
  6833. }, { "style": { "height": "36px" } }).form; //创建窗体
  6834. _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); } }
  6835. break;
  6836. case "ytpbl": //消息通知
  6837. _formdiv = new U.UF.UI.form(
  6838. "案例征集",
  6839. $$("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 }), {
  6840. "id": "ytpbl",
  6841. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6842. "onresize": function () { }
  6843. }, {
  6844. closecallback: function () { }
  6845. }, { "style": { "height": "36px" } }).form; //创建窗体
  6846. _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); } }
  6847. // 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");
  6848. break;
  6849. case "aiCourseResource": //人工智能窗体
  6850. _formdiv = new U.UF.UI.form(
  6851. false,
  6852. $$("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 }), {
  6853. "id": "aiCourseResource",
  6854. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6855. "onresize": function () { },
  6856. "isdrag": false,
  6857. }, {
  6858. closecallback: function () { }
  6859. }, { "style": { "height": "36px" } }).form; //创建窗体
  6860. _taskbar = ''
  6861. break;
  6862. case "szdjgCocooroboX": //图形化编程
  6863. _formdiv = new U.UF.UI.form(
  6864. "图形化编程",
  6865. $$("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" }), {
  6866. "id": "szdjgCocooroboX",
  6867. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6868. "onresize": function () { }
  6869. }, {
  6870. closecallback: function () { }
  6871. }, { "style": { "height": "36px" } }).form; //创建窗体
  6872. _taskbar = ''
  6873. break;
  6874. case "szdjgPython": //python编程
  6875. _formdiv = new U.UF.UI.form(
  6876. "Python编程",
  6877. $$("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" }), {
  6878. "id": "szdjgPython",
  6879. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6880. "onresize": function () { }
  6881. }, {
  6882. closecallback: function () { }
  6883. }, { "style": { "height": "36px" } }).form; //创建窗体
  6884. _taskbar = ''
  6885. break;
  6886. case "Record":
  6887. _formdiv = new U.UF.UI.form(
  6888. "观察记录",
  6889. $$("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 }), {
  6890. "id": "Record",
  6891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6892. "onresize": function () { }
  6893. }, {
  6894. closecallback: function () { }
  6895. }, { "style": { "height": "36px" } }).form; //创建窗体
  6896. _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); } }
  6897. break;
  6898. case "aigptCourse":
  6899. _formdiv = new U.UF.UI.form(
  6900. "AI智能体",
  6901. $$("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' }), {
  6902. "id": "aigptCourse",
  6903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6904. "onresize": function () { }
  6905. }, {
  6906. closecallback: function () { }
  6907. }, { "style": { "height": "36px" } }).form; //创建窗体
  6908. _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); } }
  6909. break;
  6910. case "classroomObservation":
  6911. _formdiv = new U.UF.UI.form(
  6912. "课堂观察",
  6913. $$("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 }), {
  6914. "id": "classroomObservation",
  6915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6916. "onresize": function () { }
  6917. }, {
  6918. closecallback: function () { }
  6919. }, { "style": { "height": "36px" } }).form; //创建窗体
  6920. _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); } }
  6921. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6922. break;
  6923. case "pblCourse":
  6924. _formdiv = new U.UF.UI.form(
  6925. "学生PBL",
  6926. $$("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 }), {
  6927. "id": "pblCourse",
  6928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6929. "onresize": function () { }
  6930. }, {
  6931. closecallback: function () { }
  6932. }, { "style": { "height": "36px" } }).form; //创建窗体
  6933. _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); } }
  6934. break;
  6935. case "appStore":
  6936. _formdiv = new U.UF.UI.form(
  6937. "CocoFlow",
  6938. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6939. "id": "pblCourse",
  6940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6941. "onresize": function () { }
  6942. }, {
  6943. closecallback: function () { }
  6944. }, { "style": { "height": "36px" } }).form; //创建窗体
  6945. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6946. break;
  6947. case "userExamine":
  6948. _formdiv = new U.UF.UI.form(
  6949. "账号申请",
  6950. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  6951. "id": "userExamine",
  6952. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  6953. "onresize": function () { }
  6954. }, {
  6955. closecallback: function () { }
  6956. }, { "style": { "height": "36px" } }).form; //创建窗体
  6957. break;
  6958. }
  6959. //U.MD.D.I.openClick(str);
  6960. //如果有任务栏信息
  6961. if (_taskbar) {
  6962. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6963. }
  6964. }
  6965. // U.MD.D.I.openClick = function(str){
  6966. // var click = '';
  6967. // switch(str){
  6968. // case 'friend':
  6969. // click = '我的好友';
  6970. // break;
  6971. // case 'domain':
  6972. // click = '域名管理';
  6973. // break;
  6974. // case 'disk':
  6975. // click = '我的云盘';
  6976. // break;
  6977. // case 'word':
  6978. // click = 'Word';
  6979. // break;
  6980. // case 'excel':
  6981. // click = 'Execl';
  6982. // break;
  6983. // case 'txt':
  6984. // click = '文本文件';
  6985. // break;
  6986. // case 'lookupFriend':
  6987. // click = '查找好友';
  6988. // break;
  6989. // case 'ftp':
  6990. // click = 'FTP';
  6991. // break;
  6992. // case 'group':
  6993. // click = '群组';
  6994. // break;
  6995. // case 'set':
  6996. // click = '我的设置';
  6997. // break;
  6998. // case 'systemSet':
  6999. // click = '系统设置';
  7000. // break;
  7001. // case 'boomYun':
  7002. // click = '互联办公';
  7003. // break;
  7004. // case 'xz':
  7005. // click = '云端下载';
  7006. // break;
  7007. // case 'client':
  7008. // click = '有思浏览器';
  7009. // break;
  7010. // case 'backEndProgramming':
  7011. // click = '在线后台编程';
  7012. // break;
  7013. // case 'frontEndProgramming':
  7014. // click = '在线前端编程';
  7015. // break;
  7016. // default: break;
  7017. // }
  7018. // if(U.MD.D.I.Ip && click){
  7019. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7020. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7021. // })
  7022. // }
  7023. // }
  7024. /**
  7025. *函数作用:ajax简易函数,使用post格式
  7026. *@param url {data} 后台地址
  7027. *@param data {data} 参数json
  7028. *@param fn {data} 回调函数
  7029. *
  7030. */
  7031. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7032. // var xhr = new XMLHttpRequest();
  7033. // xhr.open("GET",url,true);
  7034. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7035. // xhr.onreadystatechange = function(){
  7036. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7037. // fn.call(this,xhr.responseText);
  7038. // }
  7039. // };
  7040. // xhr.send();
  7041. // }
  7042. /*判断是否是内网IP*/
  7043. // U.MD.D.I.isInnerIPFn = function(str){
  7044. // var curPageUrl = str;
  7045. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7046. // curPageUrl =curPageUrl.replace(reg1,'');
  7047. // // console.log('curPageUrl-1 '+curPageUrl);
  7048. // var reg2 = /\:+/g;//替换冒号为一点
  7049. // curPageUrl =curPageUrl.replace(reg2,'.');
  7050. // // console.log('curPageUrl-2 '+curPageUrl);
  7051. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7052. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7053. // if(curPageUrl[2] != '16'){
  7054. // return ipAddress;
  7055. // }else{
  7056. // return false;
  7057. // }
  7058. // }
  7059. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7060. // //compatibility for firefox and chrome
  7061. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7062. // var pc = new myPeerConnection({
  7063. // iceServers: []
  7064. // }),
  7065. // noop = function() {},
  7066. // localIPs = {},
  7067. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7068. // key;
  7069. // function iterateIP(ip) {
  7070. // if (!localIPs[ip]) onNewIP(ip);
  7071. // localIPs[ip] = true;
  7072. // }
  7073. // //create a bogus data channel
  7074. // pc.createDataChannel("");
  7075. // // create offer and set local description
  7076. // pc.createOffer().then(function(sdp) {
  7077. // sdp.sdp.split('\n').forEach(function(line) {
  7078. // if (line.indexOf('candidate') < 0) return;
  7079. // line.match(ipRegex).forEach(iterateIP);
  7080. // });
  7081. // pc.setLocalDescription(sdp, noop, noop);
  7082. // }).catch(function(reason) {
  7083. // // An error occurred, so handle the failure to connect
  7084. // });
  7085. // //sten for candidate events
  7086. // pc.onicecandidate = function(ice) {
  7087. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7088. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7089. // };
  7090. // }
  7091. // U.MD.D.I.getUserIpBool = function(callback){
  7092. // U.MD.D.I.getUserIP(function(ip){
  7093. // alert("Got IP! :" + ip);
  7094. // });
  7095. //}
  7096. //#endregion
  7097. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7098. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7099. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7100. _userinfo = US.userInfo, //登录用户信息
  7101. _userid = US.userInfo.userid //登录用户id
  7102. let _iframe;
  7103. let _cid = cid,
  7104. _stage = stage,
  7105. _task = task,
  7106. _tool = tool;
  7107. var _jie = $$("div", {
  7108. "style": {
  7109. "position": "absolute",
  7110. "bottom": "50px",
  7111. "right": "50px",
  7112. "zIndex": "9999",
  7113. "backgroundColor": "#2268bc",
  7114. "color": "#fff",
  7115. "padding": "12px 20px",
  7116. "cursor": "pointer",
  7117. "borderRadius": "4px",
  7118. },
  7119. "innerHTML": "提交作业"
  7120. })
  7121. let aTool = ''
  7122. let _loading = document.createElement('div')
  7123. _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;"
  7124. // _loading.id = "";
  7125. let _lchild = document.createElement('div')
  7126. let _limg = document.createElement('img')
  7127. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7128. _limg.style = "width: 26px;margin-right: 10px;"
  7129. _lchild.appendChild(_limg)
  7130. let _lspan = document.createElement('span')
  7131. _lspan.innerHTML = "上传中..."
  7132. _lchild.appendChild(_lspan)
  7133. _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%);"
  7134. _loading.appendChild(_lchild)
  7135. var _box = $$('div', {
  7136. "style": {
  7137. "position": "relative",
  7138. "width": "100%",
  7139. "height": "100%",
  7140. },
  7141. })
  7142. _box.appendChild(_loading)
  7143. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7144. switch (str) {
  7145. case "whiteboard":
  7146. aTool = 1;
  7147. _iframe = $$("iframe", {
  7148. "frameborder": "no",
  7149. "border": "0",
  7150. "scrolling ": "no",
  7151. "style": {
  7152. "cssText": "border:0;width:100%;height:100%"
  7153. },
  7154. "src": "https://beta.iwb.cocorobo.cn/"
  7155. })
  7156. _box.appendChild(_iframe);
  7157. _box.appendChild(_jie);
  7158. _formdiv = new U.UF.UI.form(
  7159. "电子白板",
  7160. _box, {
  7161. "id": "whiteboard" + cid + stage + task + tool,
  7162. "style": {
  7163. "width": "90%",
  7164. "height": "90%",
  7165. "overflow": 'hidden'
  7166. },
  7167. "onresize": function () { }
  7168. }, {
  7169. closecallback: function () { }
  7170. }, {
  7171. "style": {
  7172. "height": "36px"
  7173. }
  7174. }).form; //创建窗体
  7175. _taskbar = {
  7176. "id": str + _formdiv.id,
  7177. "style": {
  7178. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7179. },
  7180. "name": "电子白板",
  7181. "forms": _formdiv,
  7182. "click": function () {
  7183. U.MD.D.I.openApplication(str, obj, info);
  7184. }
  7185. }
  7186. break;
  7187. case "mind":
  7188. aTool = 3;
  7189. _iframe = $$("iframe", {
  7190. "frameborder": "no",
  7191. "border": "0",
  7192. "scrolling ": "no",
  7193. "style": {
  7194. "cssText": "border:0;width:100%;height:100%"
  7195. },
  7196. "src": "/kityminder-editor/dist/index.html"
  7197. })
  7198. _box.appendChild(_iframe);
  7199. _box.appendChild(_jie);
  7200. _formdiv = new U.UF.UI.form(
  7201. "思维导图",
  7202. _box, { //"/jsmind/example/demo.html"
  7203. "id": "mind" + cid + stage + task + tool,
  7204. "style": {
  7205. "width": "90%",
  7206. "height": "90%",
  7207. "overflow": 'hidden'
  7208. },
  7209. "onresize": function () { }
  7210. }, {
  7211. closecallback: function () { }
  7212. }, {
  7213. "style": {
  7214. "height": "36px"
  7215. }
  7216. }).form; //创建窗体
  7217. _taskbar = {
  7218. "id": str + _formdiv.id,
  7219. "style": {
  7220. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7221. },
  7222. "name": "思维导图",
  7223. "forms": _formdiv,
  7224. "click": function () {
  7225. U.MD.D.I.openApplication(str, obj, info);
  7226. }
  7227. }
  7228. break;
  7229. case "MindMap":
  7230. aTool = 3;
  7231. _iframe = $$("iframe", {
  7232. "frameborder": "no",
  7233. "border": "0",
  7234. "scrolling ": "no",
  7235. "style": {
  7236. "cssText": "border:0;width:100%;height:100%"
  7237. },
  7238. "src": "//cloud.cocorobo.cn/mind/"
  7239. })
  7240. _box.appendChild(_iframe);
  7241. _box.appendChild(_jie);
  7242. _formdiv = new U.UF.UI.form(
  7243. "思维导图",
  7244. _box, { //"/jsmind/example/demo.html"
  7245. "id": "mind" + cid + stage + task + tool,
  7246. "style": {
  7247. "width": "90%",
  7248. "height": "90%",
  7249. "overflow": 'hidden'
  7250. },
  7251. "onresize": function () { }
  7252. }, {
  7253. closecallback: function () { }
  7254. }, {
  7255. "style": {
  7256. "height": "36px"
  7257. }
  7258. }).form; //创建窗体
  7259. _taskbar = {
  7260. "id": str + _formdiv.id,
  7261. "style": {
  7262. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7263. },
  7264. "name": "思维导图",
  7265. "forms": _formdiv,
  7266. "click": function () {
  7267. U.MD.D.I.openApplication(str, obj, info);
  7268. }
  7269. }
  7270. break;
  7271. case "doc":
  7272. aTool = 6;
  7273. _iframe = $$("iframe", {
  7274. "frameborder": "no",
  7275. "border": "0",
  7276. "scrolling ": "no",
  7277. "style": {
  7278. "cssText": "border:0;width:100%;height:100%"
  7279. },
  7280. "src": "/Office/Word/WordEditArea.htm"
  7281. })
  7282. _box.appendChild(_iframe);
  7283. _box.appendChild(_jie);
  7284. _formdiv = new U.UF.UI.form(
  7285. "协同文档",
  7286. _box, {
  7287. "id": "doc" + cid + stage + task + tool,
  7288. "style": {
  7289. "width": "90%",
  7290. "height": "90%",
  7291. "overflow": 'hidden'
  7292. },
  7293. "onresize": function () { }
  7294. }, {
  7295. closecallback: function () { }
  7296. }, {
  7297. "style": {
  7298. "height": "36px"
  7299. }
  7300. }).form; //创建窗体
  7301. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7302. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7303. })
  7304. _taskbar = {
  7305. "id": str + _formdiv.id,
  7306. "style": {
  7307. "backgroundImage": "url(/img/icon/doc.png)"
  7308. },
  7309. "name": "协同文档",
  7310. "forms": _formdiv,
  7311. "click": function () {
  7312. U.MD.D.I.openApplication(str, obj, info);
  7313. }
  7314. }
  7315. break;
  7316. case "mindNetwork": //好友打开
  7317. aTool = 7;
  7318. _iframe = $$("iframe", {
  7319. "webkitallowfullscreen": "",
  7320. "mozallowfullscreen": "",
  7321. "allowfullscreen": "",
  7322. "frameborder": "no",
  7323. "border": "0",
  7324. "scrolling ": "no",
  7325. "style": {
  7326. "cssText": "border:0; width:100%; height:100%;"
  7327. },
  7328. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7329. })
  7330. _box.appendChild(_iframe);
  7331. _box.appendChild(_jie);
  7332. _formdiv = new U.UF.UI.form(
  7333. "思维网格",
  7334. _box, {
  7335. "id": "mindNetwork" + cid + stage + task + tool,
  7336. "style": {
  7337. "width": "90%",
  7338. "height": "90%",
  7339. "overflow": 'hidden'
  7340. },
  7341. "onresize": function () { }
  7342. }, {
  7343. closecallback: function () { }
  7344. }, {
  7345. "style": {
  7346. "height": "36px"
  7347. }
  7348. }).form; //创建窗体
  7349. _taskbar = {
  7350. "id": str + _formdiv.id,
  7351. "style": {
  7352. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7353. },
  7354. "name": "思维网格",
  7355. "forms": _formdiv,
  7356. "click": function () {
  7357. U.MD.D.I.openApplication(str, obj, info);
  7358. }
  7359. }
  7360. break;
  7361. case "courseDesign":
  7362. _iframe = $$("iframe", {
  7363. "webkitallowfullscreen": "",
  7364. "mozallowfullscreen": "",
  7365. "allowfullscreen": "",
  7366. "frameborder": "no",
  7367. "border": "0",
  7368. "scrolling ": "no",
  7369. "style": {
  7370. "cssText": "border:0; width:100%; height:100%;"
  7371. },
  7372. "src": "/course-design-vue"
  7373. })
  7374. _box.appendChild(_iframe);
  7375. _box.appendChild(_jie);
  7376. _formdiv = new U.UF.UI.form(
  7377. "项目设计",
  7378. _box, {
  7379. "id": "courseDesign" + cid + stage + task + tool,
  7380. "style": {
  7381. "width": "90%",
  7382. "height": "90%",
  7383. "overflow": 'hidden'
  7384. },
  7385. "onresize": function () { }
  7386. }, {
  7387. closecallback: function () { }
  7388. }, {
  7389. "style": {
  7390. "height": "36px"
  7391. }
  7392. }).form; //创建窗体
  7393. _taskbar = {
  7394. "id": str + _formdiv.id,
  7395. "style": {
  7396. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7397. },
  7398. "name": "项目设计",
  7399. "forms": _formdiv,
  7400. "click": function () {
  7401. U.MD.D.I.openApplication(str, obj, info);
  7402. }
  7403. }
  7404. break;
  7405. }
  7406. const script1 = document.createElement("script");
  7407. script1.type = "text/javascript";
  7408. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7409. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7410. const script2 = document.createElement("script");
  7411. script2.type = "text/javascript";
  7412. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7413. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7414. const script3 = document.createElement("script");
  7415. script3.type = "text/javascript";
  7416. script3.charset = "UTF-8";
  7417. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7418. const script4 = document.createElement("script");
  7419. script4.type = "text/javascript";
  7420. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7421. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7422. if (_iframe) {
  7423. if (str == 'doc') {
  7424. _iframe = _formdiv.querySelector('iframe')
  7425. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7426. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7427. _iframe.contentWindow.document.body.appendChild(script1);
  7428. _iframe.contentWindow.document.body.appendChild(script2);
  7429. // _iframe.contentWindow.document.body.appendChild(script3);
  7430. _iframe.contentWindow.document.body.appendChild(script4);
  7431. })
  7432. if (onloadListener) {
  7433. _iframe.contentDocument.location.reload()
  7434. } else {
  7435. _iframe.contentDocument.location.reload()
  7436. }
  7437. } else if (str == 'courseDesign') {
  7438. U.UF.DL.iframeLoad(_iframe, function () {
  7439. // _iframe.contentWindow.U.MD.O.W.load();
  7440. // _iframe.contentWindow.document.body.appendChild(script1);
  7441. _iframe.contentWindow.document.body.appendChild(script2);
  7442. _iframe.contentWindow.document.body.appendChild(script4);
  7443. })
  7444. } else if (str == 'mind') {
  7445. _iframe = _formdiv.querySelector('iframe')
  7446. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7447. //
  7448. _iframe.contentWindow.document.body.appendChild(script1);
  7449. _iframe.contentWindow.document.body.appendChild(script2);
  7450. _iframe.contentWindow.document.body.appendChild(script4);
  7451. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7452. })
  7453. if (onloadListener) {
  7454. _iframe.contentDocument.location.reload()
  7455. } else {
  7456. _iframe.contentDocument.location.reload()
  7457. }
  7458. } else if (str == 'whiteboard') {
  7459. _iframe = _formdiv.querySelector('iframe')
  7460. let onloadListener = _iframe.onload = () => {
  7461. _iframe.contentWindow.document.body.appendChild(script1);
  7462. _iframe.contentWindow.document.body.appendChild(script2);
  7463. _iframe.contentWindow.document.body.appendChild(script4);
  7464. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7465. };
  7466. // if (onloadListener) {
  7467. // try {
  7468. // _iframe.src += "?cocorobo="+new Date().getTime()
  7469. // _iframe.contentWindow.document.location.reload()
  7470. // } catch (error) {
  7471. // }
  7472. // } else {
  7473. // _iframe.contentDocument.location.reload()
  7474. // }
  7475. } else {
  7476. _iframe.onload = () => {
  7477. _iframe.contentWindow.document.body.appendChild(script1);
  7478. _iframe.contentWindow.document.body.appendChild(script2);
  7479. // _iframe.contentWindow.document.body.appendChild(script3);
  7480. _iframe.contentWindow.document.body.appendChild(script4);
  7481. };
  7482. }
  7483. _jie.onclick = async () => {
  7484. let text = ''
  7485. if (aTool == 1) {
  7486. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7487. } else if (aTool == 6) {
  7488. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7489. } else if (aTool == 3) {
  7490. text = await U.MD.D.I.getEditorContent(_iframe);
  7491. }
  7492. _loading.style.display = 'flex'
  7493. console.log(_loading);
  7494. var _ajs = _iframe.contentWindow.document.createElement("script");
  7495. _ajs.type = "text/javascript";
  7496. _ajs.innerHTML =
  7497. // 'console.log(' + _loading + ');\n' +
  7498. 'var _js = document.createElement("script");\n' +
  7499. '_js.type="text/javascript";\n' +
  7500. '_js.charset="UTF-8";\n' +
  7501. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7502. "_js.onload = function(){\n" +
  7503. ' var a = document.getElementsByTagName("img")\n' +
  7504. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7505. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7506. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7507. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7508. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7509. "beforeUpload_shishi(file," +
  7510. "'" +
  7511. _userid +
  7512. "'" +
  7513. ", " +
  7514. "'" +
  7515. _cid +
  7516. "'" +
  7517. ", " +
  7518. "'" +
  7519. _stage +
  7520. "'" +
  7521. ", " +
  7522. "'" +
  7523. _task +
  7524. "'" +
  7525. ", " +
  7526. "'" +
  7527. _tool +
  7528. "'" +
  7529. ", " +
  7530. "'" +
  7531. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7532. "'" +
  7533. ", " +
  7534. "'" +
  7535. aTool +
  7536. "'" +
  7537. ", " +
  7538. "`" +
  7539. text +
  7540. "`" +
  7541. ")\n" +
  7542. " });\n" +
  7543. "}\n" +
  7544. "document.head.appendChild(_js);\n";
  7545. _iframe.contentWindow.document.head.appendChild(_ajs);
  7546. }
  7547. }
  7548. //U.MD.D.I.openClick(str);
  7549. //如果有任务栏信息
  7550. // if (_taskbar) {
  7551. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7552. // }
  7553. }
  7554. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7555. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7556. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7557. _userinfo = US.userInfo, //登录用户信息
  7558. _userid = US.userInfo.userid //登录用户id
  7559. let _iframe;
  7560. let _cid = cid,
  7561. _stage = stage,
  7562. _task = task,
  7563. _tool = tool;
  7564. var _jie = $$("div", {
  7565. "style": {
  7566. "position": "absolute",
  7567. "bottom": "50px",
  7568. "right": "50px",
  7569. "zIndex": "9999",
  7570. "backgroundColor": "#2268bc",
  7571. "color": "#fff",
  7572. "padding": "12px 20px",
  7573. "cursor": "pointer",
  7574. "borderRadius": "4px",
  7575. },
  7576. "innerHTML": "提交作业"
  7577. })
  7578. let aTool = ''
  7579. let _loading = document.createElement('div')
  7580. _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;"
  7581. // _loading.id = "";
  7582. let _lchild = document.createElement('div')
  7583. let _limg = document.createElement('img')
  7584. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7585. _limg.style = "width: 26px;margin-right: 10px;"
  7586. _lchild.appendChild(_limg)
  7587. let _lspan = document.createElement('span')
  7588. _lspan.innerHTML = "上传中..."
  7589. _lchild.appendChild(_lspan)
  7590. _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%);"
  7591. _loading.appendChild(_lchild)
  7592. let _box = $$('div', {
  7593. "style": {
  7594. "position": "relative",
  7595. "width": "100%",
  7596. "height": "100%",
  7597. },
  7598. })
  7599. _box.appendChild(_loading)
  7600. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7601. switch (str) {
  7602. case "whiteboard":
  7603. aTool = 1;
  7604. _iframe = $$("iframe", {
  7605. "frameborder": "no",
  7606. "border": "0",
  7607. "scrolling ": "no",
  7608. "style": {
  7609. "cssText": "border:0;width:100%;height:100%"
  7610. },
  7611. "src": "https://beta.iwb.cocorobo.cn/"
  7612. })
  7613. _box.appendChild(_iframe);
  7614. _box.appendChild(_jie);
  7615. _formdiv = new U.UF.UI.form(
  7616. "电子白板",
  7617. _box, {
  7618. "id": "whiteboard" + cid + stage + task + tool,
  7619. "style": {
  7620. "width": "90%",
  7621. "height": "90%",
  7622. "overflow": 'hidden'
  7623. },
  7624. "onresize": function () { }
  7625. }, {
  7626. closecallback: function () { }
  7627. }, {
  7628. "style": {
  7629. "height": "36px"
  7630. }
  7631. }).form; //创建窗体
  7632. _taskbar = {
  7633. "id": str + _formdiv.id,
  7634. "style": {
  7635. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7636. },
  7637. "name": "电子白板",
  7638. "forms": _formdiv,
  7639. "click": function () {
  7640. U.MD.D.I.openApplication(str, obj, info);
  7641. }
  7642. }
  7643. break;
  7644. case "mind":
  7645. aTool = 3;
  7646. _iframe = $$("iframe", {
  7647. "frameborder": "no",
  7648. "border": "0",
  7649. "scrolling ": "no",
  7650. "style": {
  7651. "cssText": "border:0;width:100%;height:100%"
  7652. },
  7653. "src": "/kityminder-editor/dist/index.html"
  7654. })
  7655. _box.appendChild(_iframe);
  7656. _box.appendChild(_jie);
  7657. _formdiv = new U.UF.UI.form(
  7658. "思维导图",
  7659. _box, { //"/jsmind/example/demo.html"
  7660. "id": "mind" + cid + stage + task + tool,
  7661. "style": {
  7662. "width": "90%",
  7663. "height": "90%",
  7664. "overflow": 'hidden'
  7665. },
  7666. "onresize": function () { }
  7667. }, {
  7668. closecallback: function () { }
  7669. }, {
  7670. "style": {
  7671. "height": "36px"
  7672. }
  7673. }).form; //创建窗体
  7674. _taskbar = {
  7675. "id": str + _formdiv.id,
  7676. "style": {
  7677. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7678. },
  7679. "name": "思维导图",
  7680. "forms": _formdiv,
  7681. "click": function () {
  7682. U.MD.D.I.openApplication(str, obj, info);
  7683. }
  7684. }
  7685. break;
  7686. case "MindMap":
  7687. aTool = 3;
  7688. _iframe = $$("iframe", {
  7689. "frameborder": "no",
  7690. "border": "0",
  7691. "scrolling ": "no",
  7692. "style": {
  7693. "cssText": "border:0;width:100%;height:100%"
  7694. },
  7695. "src": "//cloud.cocorobo.cn/mind/"
  7696. })
  7697. _box.appendChild(_iframe);
  7698. _box.appendChild(_jie);
  7699. _formdiv = new U.UF.UI.form(
  7700. "思维导图",
  7701. _box, { //"/jsmind/example/demo.html"
  7702. "id": "mind" + cid + stage + task + tool,
  7703. "style": {
  7704. "width": "90%",
  7705. "height": "90%",
  7706. "overflow": 'hidden'
  7707. },
  7708. "onresize": function () { }
  7709. }, {
  7710. closecallback: function () { }
  7711. }, {
  7712. "style": {
  7713. "height": "36px"
  7714. }
  7715. }).form; //创建窗体
  7716. _taskbar = {
  7717. "id": str + _formdiv.id,
  7718. "style": {
  7719. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7720. },
  7721. "name": "思维导图",
  7722. "forms": _formdiv,
  7723. "click": function () {
  7724. U.MD.D.I.openApplication(str, obj, info);
  7725. }
  7726. }
  7727. break;
  7728. case "doc":
  7729. aTool = 6;
  7730. _iframe = $$("iframe", {
  7731. "frameborder": "no",
  7732. "border": "0",
  7733. "scrolling ": "no",
  7734. "style": {
  7735. "cssText": "border:0;width:100%;height:100%"
  7736. },
  7737. "src": "/Office/Word/WordEditArea.htm"
  7738. })
  7739. _box.appendChild(_iframe);
  7740. _box.appendChild(_jie);
  7741. _formdiv = new U.UF.UI.form(
  7742. "协同文档",
  7743. _box, {
  7744. "id": "doc" + cid + stage + task + tool,
  7745. "style": {
  7746. "width": "90%",
  7747. "height": "90%",
  7748. "overflow": 'hidden'
  7749. },
  7750. "onresize": function () { }
  7751. }, {
  7752. closecallback: function () { }
  7753. }, {
  7754. "style": {
  7755. "height": "36px"
  7756. }
  7757. }).form; //创建窗体
  7758. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7759. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7760. })
  7761. _taskbar = {
  7762. "id": str + _formdiv.id,
  7763. "style": {
  7764. "backgroundImage": "url(/img/icon/doc.png)"
  7765. },
  7766. "name": "协同文档",
  7767. "forms": _formdiv,
  7768. "click": function () {
  7769. U.MD.D.I.openApplication(str, obj, info);
  7770. }
  7771. }
  7772. break;
  7773. case "mindNetwork": //好友打开
  7774. aTool = 7;
  7775. _iframe = $$("iframe", {
  7776. "webkitallowfullscreen": "",
  7777. "mozallowfullscreen": "",
  7778. "allowfullscreen": "",
  7779. "frameborder": "no",
  7780. "border": "0",
  7781. "scrolling ": "no",
  7782. "style": {
  7783. "cssText": "border:0; width:100%; height:100%;"
  7784. },
  7785. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7786. })
  7787. _box.appendChild(_iframe);
  7788. _box.appendChild(_jie);
  7789. _formdiv = new U.UF.UI.form(
  7790. "思维网格",
  7791. _box, {
  7792. "id": "mindNetwork" + cid + stage + task + tool,
  7793. "style": {
  7794. "width": "90%",
  7795. "height": "90%",
  7796. "overflow": 'hidden'
  7797. },
  7798. "onresize": function () { }
  7799. }, {
  7800. closecallback: function () { }
  7801. }, {
  7802. "style": {
  7803. "height": "36px"
  7804. }
  7805. }).form; //创建窗体
  7806. _taskbar = {
  7807. "id": str + _formdiv.id,
  7808. "style": {
  7809. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7810. },
  7811. "name": "思维网格",
  7812. "forms": _formdiv,
  7813. "click": function () {
  7814. U.MD.D.I.openApplication(str, obj, info);
  7815. }
  7816. }
  7817. break;
  7818. case "courseDesign":
  7819. _iframe = $$("iframe", {
  7820. "webkitallowfullscreen": "",
  7821. "mozallowfullscreen": "",
  7822. "allowfullscreen": "",
  7823. "frameborder": "no",
  7824. "border": "0",
  7825. "scrolling ": "no",
  7826. "style": {
  7827. "cssText": "border:0; width:100%; height:100%;"
  7828. },
  7829. "src": "/course-design-vue"
  7830. })
  7831. _box.appendChild(_iframe);
  7832. _box.appendChild(_jie);
  7833. _formdiv = new U.UF.UI.form(
  7834. "项目设计",
  7835. _box, {
  7836. "id": "courseDesign" + cid + stage + task + tool,
  7837. "style": {
  7838. "width": "90%",
  7839. "height": "90%",
  7840. "overflow": 'hidden'
  7841. },
  7842. "onresize": function () { }
  7843. }, {
  7844. closecallback: function () { }
  7845. }, {
  7846. "style": {
  7847. "height": "36px"
  7848. }
  7849. }).form; //创建窗体
  7850. _taskbar = {
  7851. "id": str + _formdiv.id,
  7852. "style": {
  7853. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7854. },
  7855. "name": "项目设计",
  7856. "forms": _formdiv,
  7857. "click": function () {
  7858. U.MD.D.I.openApplication(str, obj, info);
  7859. }
  7860. }
  7861. break;
  7862. }
  7863. const script1 = document.createElement("script");
  7864. script1.type = "text/javascript";
  7865. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7866. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7867. const script2 = document.createElement("script");
  7868. script2.type = "text/javascript";
  7869. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7870. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7871. const script3 = document.createElement("script");
  7872. script3.type = "text/javascript";
  7873. script3.charset = "UTF-8";
  7874. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7875. const script4 = document.createElement("script");
  7876. script4.type = "text/javascript";
  7877. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7878. script4.src = window.origin + "/js/Common/jietu2E.js";
  7879. if (_iframe) {
  7880. if (str == 'doc') {
  7881. _iframe = _formdiv.querySelector('iframe')
  7882. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7883. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7884. _iframe.contentWindow.document.body.appendChild(script1);
  7885. _iframe.contentWindow.document.body.appendChild(script2);
  7886. // _iframe.contentWindow.document.body.appendChild(script3);
  7887. _iframe.contentWindow.document.body.appendChild(script4);
  7888. })
  7889. if (onloadListener) {
  7890. _iframe.contentDocument.location.reload()
  7891. } else {
  7892. _iframe.contentDocument.location.reload()
  7893. }
  7894. } else if (str == 'courseDesign') {
  7895. U.UF.DL.iframeLoad(_iframe, function () {
  7896. // _iframe.contentWindow.U.MD.O.W.load();
  7897. // _iframe.contentWindow.document.body.appendChild(script1);
  7898. _iframe.contentWindow.document.body.appendChild(script2);
  7899. _iframe.contentWindow.document.body.appendChild(script4);
  7900. })
  7901. } else if (str == 'mind') {
  7902. _iframe = _formdiv.querySelector('iframe')
  7903. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7904. //
  7905. _iframe.contentWindow.document.body.appendChild(script1);
  7906. _iframe.contentWindow.document.body.appendChild(script2);
  7907. _iframe.contentWindow.document.body.appendChild(script4);
  7908. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7909. })
  7910. if (onloadListener) {
  7911. _iframe.contentDocument.location.reload()
  7912. } else {
  7913. _iframe.contentDocument.location.reload()
  7914. }
  7915. } else if (str == 'whiteboard') {
  7916. _iframe = _formdiv.querySelector('iframe')
  7917. let onloadListener = _iframe.onload = () => {
  7918. _iframe.contentWindow.document.body.appendChild(script1);
  7919. _iframe.contentWindow.document.body.appendChild(script2);
  7920. _iframe.contentWindow.document.body.appendChild(script4);
  7921. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7922. };
  7923. // if (onloadListener) {
  7924. // try {
  7925. // _iframe.src += "?cocorobo="+new Date().getTime()
  7926. // _iframe.contentWindow.document.location.reload()
  7927. // } catch (error) {
  7928. // }
  7929. // } else {
  7930. // _iframe.contentDocument.location.reload()
  7931. // }
  7932. } else {
  7933. _iframe.onload = () => {
  7934. _iframe.contentWindow.document.body.appendChild(script1);
  7935. _iframe.contentWindow.document.body.appendChild(script2);
  7936. // _iframe.contentWindow.document.body.appendChild(script3);
  7937. _iframe.contentWindow.document.body.appendChild(script4);
  7938. };
  7939. }
  7940. _jie.onclick = async () => {
  7941. let text = ''
  7942. if (aTool == 1) {
  7943. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7944. } else if (aTool == 6) {
  7945. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7946. } else if (aTool == 3) {
  7947. text = await U.MD.D.I.getEditorContent(_iframe);
  7948. }
  7949. _loading.style.display = 'flex'
  7950. console.log(_loading);
  7951. var _ajs = _iframe.contentWindow.document.createElement("script");
  7952. _ajs.type = "text/javascript";
  7953. _ajs.innerHTML =
  7954. // 'console.log(' + _loading + ');\n' +
  7955. 'var _js = document.createElement("script");\n' +
  7956. '_js.type="text/javascript";\n' +
  7957. '_js.charset="UTF-8";\n' +
  7958. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7959. "_js.onload = function(){\n" +
  7960. ' var a = document.getElementsByTagName("img")\n' +
  7961. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7962. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7963. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7964. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7965. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7966. "beforeUpload_shishi(file," +
  7967. "'" +
  7968. _userid +
  7969. "'" +
  7970. ", " +
  7971. "'" +
  7972. _cid +
  7973. "'" +
  7974. ", " +
  7975. "'" +
  7976. _stage +
  7977. "'" +
  7978. ", " +
  7979. "'" +
  7980. _task +
  7981. "'" +
  7982. ", " +
  7983. "'" +
  7984. _tool +
  7985. "'" +
  7986. ", " +
  7987. "'" +
  7988. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7989. "'" +
  7990. ", " +
  7991. "'" +
  7992. aTool +
  7993. "'" +
  7994. ", " +
  7995. "`" +
  7996. text +
  7997. "`" +
  7998. ")\n" +
  7999. " });\n" +
  8000. "}\n" +
  8001. "document.head.appendChild(_js);\n";
  8002. _iframe.contentWindow.document.head.appendChild(_ajs);
  8003. }
  8004. }
  8005. //U.MD.D.I.openClick(str);
  8006. //如果有任务栏信息
  8007. // if (_taskbar) {
  8008. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8009. // }
  8010. }
  8011. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8012. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8013. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8014. _userid = student.userid, //登录用户id
  8015. _username = student.student //用户名字
  8016. let _iframe;
  8017. let _cid = cid,
  8018. _stage = stage,
  8019. _task = task,
  8020. _tool = tool;
  8021. var _jie = $$("div", {
  8022. "style": {
  8023. "position": "absolute",
  8024. "bottom": "50px",
  8025. "right": "50px",
  8026. "zIndex": "9999",
  8027. "backgroundColor": "#2268bc",
  8028. "color": "#fff",
  8029. "padding": "12px 20px",
  8030. "cursor": "pointer",
  8031. "borderRadius": "4px",
  8032. },
  8033. "innerHTML": "提交作业"
  8034. })
  8035. let aTool = ''
  8036. let _loading = document.createElement('div')
  8037. _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;"
  8038. // _loading.id = "";
  8039. let _lchild = document.createElement('div')
  8040. let _limg = document.createElement('img')
  8041. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8042. _limg.style = "width: 26px;margin-right: 10px;"
  8043. _lchild.appendChild(_limg)
  8044. let _lspan = document.createElement('span')
  8045. _lspan.innerHTML = "上传中..."
  8046. _lchild.appendChild(_lspan)
  8047. _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%);"
  8048. _loading.appendChild(_lchild)
  8049. var _box = $$('div', {
  8050. "style": {
  8051. "position": "relative",
  8052. "width": "100%",
  8053. "height": "100%",
  8054. },
  8055. })
  8056. _box.appendChild(_loading)
  8057. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8058. switch (str) {
  8059. case "whiteboard":
  8060. aTool = 1;
  8061. _iframe = $$("iframe", {
  8062. "frameborder": "no",
  8063. "border": "0",
  8064. "scrolling ": "no",
  8065. "style": {
  8066. "cssText": "border:0;width:100%;height:100%"
  8067. },
  8068. "src": "https://beta.iwb.cocorobo.cn/"
  8069. })
  8070. _box.appendChild(_iframe);
  8071. _box.appendChild(_jie);
  8072. _formdiv = new U.UF.UI.form(
  8073. "电子白板-" + _username,
  8074. _box, {
  8075. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8076. "style": {
  8077. "width": "90%",
  8078. "height": "90%",
  8079. "overflow": 'hidden'
  8080. },
  8081. "onresize": function () { }
  8082. }, {
  8083. closecallback: function () { }
  8084. }, {
  8085. "style": {
  8086. "height": "36px"
  8087. }
  8088. }).form; //创建窗体
  8089. _taskbar = {
  8090. "id": str + _formdiv.id,
  8091. "style": {
  8092. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8093. },
  8094. "name": "电子白板",
  8095. "forms": _formdiv,
  8096. "click": function () {
  8097. U.MD.D.I.openApplication(str, obj, info);
  8098. }
  8099. }
  8100. break;
  8101. case "mind":
  8102. aTool = 3;
  8103. _iframe = $$("iframe", {
  8104. "frameborder": "no",
  8105. "border": "0",
  8106. "scrolling ": "no",
  8107. "style": {
  8108. "cssText": "border:0;width:100%;height:100%"
  8109. },
  8110. "src": "/kityminder-editor/dist/index.html"
  8111. })
  8112. _box.appendChild(_iframe);
  8113. _box.appendChild(_jie);
  8114. _formdiv = new U.UF.UI.form(
  8115. "思维导图-" + _username,
  8116. _box, { //"/jsmind/example/demo.html"
  8117. "id": "mind" + cid + stage + task + tool + _userid,
  8118. "style": {
  8119. "width": "90%",
  8120. "height": "90%",
  8121. "overflow": 'hidden'
  8122. },
  8123. "onresize": function () { }
  8124. }, {
  8125. closecallback: function () { }
  8126. }, {
  8127. "style": {
  8128. "height": "36px"
  8129. }
  8130. }).form; //创建窗体
  8131. _taskbar = {
  8132. "id": str + _formdiv.id,
  8133. "style": {
  8134. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8135. },
  8136. "name": "思维导图",
  8137. "forms": _formdiv,
  8138. "click": function () {
  8139. U.MD.D.I.openApplication(str, obj, info);
  8140. }
  8141. }
  8142. break;
  8143. case "MindMap":
  8144. aTool = 3;
  8145. _iframe = $$("iframe", {
  8146. "frameborder": "no",
  8147. "border": "0",
  8148. "scrolling ": "no",
  8149. "style": {
  8150. "cssText": "border:0;width:100%;height:100%"
  8151. },
  8152. "src": "//cloud.cocorobo.cn/mind/"
  8153. })
  8154. _box.appendChild(_iframe);
  8155. _box.appendChild(_jie);
  8156. _formdiv = new U.UF.UI.form(
  8157. "思维导图-" + _username,
  8158. _box, { //"/jsmind/example/demo.html"
  8159. "id": "mind" + cid + stage + task + tool + _userid,
  8160. "style": {
  8161. "width": "90%",
  8162. "height": "90%",
  8163. "overflow": 'hidden'
  8164. },
  8165. "onresize": function () { }
  8166. }, {
  8167. closecallback: function () { }
  8168. }, {
  8169. "style": {
  8170. "height": "36px"
  8171. }
  8172. }).form; //创建窗体
  8173. _taskbar = {
  8174. "id": str + _formdiv.id,
  8175. "style": {
  8176. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8177. },
  8178. "name": "思维导图",
  8179. "forms": _formdiv,
  8180. "click": function () {
  8181. U.MD.D.I.openApplication(str, obj, info);
  8182. }
  8183. }
  8184. break;
  8185. case "doc":
  8186. aTool = 6;
  8187. _iframe = $$("iframe", {
  8188. "frameborder": "no",
  8189. "border": "0",
  8190. "scrolling ": "no",
  8191. "style": {
  8192. "cssText": "border:0;width:100%;height:100%"
  8193. },
  8194. "src": "/Office/Word/WordEditArea.htm"
  8195. })
  8196. _box.appendChild(_iframe);
  8197. _box.appendChild(_jie);
  8198. _formdiv = new U.UF.UI.form(
  8199. "协同文档-" + _username,
  8200. _box, {
  8201. "id": "doc" + cid + stage + task + tool + _userid,
  8202. "style": {
  8203. "width": "90%",
  8204. "height": "90%",
  8205. "overflow": 'hidden'
  8206. },
  8207. "onresize": function () { }
  8208. }, {
  8209. closecallback: function () { }
  8210. }, {
  8211. "style": {
  8212. "height": "36px"
  8213. }
  8214. }).form; //创建窗体
  8215. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8216. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8217. })
  8218. _taskbar = {
  8219. "id": str + _formdiv.id,
  8220. "style": {
  8221. "backgroundImage": "url(/img/icon/doc.png)"
  8222. },
  8223. "name": "协同文档",
  8224. "forms": _formdiv,
  8225. "click": function () {
  8226. U.MD.D.I.openApplication(str, obj, info);
  8227. }
  8228. }
  8229. break;
  8230. case "mindNetwork": //好友打开
  8231. aTool = 7;
  8232. _iframe = $$("iframe", {
  8233. "webkitallowfullscreen": "",
  8234. "mozallowfullscreen": "",
  8235. "allowfullscreen": "",
  8236. "frameborder": "no",
  8237. "border": "0",
  8238. "scrolling ": "no",
  8239. "style": {
  8240. "cssText": "border:0; width:100%; height:100%;"
  8241. },
  8242. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8243. })
  8244. _box.appendChild(_iframe);
  8245. _box.appendChild(_jie);
  8246. _formdiv = new U.UF.UI.form(
  8247. "思维网格-" + _username,
  8248. _box, {
  8249. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8250. "style": {
  8251. "width": "90%",
  8252. "height": "90%",
  8253. "overflow": 'hidden'
  8254. },
  8255. "onresize": function () { }
  8256. }, {
  8257. closecallback: function () { }
  8258. }, {
  8259. "style": {
  8260. "height": "36px"
  8261. }
  8262. }).form; //创建窗体
  8263. _taskbar = {
  8264. "id": str + _formdiv.id,
  8265. "style": {
  8266. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8267. },
  8268. "name": "思维网格",
  8269. "forms": _formdiv,
  8270. "click": function () {
  8271. U.MD.D.I.openApplication(str, obj, info);
  8272. }
  8273. }
  8274. break;
  8275. case "courseDesign":
  8276. _iframe = $$("iframe", {
  8277. "webkitallowfullscreen": "",
  8278. "mozallowfullscreen": "",
  8279. "allowfullscreen": "",
  8280. "frameborder": "no",
  8281. "border": "0",
  8282. "scrolling ": "no",
  8283. "style": {
  8284. "cssText": "border:0; width:100%; height:100%;"
  8285. },
  8286. "src": "/course-design-vue"
  8287. })
  8288. _box.appendChild(_iframe);
  8289. _box.appendChild(_jie);
  8290. _formdiv = new U.UF.UI.form(
  8291. "项目设计-" + _username,
  8292. _box, {
  8293. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8294. "style": {
  8295. "width": "90%",
  8296. "height": "90%",
  8297. "overflow": 'hidden'
  8298. },
  8299. "onresize": function () { }
  8300. }, {
  8301. closecallback: function () { }
  8302. }, {
  8303. "style": {
  8304. "height": "36px"
  8305. }
  8306. }).form; //创建窗体
  8307. _taskbar = {
  8308. "id": str + _formdiv.id,
  8309. "style": {
  8310. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8311. },
  8312. "name": "项目设计",
  8313. "forms": _formdiv,
  8314. "click": function () {
  8315. U.MD.D.I.openApplication(str, obj, info);
  8316. }
  8317. }
  8318. break;
  8319. }
  8320. const script1 = document.createElement("script");
  8321. script1.type = "text/javascript";
  8322. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8323. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8324. const script2 = document.createElement("script");
  8325. script2.type = "text/javascript";
  8326. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8327. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8328. const script3 = document.createElement("script");
  8329. script3.type = "text/javascript";
  8330. script3.charset = "UTF-8";
  8331. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8332. const script4 = document.createElement("script");
  8333. script4.type = "text/javascript";
  8334. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8335. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8336. if (_iframe) {
  8337. if (str == 'doc') {
  8338. _iframe = _formdiv.querySelector('iframe')
  8339. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8340. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8341. _iframe.contentWindow.document.body.appendChild(script1);
  8342. _iframe.contentWindow.document.body.appendChild(script2);
  8343. // _iframe.contentWindow.document.body.appendChild(script3);
  8344. _iframe.contentWindow.document.body.appendChild(script4);
  8345. })
  8346. if (onloadListener) {
  8347. _iframe.contentDocument.location.reload()
  8348. } else {
  8349. _iframe.contentDocument.location.reload()
  8350. }
  8351. } else if (str == 'courseDesign') {
  8352. U.UF.DL.iframeLoad(_iframe, function () {
  8353. // _iframe.contentWindow.U.MD.O.W.load();
  8354. // _iframe.contentWindow.document.body.appendChild(script1);
  8355. _iframe.contentWindow.document.body.appendChild(script2);
  8356. _iframe.contentWindow.document.body.appendChild(script4);
  8357. })
  8358. } else if (str == 'mind') {
  8359. _iframe = _formdiv.querySelector('iframe')
  8360. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8361. //
  8362. _iframe.contentWindow.document.body.appendChild(script1);
  8363. _iframe.contentWindow.document.body.appendChild(script2);
  8364. _iframe.contentWindow.document.body.appendChild(script4);
  8365. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8366. })
  8367. if (onloadListener) {
  8368. _iframe.contentDocument.location.reload()
  8369. } else {
  8370. _iframe.contentDocument.location.reload()
  8371. }
  8372. } else if (str == 'whiteboard') {
  8373. _iframe = _formdiv.querySelector('iframe')
  8374. let onloadListener = _iframe.onload = () => {
  8375. _iframe.contentWindow.document.body.appendChild(script1);
  8376. _iframe.contentWindow.document.body.appendChild(script2);
  8377. _iframe.contentWindow.document.body.appendChild(script4);
  8378. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8379. };
  8380. // if (onloadListener) {
  8381. // try {
  8382. // _iframe.src += "?cocorobo="+new Date().getTime()
  8383. // _iframe.contentWindow.document.location.reload()
  8384. // } catch (error) {
  8385. // }
  8386. // } else {
  8387. // _iframe.contentDocument.location.reload()
  8388. // }
  8389. } else {
  8390. _iframe.onload = () => {
  8391. _iframe.contentWindow.document.body.appendChild(script1);
  8392. _iframe.contentWindow.document.body.appendChild(script2);
  8393. // _iframe.contentWindow.document.body.appendChild(script3);
  8394. _iframe.contentWindow.document.body.appendChild(script4);
  8395. };
  8396. }
  8397. _jie.onclick = async () => {
  8398. let text = ''
  8399. if (aTool == 1) {
  8400. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8401. } else if (aTool == 6) {
  8402. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8403. } else if (aTool == 3) {
  8404. text = await U.MD.D.I.getEditorContent(_iframe);
  8405. }
  8406. _loading.style.display = 'flex'
  8407. console.log(_loading);
  8408. var _ajs = _iframe.contentWindow.document.createElement("script");
  8409. _ajs.type = "text/javascript";
  8410. _ajs.innerHTML =
  8411. // 'console.log(' + _loading + ');\n' +
  8412. 'var _js = document.createElement("script");\n' +
  8413. '_js.type="text/javascript";\n' +
  8414. '_js.charset="UTF-8";\n' +
  8415. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8416. "_js.onload = function(){\n" +
  8417. ' var a = document.getElementsByTagName("img")\n' +
  8418. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8419. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8420. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8421. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8422. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8423. "beforeUpload_shishi(file," +
  8424. "'" +
  8425. _userid +
  8426. "'" +
  8427. ", " +
  8428. "'" +
  8429. _cid +
  8430. "'" +
  8431. ", " +
  8432. "'" +
  8433. _stage +
  8434. "'" +
  8435. ", " +
  8436. "'" +
  8437. _task +
  8438. "'" +
  8439. ", " +
  8440. "'" +
  8441. _tool +
  8442. "'" +
  8443. ", " +
  8444. "'" +
  8445. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8446. "'" +
  8447. ", " +
  8448. "'" +
  8449. aTool +
  8450. "'" +
  8451. ", " +
  8452. "`" +
  8453. text +
  8454. "`" +
  8455. ")\n" +
  8456. " });\n" +
  8457. "}\n" +
  8458. "document.head.appendChild(_js);\n";
  8459. _iframe.contentWindow.document.head.appendChild(_ajs);
  8460. }
  8461. }
  8462. }
  8463. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8464. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8465. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8466. _userid = student.userid, //登录用户id
  8467. _username = student.student //用户名字
  8468. let _iframe;
  8469. let _cid = cid,
  8470. _stage = stage,
  8471. _task = task,
  8472. _tool = tool;
  8473. var _jie = $$("div", {
  8474. "style": {
  8475. "position": "absolute",
  8476. "bottom": "50px",
  8477. "right": "50px",
  8478. "zIndex": "9999",
  8479. "backgroundColor": "#2268bc",
  8480. "color": "#fff",
  8481. "padding": "12px 20px",
  8482. "cursor": "pointer",
  8483. "borderRadius": "4px",
  8484. },
  8485. "innerHTML": "提交作业"
  8486. })
  8487. let aTool = ''
  8488. let _loading = document.createElement('div')
  8489. _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;"
  8490. // _loading.id = "";
  8491. let _lchild = document.createElement('div')
  8492. let _limg = document.createElement('img')
  8493. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8494. _limg.style = "width: 26px;margin-right: 10px;"
  8495. _lchild.appendChild(_limg)
  8496. let _lspan = document.createElement('span')
  8497. _lspan.innerHTML = "上传中..."
  8498. _lchild.appendChild(_lspan)
  8499. _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%);"
  8500. _loading.appendChild(_lchild)
  8501. var _box = $$('div', {
  8502. "style": {
  8503. "position": "relative",
  8504. "width": "100%",
  8505. "height": "100%",
  8506. },
  8507. })
  8508. _box.appendChild(_loading)
  8509. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8510. switch (str) {
  8511. case "whiteboard":
  8512. aTool = 1;
  8513. _iframe = $$("iframe", {
  8514. "frameborder": "no",
  8515. "border": "0",
  8516. "scrolling ": "no",
  8517. "style": {
  8518. "cssText": "border:0;width:100%;height:100%"
  8519. },
  8520. "src": "https://beta.iwb.cocorobo.cn/"
  8521. })
  8522. _box.appendChild(_iframe);
  8523. _box.appendChild(_jie);
  8524. _formdiv = new U.UF.UI.form(
  8525. "电子白板-" + _username,
  8526. _box, {
  8527. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8528. "style": {
  8529. "width": "90%",
  8530. "height": "90%",
  8531. "overflow": 'hidden'
  8532. },
  8533. "onresize": function () { }
  8534. }, {
  8535. closecallback: function () { }
  8536. }, {
  8537. "style": {
  8538. "height": "36px"
  8539. }
  8540. }).form; //创建窗体
  8541. _taskbar = {
  8542. "id": str + _formdiv.id,
  8543. "style": {
  8544. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8545. },
  8546. "name": "电子白板",
  8547. "forms": _formdiv,
  8548. "click": function () {
  8549. U.MD.D.I.openApplication(str, obj, info);
  8550. }
  8551. }
  8552. break;
  8553. case "mind":
  8554. aTool = 3;
  8555. _iframe = $$("iframe", {
  8556. "frameborder": "no",
  8557. "border": "0",
  8558. "scrolling ": "no",
  8559. "style": {
  8560. "cssText": "border:0;width:100%;height:100%"
  8561. },
  8562. "src": "/kityminder-editor/dist/index.html"
  8563. })
  8564. _box.appendChild(_iframe);
  8565. _box.appendChild(_jie);
  8566. _formdiv = new U.UF.UI.form(
  8567. "思维导图-" + _username,
  8568. _box, { //"/jsmind/example/demo.html"
  8569. "id": "mind" + cid + stage + task + tool + _userid,
  8570. "style": {
  8571. "width": "90%",
  8572. "height": "90%",
  8573. "overflow": 'hidden'
  8574. },
  8575. "onresize": function () { }
  8576. }, {
  8577. closecallback: function () { }
  8578. }, {
  8579. "style": {
  8580. "height": "36px"
  8581. }
  8582. }).form; //创建窗体
  8583. _taskbar = {
  8584. "id": str + _formdiv.id,
  8585. "style": {
  8586. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8587. },
  8588. "name": "思维导图",
  8589. "forms": _formdiv,
  8590. "click": function () {
  8591. U.MD.D.I.openApplication(str, obj, info);
  8592. }
  8593. }
  8594. break;
  8595. case "MindMap":
  8596. aTool = 3;
  8597. _iframe = $$("iframe", {
  8598. "frameborder": "no",
  8599. "border": "0",
  8600. "scrolling ": "no",
  8601. "style": {
  8602. "cssText": "border:0;width:100%;height:100%"
  8603. },
  8604. "src": "//cloud.cocorobo.cn/mind/"
  8605. })
  8606. _box.appendChild(_iframe);
  8607. _box.appendChild(_jie);
  8608. _formdiv = new U.UF.UI.form(
  8609. "思维导图-" + _username,
  8610. _box, { //"/jsmind/example/demo.html"
  8611. "id": "mind" + cid + stage + task + tool + _userid,
  8612. "style": {
  8613. "width": "90%",
  8614. "height": "90%",
  8615. "overflow": 'hidden'
  8616. },
  8617. "onresize": function () { }
  8618. }, {
  8619. closecallback: function () { }
  8620. }, {
  8621. "style": {
  8622. "height": "36px"
  8623. }
  8624. }).form; //创建窗体
  8625. _taskbar = {
  8626. "id": str + _formdiv.id,
  8627. "style": {
  8628. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8629. },
  8630. "name": "思维导图",
  8631. "forms": _formdiv,
  8632. "click": function () {
  8633. U.MD.D.I.openApplication(str, obj, info);
  8634. }
  8635. }
  8636. break;
  8637. case "doc":
  8638. aTool = 6;
  8639. _iframe = $$("iframe", {
  8640. "frameborder": "no",
  8641. "border": "0",
  8642. "scrolling ": "no",
  8643. "style": {
  8644. "cssText": "border:0;width:100%;height:100%"
  8645. },
  8646. "src": "/Office/Word/WordEditArea.htm"
  8647. })
  8648. _box.appendChild(_iframe);
  8649. _box.appendChild(_jie);
  8650. _formdiv = new U.UF.UI.form(
  8651. "协同文档-" + _username,
  8652. _box, {
  8653. "id": "doc" + cid + stage + task + tool + _userid,
  8654. "style": {
  8655. "width": "90%",
  8656. "height": "90%",
  8657. "overflow": 'hidden'
  8658. },
  8659. "onresize": function () { }
  8660. }, {
  8661. closecallback: function () { }
  8662. }, {
  8663. "style": {
  8664. "height": "36px"
  8665. }
  8666. }).form; //创建窗体
  8667. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8668. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8669. })
  8670. _taskbar = {
  8671. "id": str + _formdiv.id,
  8672. "style": {
  8673. "backgroundImage": "url(/img/icon/doc.png)"
  8674. },
  8675. "name": "协同文档",
  8676. "forms": _formdiv,
  8677. "click": function () {
  8678. U.MD.D.I.openApplication(str, obj, info);
  8679. }
  8680. }
  8681. break;
  8682. case "mindNetwork": //好友打开
  8683. aTool = 7;
  8684. _iframe = $$("iframe", {
  8685. "webkitallowfullscreen": "",
  8686. "mozallowfullscreen": "",
  8687. "allowfullscreen": "",
  8688. "frameborder": "no",
  8689. "border": "0",
  8690. "scrolling ": "no",
  8691. "style": {
  8692. "cssText": "border:0; width:100%; height:100%;"
  8693. },
  8694. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8695. })
  8696. _box.appendChild(_iframe);
  8697. _box.appendChild(_jie);
  8698. _formdiv = new U.UF.UI.form(
  8699. "思维网格-" + _username,
  8700. _box, {
  8701. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8702. "style": {
  8703. "width": "90%",
  8704. "height": "90%",
  8705. "overflow": 'hidden'
  8706. },
  8707. "onresize": function () { }
  8708. }, {
  8709. closecallback: function () { }
  8710. }, {
  8711. "style": {
  8712. "height": "36px"
  8713. }
  8714. }).form; //创建窗体
  8715. _taskbar = {
  8716. "id": str + _formdiv.id,
  8717. "style": {
  8718. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8719. },
  8720. "name": "思维网格",
  8721. "forms": _formdiv,
  8722. "click": function () {
  8723. U.MD.D.I.openApplication(str, obj, info);
  8724. }
  8725. }
  8726. break;
  8727. case "courseDesign":
  8728. _iframe = $$("iframe", {
  8729. "webkitallowfullscreen": "",
  8730. "mozallowfullscreen": "",
  8731. "allowfullscreen": "",
  8732. "frameborder": "no",
  8733. "border": "0",
  8734. "scrolling ": "no",
  8735. "style": {
  8736. "cssText": "border:0; width:100%; height:100%;"
  8737. },
  8738. "src": "/course-design-vue"
  8739. })
  8740. _box.appendChild(_iframe);
  8741. _box.appendChild(_jie);
  8742. _formdiv = new U.UF.UI.form(
  8743. "项目设计-" + _username,
  8744. _box, {
  8745. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8746. "style": {
  8747. "width": "90%",
  8748. "height": "90%",
  8749. "overflow": 'hidden'
  8750. },
  8751. "onresize": function () { }
  8752. }, {
  8753. closecallback: function () { }
  8754. }, {
  8755. "style": {
  8756. "height": "36px"
  8757. }
  8758. }).form; //创建窗体
  8759. _taskbar = {
  8760. "id": str + _formdiv.id,
  8761. "style": {
  8762. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8763. },
  8764. "name": "项目设计",
  8765. "forms": _formdiv,
  8766. "click": function () {
  8767. U.MD.D.I.openApplication(str, obj, info);
  8768. }
  8769. }
  8770. break;
  8771. }
  8772. const script1 = document.createElement("script");
  8773. script1.type = "text/javascript";
  8774. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8775. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8776. const script2 = document.createElement("script");
  8777. script2.type = "text/javascript";
  8778. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8779. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8780. const script3 = document.createElement("script");
  8781. script3.type = "text/javascript";
  8782. script3.charset = "UTF-8";
  8783. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8784. const script4 = document.createElement("script");
  8785. script4.type = "text/javascript";
  8786. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8787. script4.src = window.origin + "/js/Common/jietu2E.js";
  8788. if (_iframe) {
  8789. if (str == 'doc') {
  8790. _iframe = _formdiv.querySelector('iframe')
  8791. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8792. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8793. _iframe.contentWindow.document.body.appendChild(script1);
  8794. _iframe.contentWindow.document.body.appendChild(script2);
  8795. // _iframe.contentWindow.document.body.appendChild(script3);
  8796. _iframe.contentWindow.document.body.appendChild(script4);
  8797. })
  8798. if (onloadListener) {
  8799. _iframe.contentDocument.location.reload()
  8800. } else {
  8801. _iframe.contentDocument.location.reload()
  8802. }
  8803. } else if (str == 'courseDesign') {
  8804. U.UF.DL.iframeLoad(_iframe, function () {
  8805. // _iframe.contentWindow.U.MD.O.W.load();
  8806. // _iframe.contentWindow.document.body.appendChild(script1);
  8807. _iframe.contentWindow.document.body.appendChild(script2);
  8808. _iframe.contentWindow.document.body.appendChild(script4);
  8809. })
  8810. } else if (str == 'mind') {
  8811. _iframe = _formdiv.querySelector('iframe')
  8812. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8813. //
  8814. _iframe.contentWindow.document.body.appendChild(script1);
  8815. _iframe.contentWindow.document.body.appendChild(script2);
  8816. _iframe.contentWindow.document.body.appendChild(script4);
  8817. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8818. })
  8819. if (onloadListener) {
  8820. _iframe.contentDocument.location.reload()
  8821. } else {
  8822. _iframe.contentDocument.location.reload()
  8823. }
  8824. } else if (str == 'whiteboard') {
  8825. _iframe = _formdiv.querySelector('iframe')
  8826. let onloadListener = _iframe.onload = () => {
  8827. _iframe.contentWindow.document.body.appendChild(script1);
  8828. _iframe.contentWindow.document.body.appendChild(script2);
  8829. _iframe.contentWindow.document.body.appendChild(script4);
  8830. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8831. };
  8832. // if (onloadListener) {
  8833. // try {
  8834. // _iframe.src += "?cocorobo="+new Date().getTime()
  8835. // _iframe.contentWindow.document.location.reload()
  8836. // } catch (error) {
  8837. // }
  8838. // } else {
  8839. // _iframe.contentDocument.location.reload()
  8840. // }
  8841. } else {
  8842. _iframe.onload = () => {
  8843. _iframe.contentWindow.document.body.appendChild(script1);
  8844. _iframe.contentWindow.document.body.appendChild(script2);
  8845. // _iframe.contentWindow.document.body.appendChild(script3);
  8846. _iframe.contentWindow.document.body.appendChild(script4);
  8847. };
  8848. }
  8849. _jie.onclick = async () => {
  8850. let text = ''
  8851. if (aTool == 1) {
  8852. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8853. } else if (aTool == 6) {
  8854. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8855. } else if (aTool == 3) {
  8856. text = await U.MD.D.I.getEditorContent(_iframe);
  8857. }
  8858. _loading.style.display = 'flex'
  8859. console.log(_loading);
  8860. var _ajs = _iframe.contentWindow.document.createElement("script");
  8861. _ajs.type = "text/javascript";
  8862. _ajs.innerHTML =
  8863. // 'console.log(' + _loading + ');\n' +
  8864. 'var _js = document.createElement("script");\n' +
  8865. '_js.type="text/javascript";\n' +
  8866. '_js.charset="UTF-8";\n' +
  8867. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8868. "_js.onload = function(){\n" +
  8869. ' var a = document.getElementsByTagName("img")\n' +
  8870. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8871. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8872. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8873. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8874. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8875. "beforeUpload_shishi(file," +
  8876. "'" +
  8877. _userid +
  8878. "'" +
  8879. ", " +
  8880. "'" +
  8881. _cid +
  8882. "'" +
  8883. ", " +
  8884. "'" +
  8885. _stage +
  8886. "'" +
  8887. ", " +
  8888. "'" +
  8889. _task +
  8890. "'" +
  8891. ", " +
  8892. "'" +
  8893. _tool +
  8894. "'" +
  8895. ", " +
  8896. "'" +
  8897. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8898. "'" +
  8899. ", " +
  8900. "'" +
  8901. aTool +
  8902. "'" +
  8903. ", " +
  8904. "`" +
  8905. text +
  8906. "`" +
  8907. ")\n" +
  8908. " });\n" +
  8909. "}\n" +
  8910. "document.head.appendChild(_js);\n";
  8911. _iframe.contentWindow.document.head.appendChild(_ajs);
  8912. }
  8913. }
  8914. }
  8915. U.MD.D.I.getEditorContent = function (iframe) {
  8916. return new Promise((resolve, reject) => {
  8917. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8918. console.log(content);
  8919. resolve(content)
  8920. });
  8921. });
  8922. }
  8923. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8924. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8925. // if (res.value[0].length > 0) {
  8926. // // resolve(res.value[0][0].text);
  8927. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8928. // $(fileInput).val('');
  8929. // });
  8930. // }
  8931. // }, [], { "type": "GET", "withCredentials": true });
  8932. var xmlhttp;
  8933. var Mac, Sn, DeviceId
  8934. if (window.XMLHttpRequest) {
  8935. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8936. xmlhttp = new XMLHttpRequest();
  8937. } else {
  8938. // IE6, IE5 浏览器执行代码
  8939. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8940. }
  8941. xmlhttp.onreadystatechange = function () {
  8942. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8943. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8944. // resolve(res.value[0][0].text);
  8945. if (type == '2') {
  8946. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8947. } else if (type == '3') {
  8948. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8949. }
  8950. } else {
  8951. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8952. }
  8953. }
  8954. }
  8955. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8956. xmlhttp.send();
  8957. }
  8958. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8959. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8960. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8961. _userinfo = US.userInfo, //登录用户信息
  8962. _userid = US.userInfo.userid //登录用户id
  8963. let _iframe;
  8964. let _cid = cid,
  8965. _stage = stage,
  8966. _task = task,
  8967. _tool = tool;
  8968. var _jie = $$("div", {
  8969. "style": {
  8970. "position": "absolute",
  8971. "bottom": "50px",
  8972. "right": "50px",
  8973. "zIndex": "9999",
  8974. "backgroundColor": "#2268bc",
  8975. "color": "#fff",
  8976. "padding": "12px 20px",
  8977. "cursor": "pointer",
  8978. "borderRadius": "4px",
  8979. },
  8980. "innerHTML": "确认并提交"
  8981. })
  8982. let aTool = ''
  8983. let _loading = document.createElement('div')
  8984. _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;"
  8985. // _loading.id = "";
  8986. let _lchild = document.createElement('div')
  8987. let _limg = document.createElement('img')
  8988. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8989. _limg.style = "width: 26px;margin-right: 10px;"
  8990. _lchild.appendChild(_limg)
  8991. let _lspan = document.createElement('span')
  8992. _lspan.innerHTML = "上传中..."
  8993. _lchild.appendChild(_lspan)
  8994. _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%);"
  8995. _loading.appendChild(_lchild)
  8996. var _box = $$('div', {
  8997. "style": {
  8998. "position": "relative",
  8999. "width": "100%",
  9000. "height": "100%",
  9001. },
  9002. })
  9003. _box.appendChild(_loading)
  9004. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9005. switch (str) {
  9006. case "whiteboard":
  9007. aTool = 1;
  9008. _iframe = $$("iframe", {
  9009. "frameborder": "no",
  9010. "border": "0",
  9011. "scrolling ": "no",
  9012. "style": {
  9013. "cssText": "border:0;width:100%;height:100%"
  9014. },
  9015. "src": "https://beta.iwb.cocorobo.cn/"
  9016. })
  9017. _box.appendChild(_iframe);
  9018. _box.appendChild(_jie);
  9019. _formdiv = new U.UF.UI.form(
  9020. "电子白板",
  9021. _box, {
  9022. "id": "whiteboards" + cid + stage + task + tool,
  9023. "style": {
  9024. "width": "90%",
  9025. "height": "90%",
  9026. "overflow": 'hidden'
  9027. },
  9028. "onresize": function () { }
  9029. }, {
  9030. closecallback: function () { }
  9031. }, {
  9032. "style": {
  9033. "height": "36px"
  9034. }
  9035. }).form; //创建窗体
  9036. _taskbar = {
  9037. "id": str + _formdiv.id,
  9038. "style": {
  9039. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9040. },
  9041. "name": "电子白板",
  9042. "forms": _formdiv,
  9043. "click": function () {
  9044. U.MD.D.I.openApplication(str, obj, info);
  9045. }
  9046. }
  9047. break;
  9048. case "mind":
  9049. aTool = 3;
  9050. _iframe = $$("iframe", {
  9051. "frameborder": "no",
  9052. "border": "0",
  9053. "scrolling ": "no",
  9054. "style": {
  9055. "cssText": "border:0;width:100%;height:100%"
  9056. },
  9057. "src": "/kityminder-editor/dist/index.html"
  9058. });
  9059. _box.appendChild(_iframe);
  9060. _box.appendChild(_jie);
  9061. _formdiv = new U.UF.UI.form(
  9062. "思维导图",
  9063. _box, { //"/jsmind/example/demo.html"
  9064. "id": "minds" + cid + stage + task + tool,
  9065. "style": {
  9066. "width": "90%",
  9067. "height": "90%",
  9068. "overflow": 'hidden'
  9069. },
  9070. "onresize": function () { }
  9071. }, {
  9072. closecallback: function () { }
  9073. }, {
  9074. "style": {
  9075. "height": "36px"
  9076. }
  9077. }).form; //创建窗体
  9078. _taskbar = {
  9079. "id": str + _formdiv.id,
  9080. "style": {
  9081. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9082. },
  9083. "name": "思维导图",
  9084. "forms": _formdiv,
  9085. "click": function () {
  9086. U.MD.D.I.openApplication(str, obj, info);
  9087. }
  9088. }
  9089. break;
  9090. case "doc":
  9091. aTool = 6;
  9092. _iframe = $$("iframe", {
  9093. "frameborder": "no",
  9094. "border": "0",
  9095. "scrolling ": "no",
  9096. "style": {
  9097. "cssText": "border:0;width:100%;height:100%"
  9098. },
  9099. "src": "/Office/Word/WordEditArea.htm"
  9100. })
  9101. _box.appendChild(_iframe);
  9102. _box.appendChild(_jie);
  9103. _formdiv = new U.UF.UI.form(
  9104. "协同文档",
  9105. _box, {
  9106. "id": "docs" + cid + stage + task + tool,
  9107. "style": {
  9108. "width": "90%",
  9109. "height": "90%",
  9110. "overflow": 'hidden'
  9111. },
  9112. "onresize": function () { }
  9113. }, {
  9114. closecallback: function () { }
  9115. }, {
  9116. "style": {
  9117. "height": "36px"
  9118. }
  9119. }).form; //创建窗体
  9120. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9121. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9122. })
  9123. _taskbar = {
  9124. "id": str + _formdiv.id,
  9125. "style": {
  9126. "backgroundImage": "url(/img/icon/doc.png)"
  9127. },
  9128. "name": "协同文档",
  9129. "forms": _formdiv,
  9130. "click": function () {
  9131. U.MD.D.I.openApplication(str, obj, info);
  9132. }
  9133. }
  9134. break;
  9135. }
  9136. const script1 = document.createElement("script");
  9137. script1.type = "text/javascript";
  9138. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9139. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9140. const script2 = document.createElement("script");
  9141. script2.type = "text/javascript";
  9142. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9143. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9144. const script3 = document.createElement("script");
  9145. script3.type = "text/javascript";
  9146. script3.charset = "UTF-8";
  9147. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9148. const script4 = document.createElement("script");
  9149. script4.type = "text/javascript";
  9150. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9151. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9152. if (_iframe) {
  9153. if (str == 'doc') {
  9154. _iframe = _formdiv.querySelector('iframe')
  9155. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9156. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9157. _iframe.contentWindow.document.body.appendChild(script1);
  9158. _iframe.contentWindow.document.body.appendChild(script2);
  9159. // _iframe.contentWindow.document.body.appendChild(script3);
  9160. _iframe.contentWindow.document.body.appendChild(script4);
  9161. })
  9162. if (onloadListener) {
  9163. _iframe.contentDocument.location.reload()
  9164. } else {
  9165. _iframe.contentDocument.location.reload()
  9166. }
  9167. } else if (str == 'mind') {
  9168. _iframe = _formdiv.querySelector('iframe')
  9169. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9170. _iframe.contentWindow.document.body.appendChild(script1);
  9171. _iframe.contentWindow.document.body.appendChild(script2);
  9172. _iframe.contentWindow.document.body.appendChild(script4);
  9173. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9174. })
  9175. if (onloadListener) {
  9176. _iframe.contentDocument.location.reload()
  9177. } else {
  9178. _iframe.contentDocument.location.reload()
  9179. }
  9180. } else {
  9181. _iframe.onload = () => {
  9182. _iframe.contentWindow.document.body.appendChild(script1);
  9183. _iframe.contentWindow.document.body.appendChild(script2);
  9184. // _iframe.contentWindow.document.body.appendChild(script3);
  9185. _iframe.contentWindow.document.body.appendChild(script4);
  9186. };
  9187. }
  9188. _jie.onclick = async () => {
  9189. let text = ''
  9190. if (aTool == 6) {
  9191. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9192. } else if (aTool == 3) {
  9193. text = await U.MD.D.I.getEditorContent(_iframe);
  9194. }
  9195. _loading.style.display = 'flex'
  9196. console.log(_loading);
  9197. var _ajs = _iframe.contentWindow.document.createElement("script");
  9198. _ajs.type = "text/javascript";
  9199. _ajs.innerHTML =
  9200. // 'console.log(' + _loading + ');\n' +
  9201. 'var _js = document.createElement("script");\n' +
  9202. '_js.type="text/javascript";\n' +
  9203. '_js.charset="UTF-8";\n' +
  9204. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9205. "_js.onload = function(){\n" +
  9206. ' var a = document.getElementsByTagName("img")\n' +
  9207. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9208. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9209. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9210. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9211. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9212. "beforeUpload_shishi(file," +
  9213. "'" +
  9214. _userid +
  9215. "'" +
  9216. ", " +
  9217. "'" +
  9218. _cid +
  9219. "'" +
  9220. ", " +
  9221. "'" +
  9222. _stage +
  9223. "'" +
  9224. ", " +
  9225. "'" +
  9226. _task +
  9227. "'" +
  9228. ", " +
  9229. "'" +
  9230. _tool +
  9231. "'" +
  9232. ", " +
  9233. "'" +
  9234. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9235. "'" +
  9236. ", " +
  9237. "'" +
  9238. aTool +
  9239. "'" +
  9240. ", " +
  9241. "`" +
  9242. text +
  9243. "`" +
  9244. ")\n" +
  9245. " });\n" +
  9246. "}\n" +
  9247. "document.head.appendChild(_js);\n";
  9248. _iframe.contentWindow.document.head.appendChild(_ajs);
  9249. }
  9250. }
  9251. //U.MD.D.I.openClick(str);
  9252. //如果有任务栏信息
  9253. // if (_taskbar) {
  9254. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9255. // }
  9256. }
  9257. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9258. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9259. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9260. _userinfo = US.userInfo, //登录用户信息
  9261. _userid = US.userInfo.userid //登录用户id
  9262. let _iframe;
  9263. let _cid = cid,
  9264. _stage = stage,
  9265. _task = task,
  9266. _tool = tool;
  9267. var _jie = $$("div", {
  9268. "style": {
  9269. "position": "absolute",
  9270. "bottom": "50px",
  9271. "right": "50px",
  9272. "zIndex": "9999",
  9273. "backgroundColor": "#2268bc",
  9274. "color": "#fff",
  9275. "padding": "12px 20px",
  9276. "cursor": "pointer",
  9277. "borderRadius": "4px",
  9278. },
  9279. "innerHTML": "确认并提交"
  9280. })
  9281. let aTool = ''
  9282. let _loading = document.createElement('div')
  9283. _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;"
  9284. // _loading.id = "";
  9285. let _lchild = document.createElement('div')
  9286. let _limg = document.createElement('img')
  9287. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9288. _limg.style = "width: 26px;margin-right: 10px;"
  9289. _lchild.appendChild(_limg)
  9290. let _lspan = document.createElement('span')
  9291. _lspan.innerHTML = "上传中..."
  9292. _lchild.appendChild(_lspan)
  9293. _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%);"
  9294. _loading.appendChild(_lchild)
  9295. var _box = $$('div', {
  9296. "style": {
  9297. "position": "relative",
  9298. "width": "100%",
  9299. "height": "100%",
  9300. },
  9301. })
  9302. _box.appendChild(_loading)
  9303. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9304. switch (str) {
  9305. case "whiteboard":
  9306. aTool = 1;
  9307. _iframe = $$("iframe", {
  9308. "frameborder": "no",
  9309. "border": "0",
  9310. "scrolling ": "no",
  9311. "style": {
  9312. "cssText": "border:0;width:100%;height:100%"
  9313. },
  9314. "src": "https://beta.iwb.cocorobo.cn/"
  9315. })
  9316. _box.appendChild(_iframe);
  9317. _box.appendChild(_jie);
  9318. _formdiv = new U.UF.UI.form(
  9319. "电子白板",
  9320. _box, {
  9321. "id": "whiteboards" + cid + stage + task + tool,
  9322. "style": {
  9323. "width": "90%",
  9324. "height": "90%",
  9325. "overflow": 'hidden'
  9326. },
  9327. "onresize": function () { }
  9328. }, {
  9329. closecallback: function () { }
  9330. }, {
  9331. "style": {
  9332. "height": "36px"
  9333. }
  9334. }).form; //创建窗体
  9335. _taskbar = {
  9336. "id": str + _formdiv.id,
  9337. "style": {
  9338. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9339. },
  9340. "name": "电子白板",
  9341. "forms": _formdiv,
  9342. "click": function () {
  9343. U.MD.D.I.openApplication(str, obj, info);
  9344. }
  9345. }
  9346. break;
  9347. case "mind":
  9348. aTool = 3;
  9349. _iframe = $$("iframe", {
  9350. "frameborder": "no",
  9351. "border": "0",
  9352. "scrolling ": "no",
  9353. "style": {
  9354. "cssText": "border:0;width:100%;height:100%"
  9355. },
  9356. "src": "/kityminder-editor/dist/index.html"
  9357. });
  9358. _box.appendChild(_iframe);
  9359. _box.appendChild(_jie);
  9360. _formdiv = new U.UF.UI.form(
  9361. "思维导图",
  9362. _box, { //"/jsmind/example/demo.html"
  9363. "id": "minds" + cid + stage + task + tool,
  9364. "style": {
  9365. "width": "90%",
  9366. "height": "90%",
  9367. "overflow": 'hidden'
  9368. },
  9369. "onresize": function () { }
  9370. }, {
  9371. closecallback: function () { }
  9372. }, {
  9373. "style": {
  9374. "height": "36px"
  9375. }
  9376. }).form; //创建窗体
  9377. _taskbar = {
  9378. "id": str + _formdiv.id,
  9379. "style": {
  9380. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9381. },
  9382. "name": "思维导图",
  9383. "forms": _formdiv,
  9384. "click": function () {
  9385. U.MD.D.I.openApplication(str, obj, info);
  9386. }
  9387. }
  9388. break;
  9389. case "doc":
  9390. aTool = 6;
  9391. _iframe = $$("iframe", {
  9392. "frameborder": "no",
  9393. "border": "0",
  9394. "scrolling ": "no",
  9395. "style": {
  9396. "cssText": "border:0;width:100%;height:100%"
  9397. },
  9398. "src": "/Office/Word/WordEditArea.htm"
  9399. })
  9400. _box.appendChild(_iframe);
  9401. _box.appendChild(_jie);
  9402. _formdiv = new U.UF.UI.form(
  9403. "协同文档",
  9404. _box, {
  9405. "id": "docs" + cid + stage + task + tool,
  9406. "style": {
  9407. "width": "90%",
  9408. "height": "90%",
  9409. "overflow": 'hidden'
  9410. },
  9411. "onresize": function () { }
  9412. }, {
  9413. closecallback: function () { }
  9414. }, {
  9415. "style": {
  9416. "height": "36px"
  9417. }
  9418. }).form; //创建窗体
  9419. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9420. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9421. })
  9422. _taskbar = {
  9423. "id": str + _formdiv.id,
  9424. "style": {
  9425. "backgroundImage": "url(/img/icon/doc.png)"
  9426. },
  9427. "name": "协同文档",
  9428. "forms": _formdiv,
  9429. "click": function () {
  9430. U.MD.D.I.openApplication(str, obj, info);
  9431. }
  9432. }
  9433. break;
  9434. }
  9435. const script1 = document.createElement("script");
  9436. script1.type = "text/javascript";
  9437. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9438. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9439. const script2 = document.createElement("script");
  9440. script2.type = "text/javascript";
  9441. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9442. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9443. const script3 = document.createElement("script");
  9444. script3.type = "text/javascript";
  9445. script3.charset = "UTF-8";
  9446. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9447. const script4 = document.createElement("script");
  9448. script4.type = "text/javascript";
  9449. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9450. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9451. if (_iframe) {
  9452. if (str == 'doc') {
  9453. _iframe = _formdiv.querySelector('iframe')
  9454. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9455. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9456. _iframe.contentWindow.document.body.appendChild(script1);
  9457. _iframe.contentWindow.document.body.appendChild(script2);
  9458. // _iframe.contentWindow.document.body.appendChild(script3);
  9459. _iframe.contentWindow.document.body.appendChild(script4);
  9460. })
  9461. if (onloadListener) {
  9462. _iframe.contentDocument.location.reload()
  9463. } else {
  9464. _iframe.contentDocument.location.reload()
  9465. }
  9466. } else if (str == 'mind') {
  9467. _iframe = _formdiv.querySelector('iframe')
  9468. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9469. _iframe.contentWindow.document.body.appendChild(script1);
  9470. _iframe.contentWindow.document.body.appendChild(script2);
  9471. _iframe.contentWindow.document.body.appendChild(script4);
  9472. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9473. })
  9474. if (onloadListener) {
  9475. _iframe.contentDocument.location.reload()
  9476. } else {
  9477. _iframe.contentDocument.location.reload()
  9478. }
  9479. } else {
  9480. _iframe.onload = () => {
  9481. _iframe.contentWindow.document.body.appendChild(script1);
  9482. _iframe.contentWindow.document.body.appendChild(script2);
  9483. // _iframe.contentWindow.document.body.appendChild(script3);
  9484. _iframe.contentWindow.document.body.appendChild(script4);
  9485. };
  9486. }
  9487. _jie.onclick = async () => {
  9488. let text = ''
  9489. if (aTool == 6) {
  9490. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9491. } else if (aTool == 3) {
  9492. text = await U.MD.D.I.getEditorContent(_iframe);
  9493. }
  9494. _loading.style.display = 'flex'
  9495. console.log(_loading);
  9496. var _ajs = _iframe.contentWindow.document.createElement("script");
  9497. _ajs.type = "text/javascript";
  9498. _ajs.innerHTML =
  9499. // 'console.log(' + _loading + ');\n' +
  9500. 'var _js = document.createElement("script");\n' +
  9501. '_js.type="text/javascript";\n' +
  9502. '_js.charset="UTF-8";\n' +
  9503. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9504. "_js.onload = function(){\n" +
  9505. ' var a = document.getElementsByTagName("img")\n' +
  9506. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9507. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9508. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9509. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9510. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9511. "beforeUpload_shishi(file," +
  9512. "'" +
  9513. _userid +
  9514. "'" +
  9515. ", " +
  9516. "'" +
  9517. _cid +
  9518. "'" +
  9519. ", " +
  9520. "'" +
  9521. _stage +
  9522. "'" +
  9523. ", " +
  9524. "'" +
  9525. _task +
  9526. "'" +
  9527. ", " +
  9528. "'" +
  9529. _tool +
  9530. "'" +
  9531. ", " +
  9532. "'" +
  9533. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9534. "'" +
  9535. ", " +
  9536. "'" +
  9537. aTool +
  9538. "'" +
  9539. ", " +
  9540. "`" +
  9541. text +
  9542. "`" +
  9543. ")\n" +
  9544. " });\n" +
  9545. "}\n" +
  9546. "document.head.appendChild(_js);\n";
  9547. _iframe.contentWindow.document.head.appendChild(_ajs);
  9548. }
  9549. }
  9550. //U.MD.D.I.openClick(str);
  9551. //如果有任务栏信息
  9552. // if (_taskbar) {
  9553. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9554. // }
  9555. }
  9556. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9557. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9558. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9559. _userinfo = US.userInfo, //登录用户信息
  9560. _userid = US.userInfo.userid //登录用户id
  9561. let _iframe;
  9562. let _cid = cid,
  9563. _stage = stage,
  9564. _task = task,
  9565. _tool = tool;
  9566. var _jie = $$("div", {
  9567. "style": {
  9568. "position": "absolute",
  9569. "bottom": "50px",
  9570. "right": "50px",
  9571. "zIndex": "9999",
  9572. "backgroundColor": "#2268bc",
  9573. "color": "#fff",
  9574. "padding": "12px 20px",
  9575. "cursor": "pointer",
  9576. "borderRadius": "4px",
  9577. },
  9578. "innerHTML": "上传模板"
  9579. })
  9580. let aTool = ''
  9581. let _loading = document.createElement('div')
  9582. _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;"
  9583. // _loading.id = "";
  9584. let _lchild = document.createElement('div')
  9585. let _limg = document.createElement('img')
  9586. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9587. _limg.style = "width: 26px;margin-right: 10px;"
  9588. _lchild.appendChild(_limg)
  9589. let _lspan = document.createElement('span')
  9590. _lspan.innerHTML = "上传中..."
  9591. _lchild.appendChild(_lspan)
  9592. _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%);"
  9593. _loading.appendChild(_lchild)
  9594. var _box = $$('div', {
  9595. "style": {
  9596. "position": "relative",
  9597. "width": "100%",
  9598. "height": "100%",
  9599. },
  9600. })
  9601. _box.appendChild(_loading)
  9602. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9603. switch (str) {
  9604. case "whiteboard":
  9605. aTool = 1;
  9606. _iframe = $$("iframe", {
  9607. "frameborder": "no",
  9608. "border": "0",
  9609. "scrolling ": "no",
  9610. "style": {
  9611. "cssText": "border:0;width:100%;height:100%"
  9612. },
  9613. "src": "https://beta.iwb.cocorobo.cn/"
  9614. })
  9615. _box.appendChild(_iframe);
  9616. _box.appendChild(_jie);
  9617. _formdiv = new U.UF.UI.form(
  9618. "电子白板",
  9619. _box, {
  9620. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9621. "style": {
  9622. "width": "90%",
  9623. "height": "90%",
  9624. "overflow": 'hidden'
  9625. },
  9626. "onresize": function () { }
  9627. }, {
  9628. closecallback: function () { }
  9629. }, {
  9630. "style": {
  9631. "height": "36px"
  9632. }
  9633. }).form; //创建窗体
  9634. _taskbar = {
  9635. "id": str + _formdiv.id,
  9636. "style": {
  9637. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9638. },
  9639. "name": "电子白板",
  9640. "forms": _formdiv,
  9641. "click": function () {
  9642. U.MD.D.I.openApplication(str, obj, info);
  9643. }
  9644. }
  9645. break;
  9646. case "mind":
  9647. aTool = 3;
  9648. _iframe = $$("iframe", {
  9649. "frameborder": "no",
  9650. "border": "0",
  9651. "scrolling ": "no",
  9652. "style": {
  9653. "cssText": "border:0;width:100%;height:100%"
  9654. },
  9655. "src": "/kityminder-editor/dist/index.html"
  9656. });
  9657. _box.appendChild(_iframe);
  9658. _box.appendChild(_jie);
  9659. _formdiv = new U.UF.UI.form(
  9660. "思维导图",
  9661. _box, { //"/jsmind/example/demo.html"
  9662. "id": "minds_Yu" + cid + stage + task + tool,
  9663. "style": {
  9664. "width": "90%",
  9665. "height": "90%",
  9666. "overflow": 'hidden'
  9667. },
  9668. "onresize": function () { }
  9669. }, {
  9670. closecallback: function () { }
  9671. }, {
  9672. "style": {
  9673. "height": "36px"
  9674. }
  9675. }).form; //创建窗体
  9676. _taskbar = {
  9677. "id": str + _formdiv.id,
  9678. "style": {
  9679. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9680. },
  9681. "name": "思维导图",
  9682. "forms": _formdiv,
  9683. "click": function () {
  9684. U.MD.D.I.openApplication(str, obj, info);
  9685. }
  9686. }
  9687. break;
  9688. case "doc":
  9689. aTool = 6;
  9690. _iframe = $$("iframe", {
  9691. "frameborder": "no",
  9692. "border": "0",
  9693. "scrolling ": "no",
  9694. "style": {
  9695. "cssText": "border:0;width:100%;height:100%"
  9696. },
  9697. "src": "/Office/Word/WordEditArea.htm"
  9698. })
  9699. _box.appendChild(_iframe);
  9700. _box.appendChild(_jie);
  9701. _formdiv = new U.UF.UI.form(
  9702. "协同文档",
  9703. _box, {
  9704. "id": "docs_Yu" + cid + stage + task + tool,
  9705. "style": {
  9706. "width": "90%",
  9707. "height": "90%",
  9708. "overflow": 'hidden'
  9709. },
  9710. "onresize": function () { }
  9711. }, {
  9712. closecallback: function () { }
  9713. }, {
  9714. "style": {
  9715. "height": "36px"
  9716. }
  9717. }).form; //创建窗体
  9718. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9719. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9720. })
  9721. _taskbar = {
  9722. "id": str + _formdiv.id,
  9723. "style": {
  9724. "backgroundImage": "url(/img/icon/doc.png)"
  9725. },
  9726. "name": "协同文档",
  9727. "forms": _formdiv,
  9728. "click": function () {
  9729. U.MD.D.I.openApplication(str, obj, info);
  9730. }
  9731. }
  9732. break;
  9733. case "CocoPi":
  9734. aTool = 57;
  9735. _iframe = $$("iframe", {
  9736. "allowpaymentrequest": "allowpaymentrequest",
  9737. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9738. "webkitallowfullscreen": "",
  9739. "mozallowfullscreen": "",
  9740. "frameborder": "no",
  9741. "border": "0",
  9742. "scrolling ": "no",
  9743. "style": {
  9744. "cssText": "border:0;width:100%;height:100%"
  9745. },
  9746. "src": "https://pi.cocorobo.cn/"
  9747. })
  9748. _box.appendChild(_iframe);
  9749. _box.appendChild(_jie);
  9750. _formdiv = new U.UF.UI.form(
  9751. "CocoPi",
  9752. _box, {
  9753. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9754. "style": {
  9755. "width": "90%",
  9756. "height": "90%",
  9757. "overflow": 'hidden'
  9758. },
  9759. "onresize": function () { }
  9760. }, {
  9761. closecallback: function () { }
  9762. }, {
  9763. "style": {
  9764. "height": "36px"
  9765. }
  9766. }).form; //创建窗体
  9767. _taskbar = {
  9768. "id": str + _formdiv.id,
  9769. "style": {
  9770. "backgroundImage": "url(/img/icon/cocopi.png)"
  9771. },
  9772. "name": "CocoPi",
  9773. "forms": _formdiv,
  9774. "click": function () {
  9775. U.MD.D.I.openApplication(str, obj, info);
  9776. }
  9777. }
  9778. break;
  9779. }
  9780. if (_iframe) {
  9781. if (str == 'doc') {
  9782. _iframe = _formdiv.querySelector('iframe')
  9783. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9784. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9785. })
  9786. if (onloadListener) {
  9787. _iframe.contentDocument.location.reload()
  9788. } else {
  9789. _iframe.contentDocument.location.reload()
  9790. }
  9791. } else if (str == 'mind') {
  9792. _iframe = _formdiv.querySelector('iframe')
  9793. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9794. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9795. })
  9796. if (onloadListener) {
  9797. _iframe.contentDocument.location.reload()
  9798. } else {
  9799. _iframe.contentDocument.location.reload()
  9800. }
  9801. } else if (str == 'whiteboard') {
  9802. _iframe = _formdiv.querySelector('iframe')
  9803. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9804. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9805. })
  9806. // if (onloadListener) {
  9807. // try {
  9808. // _iframe.src += "?cocorobo="+new Date().getTime()
  9809. // _iframe.contentWindow.document.location.reload()
  9810. // } catch (error) {
  9811. // }
  9812. // } else {
  9813. // _iframe.contentDocument.location.reload()
  9814. // }
  9815. } else if (str == 'CocoPi') {
  9816. _iframe = _formdiv.querySelector('iframe')
  9817. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9818. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9819. })
  9820. if (onloadListener) {
  9821. _iframe.contentDocument.location.reload()
  9822. } else {
  9823. _iframe.contentDocument.location.reload()
  9824. }
  9825. } else {
  9826. _iframe.onload = () => { };
  9827. }
  9828. _jie.onclick = async () => {
  9829. let text = ''
  9830. let type = '2'
  9831. if (aTool == 1) {
  9832. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9833. type = '3'
  9834. } else if (aTool == 6) {
  9835. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9836. type = '1'
  9837. } else if (aTool == 3) {
  9838. text = await U.MD.D.I.getEditorContent(_iframe);
  9839. type = '2'
  9840. } else if (aTool == 57) {
  9841. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9842. type = '4'
  9843. }
  9844. _loading.style.display = 'flex'
  9845. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9846. }
  9847. }
  9848. //U.MD.D.I.openClick(str);
  9849. //如果有任务栏信息
  9850. // if (_taskbar) {
  9851. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9852. // }
  9853. }
  9854. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9855. var xmlhttp;
  9856. var Mac, Sn, DeviceId
  9857. if (window.XMLHttpRequest) {
  9858. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9859. xmlhttp = new XMLHttpRequest();
  9860. } else {
  9861. // IE6, IE5 浏览器执行代码
  9862. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9863. }
  9864. xmlhttp.onreadystatechange = function () {
  9865. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9866. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9867. // resolve(res.value[0][0].text);
  9868. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9869. }
  9870. }
  9871. }
  9872. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9873. xmlhttp.send();
  9874. }
  9875. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9876. var xmlhttp;
  9877. var Mac, Sn, DeviceId
  9878. if (window.XMLHttpRequest) {
  9879. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9880. xmlhttp = new XMLHttpRequest();
  9881. } else {
  9882. // IE6, IE5 浏览器执行代码
  9883. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9884. }
  9885. xmlhttp.onreadystatechange = function () {
  9886. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9887. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9888. // resolve(res.value[0][0].text);
  9889. if (type == '2') {
  9890. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9891. } else if (type == '3') {
  9892. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9893. } else if (type == '4') {
  9894. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9895. }
  9896. } else {
  9897. if (type == '2') {
  9898. iframe.contentWindow.editor.minder.importData('json', '')
  9899. } else if (type == '3') {
  9900. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9901. } else if (type == '4') {
  9902. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9903. }
  9904. }
  9905. }
  9906. }
  9907. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9908. xmlhttp.send();
  9909. }
  9910. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9911. var xmlhttp;
  9912. var Mac, Sn, DeviceId
  9913. if (window.XMLHttpRequest) {
  9914. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9915. xmlhttp = new XMLHttpRequest();
  9916. } else {
  9917. // IE6, IE5 浏览器执行代码
  9918. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9919. }
  9920. xmlhttp.onreadystatechange = function () {
  9921. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9922. if (xmlhttp.response) {
  9923. // resolve(res.value[0][0].text);
  9924. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9925. // $(fileInput).val('');
  9926. // });
  9927. span.innerHTML = '上传成功'
  9928. setTimeout(() => {
  9929. loading.style.display = 'none'
  9930. }, 1000);
  9931. }
  9932. }
  9933. }
  9934. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9935. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9936. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9937. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9938. // 设置请求头,表示请求体的编码格式
  9939. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9940. // 设置请求体,使用url-encoded格式的数据
  9941. }
  9942. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9943. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9944. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9945. _userinfo = US.userInfo, //登录用户信息
  9946. _userid = US.userInfo.userid //登录用户id
  9947. let _iframe;
  9948. let _cid = cid,
  9949. _stage = stage,
  9950. _task = task,
  9951. _tool = tool;
  9952. var _jie = $$("div", {
  9953. "style": {
  9954. "position": "absolute",
  9955. "bottom": "50px",
  9956. "right": "50px",
  9957. "zIndex": "9999",
  9958. "backgroundColor": "#2268bc",
  9959. "color": "#fff",
  9960. "padding": "12px 20px",
  9961. "cursor": "pointer",
  9962. "borderRadius": "4px",
  9963. },
  9964. "innerHTML": "提交作业"
  9965. })
  9966. let aTool = ''
  9967. let _loading = document.createElement('div')
  9968. _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;"
  9969. // _loading.id = "";
  9970. let _lchild = document.createElement('div')
  9971. let _limg = document.createElement('img')
  9972. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9973. _limg.style = "width: 26px;margin-right: 10px;"
  9974. _lchild.appendChild(_limg)
  9975. let _lspan = document.createElement('span')
  9976. _lspan.innerHTML = "上传中..."
  9977. _lchild.appendChild(_lspan)
  9978. _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%);"
  9979. _loading.appendChild(_lchild)
  9980. var _box = $$('div', {
  9981. "style": {
  9982. "position": "relative",
  9983. "width": "100%",
  9984. "height": "100%",
  9985. },
  9986. })
  9987. _box.appendChild(_loading)
  9988. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9989. switch (str) {
  9990. case "CocoPi":
  9991. aTool = 57;
  9992. _iframe = $$("iframe", {
  9993. "allowpaymentrequest": "allowpaymentrequest",
  9994. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9995. "webkitallowfullscreen": "",
  9996. "mozallowfullscreen": "",
  9997. "frameborder": "no",
  9998. "border": "0",
  9999. "scrolling ": "no",
  10000. "style": {
  10001. "cssText": "border:0;width:100%;height:100%"
  10002. },
  10003. "src": "https://pi.cocorobo.cn/"
  10004. })
  10005. _box.appendChild(_iframe);
  10006. _box.appendChild(_jie);
  10007. _formdiv = new U.UF.UI.form(
  10008. "CocoPi",
  10009. _box, {
  10010. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10011. "style": {
  10012. "width": "90%",
  10013. "height": "90%",
  10014. "overflow": 'hidden'
  10015. },
  10016. "onresize": function () { }
  10017. }, {
  10018. closecallback: function () { }
  10019. }, {
  10020. "style": {
  10021. "height": "36px"
  10022. }
  10023. }).form; //创建窗体
  10024. _taskbar = {
  10025. "id": str + _formdiv.id,
  10026. "style": {
  10027. "backgroundImage": "url(/img/icon/cocopi.png)"
  10028. },
  10029. "name": "CocoPi",
  10030. "forms": _formdiv,
  10031. "click": function () {
  10032. U.MD.D.I.openApplication(str, obj, info);
  10033. }
  10034. }
  10035. break;
  10036. }
  10037. if (_iframe) {
  10038. if (str == 'CocoPi') {
  10039. _iframe = _formdiv.querySelector('iframe')
  10040. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10041. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10042. })
  10043. if (onloadListener) {
  10044. _iframe.contentDocument.location.reload()
  10045. } else {
  10046. _iframe.contentDocument.location.reload()
  10047. }
  10048. }
  10049. _jie.onclick = async () => {
  10050. let text = ''
  10051. if (aTool == 57) {
  10052. text = _iframe.contentWindow.getLoadXmlStr()
  10053. }
  10054. _loading.style.display = 'flex'
  10055. console.log(_loading);
  10056. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10057. _loading.style.display = 'none'
  10058. let _div = document.createElement('div')
  10059. _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;"
  10060. let _inner = document.createElement('div')
  10061. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10062. _inner.innerHTML = "上传成功"
  10063. _div.appendChild(_inner)
  10064. _iframe.contentWindow.window.document.body.appendChild(_div)
  10065. _div.onclick = () => {
  10066. _iframe.contentWindow.window.document.body.removeChild(_div)
  10067. }
  10068. setTimeout(() => {
  10069. _iframe.contentWindow.window.document.body.removeChild(_div)
  10070. }, 1000);
  10071. }, [], { "type": "POST", "withCredentials": true });
  10072. }
  10073. }
  10074. }
  10075. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10076. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10077. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10078. _userid = student.userid, //登录用户id
  10079. _username = student.student //用户名字
  10080. let _iframe;
  10081. let _cid = cid,
  10082. _stage = stage,
  10083. _task = task,
  10084. _tool = tool;
  10085. var _jie = $$("div", {
  10086. "style": {
  10087. "position": "absolute",
  10088. "bottom": "50px",
  10089. "right": "50px",
  10090. "zIndex": "9999",
  10091. "backgroundColor": "#2268bc",
  10092. "color": "#fff",
  10093. "padding": "12px 20px",
  10094. "cursor": "pointer",
  10095. "borderRadius": "4px",
  10096. },
  10097. "innerHTML": "提交作业"
  10098. })
  10099. let aTool = ''
  10100. let _loading = document.createElement('div')
  10101. _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;"
  10102. // _loading.id = "";
  10103. let _lchild = document.createElement('div')
  10104. let _limg = document.createElement('img')
  10105. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10106. _limg.style = "width: 26px;margin-right: 10px;"
  10107. _lchild.appendChild(_limg)
  10108. let _lspan = document.createElement('span')
  10109. _lspan.innerHTML = "上传中..."
  10110. _lchild.appendChild(_lspan)
  10111. _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%);"
  10112. _loading.appendChild(_lchild)
  10113. var _box = $$('div', {
  10114. "style": {
  10115. "position": "relative",
  10116. "width": "100%",
  10117. "height": "100%",
  10118. },
  10119. })
  10120. _box.appendChild(_loading)
  10121. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10122. switch (str) {
  10123. case "CocoPi":
  10124. aTool = 57;
  10125. _iframe = $$("iframe", {
  10126. "allowpaymentrequest": "allowpaymentrequest",
  10127. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10128. "webkitallowfullscreen": "",
  10129. "mozallowfullscreen": "",
  10130. "frameborder": "no",
  10131. "border": "0",
  10132. "scrolling ": "no",
  10133. "style": {
  10134. "cssText": "border:0;width:100%;height:100%"
  10135. },
  10136. "src": "https://pi.cocorobo.cn/"
  10137. })
  10138. _box.appendChild(_iframe);
  10139. _box.appendChild(_jie);
  10140. _formdiv = new U.UF.UI.form(
  10141. "CocoPi-" + _username,
  10142. _box, {
  10143. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10144. "style": {
  10145. "width": "90%",
  10146. "height": "90%",
  10147. "overflow": 'hidden'
  10148. },
  10149. "onresize": function () { }
  10150. }, {
  10151. closecallback: function () { }
  10152. }, {
  10153. "style": {
  10154. "height": "36px"
  10155. }
  10156. }).form; //创建窗体
  10157. _taskbar = {
  10158. "id": str + _formdiv.id,
  10159. "style": {
  10160. "backgroundImage": "url(/img/icon/cocopi.png)"
  10161. },
  10162. "name": "CocoPi",
  10163. "forms": _formdiv,
  10164. "click": function () {
  10165. U.MD.D.I.openApplication(str, obj, info);
  10166. }
  10167. }
  10168. break;
  10169. }
  10170. if (_iframe) {
  10171. if (str == 'CocoPi') {
  10172. _iframe = _formdiv.querySelector('iframe')
  10173. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10174. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10175. })
  10176. if (onloadListener) {
  10177. _iframe.contentDocument.location.reload()
  10178. } else {
  10179. _iframe.contentDocument.location.reload()
  10180. }
  10181. }
  10182. _jie.onclick = async () => {
  10183. let text = ''
  10184. if (aTool == 57) {
  10185. text = _iframe.contentWindow.getLoadXmlStr()
  10186. }
  10187. _loading.style.display = 'flex'
  10188. console.log(_loading);
  10189. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10190. _loading.style.display = 'none'
  10191. let _div = document.createElement('div')
  10192. _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;"
  10193. let _inner = document.createElement('div')
  10194. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10195. _inner.innerHTML = "上传成功"
  10196. _div.appendChild(_inner)
  10197. _iframe.contentWindow.window.document.body.appendChild(_div)
  10198. _div.onclick = () => {
  10199. _iframe.contentWindow.window.document.body.removeChild(_div)
  10200. }
  10201. setTimeout(() => {
  10202. _iframe.contentWindow.window.document.body.removeChild(_div)
  10203. }, 1000);
  10204. }, [], { "type": "POST", "withCredentials": true });
  10205. }
  10206. }
  10207. }
  10208. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10209. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10210. if (res.value[0].length > 0) {
  10211. if (atool == 57) {
  10212. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10213. }
  10214. } else {
  10215. if (atool == 57) {
  10216. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10217. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10218. }
  10219. }
  10220. }, [], { "type": "POST", "withCredentials": true });
  10221. }