DeskTop.js 718 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. ];
  717. //hk
  718. U.MD.D.I.tycyteacherDeskIcon = [
  719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  726. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  729. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  730. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  731. ];
  732. //hk
  733. U.MD.D.I.tycyStudentDeskIcon = [
  734. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  740. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  741. ];
  742. //hk
  743. U.MD.D.I.ckcpsteacherDeskIcon = [
  744. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  745. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  746. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  747. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  748. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  749. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  750. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  751. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  752. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  753. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  754. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  755. ];
  756. //hk
  757. U.MD.D.I.ckcpsStudentDeskIcon = [
  758. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  760. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  761. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  762. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  764. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  765. ];
  766. //hk
  767. U.MD.D.I.hkaceteacherDeskIcon = [
  768. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  769. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  771. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  772. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  775. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  776. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  777. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  778. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  779. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  780. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  781. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  782. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  784. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  785. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  786. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  787. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  788. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  789. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  790. ];
  791. //hk
  792. U.MD.D.I.hkaceStudentDeskIcon = [
  793. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  794. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  795. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  796. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  797. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  799. ];
  800. //香海正覺蓮社佛教正覺中學
  801. U.MD.D.I.hkZJLSteacherDeskIcon = [
  802. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  803. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  804. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  805. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  808. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  809. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  810. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  811. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  812. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  813. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  815. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //香海正覺蓮社佛教正覺中學
  820. U.MD.D.I.hkZJLSStudentDeskIcon = [
  821. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  825. ];
  826. //云海
  827. U.MD.D.I.yunhaiTeacherDeskIcon = [
  828. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  829. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  830. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  831. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  832. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  833. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  834. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  835. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  836. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  837. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  838. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  839. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  840. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  841. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  842. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  843. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //福田
  848. U.MD.D.I.heyuanTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  857. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  860. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  861. ];
  862. //福田
  863. U.MD.D.I.heyuanAdminDeskIcon = [
  864. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  865. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  866. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  867. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  868. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  869. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  870. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  871. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  872. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  873. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  874. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  875. ];
  876. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  877. U.MD.D.I.szherTeacherDeskIcon = [
  878. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  879. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  880. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  881. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  882. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  883. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  884. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  885. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  886. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  888. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  889. ];
  890. //dsei
  891. U.MD.D.I.dseiTeacherDeskIcon = [
  892. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  893. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  894. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  895. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  896. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  897. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  898. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  899. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  900. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  901. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  902. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  903. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  904. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  905. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  906. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  907. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  908. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  909. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  910. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  911. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  912. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  913. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  914. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  915. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  916. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  917. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  918. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  919. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  920. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  921. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  922. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  923. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  924. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  925. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  926. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  927. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  928. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  929. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  930. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  932. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  933. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  934. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  935. ];
  936. //dsei
  937. U.MD.D.I.dseiAdminDeskIcon = [
  938. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  939. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  940. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  941. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  942. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  943. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  944. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  945. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  946. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  947. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  948. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  949. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  950. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  951. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  952. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  953. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  954. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  955. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  956. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  957. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  958. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  959. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  960. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  961. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  962. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  963. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  964. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  965. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  966. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  967. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  968. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  969. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  970. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  971. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  972. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  973. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  974. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  975. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  979. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  980. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  981. ];
  982. //dsei
  983. U.MD.D.I.dseiStudentDeskIcon = [
  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": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  988. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. ];
  991. //未来教育基地
  992. U.MD.D.I.szjkyTeacherDeskIcon = [
  993. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  994. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  995. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  996. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  997. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  998. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  999. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1000. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1001. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1002. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1003. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1004. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1005. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1006. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1007. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1009. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1010. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1011. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1012. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1013. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1014. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1015. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1016. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1017. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1018. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1019. ];
  1020. //未来教育基地
  1021. U.MD.D.I.szjkyAdminDeskIcon = [
  1022. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1023. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1027. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1028. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1029. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1030. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1031. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1032. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1033. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1034. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1035. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1036. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1041. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1042. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1043. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1044. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1045. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1046. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1047. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1048. ];
  1049. //未来教育基地
  1050. U.MD.D.I.szjkyStudentDeskIcon = [
  1051. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourse", "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": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1056. ];
  1057. //成华教育局
  1058. U.MD.D.I.chjyjTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1062. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1063. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1064. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1069. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1070. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1072. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1073. ];
  1074. //成华教育局chjyj
  1075. U.MD.D.I.chjyjAdminDeskIcon = [
  1076. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1077. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1079. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1080. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1081. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1082. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1083. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1084. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1087. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //成华教育局chjyj
  1093. U.MD.D.I.chjyjStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //tpc
  1100. U.MD.D.I.tpcStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //tpc
  1107. U.MD.D.I.tpcTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1111. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1112. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1113. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1114. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1115. ];
  1116. //tpc
  1117. U.MD.D.I.tpcAdminDeskIcon = [
  1118. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1119. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1120. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1121. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1122. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1124. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1125. ];
  1126. //THU-IOE
  1127. U.MD.D.I.thuioeTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1135. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1136. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1137. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1138. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1139. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1140. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1141. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1142. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1143. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1144. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1145. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1146. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1147. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1148. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1149. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1150. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1151. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1152. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1153. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1154. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1155. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1156. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1157. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1158. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1159. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1160. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1161. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1162. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1163. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1166. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1167. ];
  1168. //THU-IOE
  1169. U.MD.D.I.thuioeStudentDeskIcon = [
  1170. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1174. ];
  1175. //jccssyl
  1176. U.MD.D.I.jccssylTeacherDeskIcon = [
  1177. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1178. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1179. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1180. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1181. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1182. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1183. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1184. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1185. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1186. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1187. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1188. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1189. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1190. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1191. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1193. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //jccssyl
  1198. U.MD.D.I.jccssylStudentDeskIcon = [
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1201. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //cale
  1205. U.MD.D.I.caleTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1209. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1210. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1215. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1216. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1217. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1218. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1219. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1220. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1225. ];
  1226. //cale
  1227. U.MD.D.I.caleStudentDeskIcon = [
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1232. ];
  1233. //lqwmsgzs
  1234. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1235. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1236. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1237. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1238. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1239. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1240. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1241. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1242. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1243. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1244. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1245. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1246. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1247. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1248. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1249. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1250. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1251. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1252. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1253. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1254. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1255. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1256. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1257. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1258. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1259. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1260. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1261. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1262. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1263. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1264. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1265. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1266. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1267. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1268. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1269. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. ];
  1273. //lqwmsgzs
  1274. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1275. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1276. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1279. ];
  1280. //盐田区幼儿园
  1281. U.MD.D.I.ytyTeacherDeskIcon = [
  1282. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1283. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1284. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1285. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1286. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1287. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1288. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1289. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1290. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1291. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1292. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1293. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1294. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1295. ];
  1296. //盐田区幼儿园
  1297. U.MD.D.I.ytyStudentDeskIcon = [
  1298. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. ];
  1302. //scnuai
  1303. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1304. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1305. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1306. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1307. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1308. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1309. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1310. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1311. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1312. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1313. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1314. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1315. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1316. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1317. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1319. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1320. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1321. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1322. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1323. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1324. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1325. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1326. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1327. ];
  1328. //scnuai
  1329. U.MD.D.I.scnuaiAdminDeskIcon = [
  1330. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1331. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.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": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1337. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1338. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1339. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1340. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1341. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1342. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1345. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1346. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1347. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1348. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1349. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1350. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1351. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1352. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1353. ];
  1354. //scnuai
  1355. U.MD.D.I.scnuaiStudentDeskIcon = [
  1356. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1360. ];
  1361. //cocobiz
  1362. U.MD.D.I.cocobizteacherDeskIcon = [
  1363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1365. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1366. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1367. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1368. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1369. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1370. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1371. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1372. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1373. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1374. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1376. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1377. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1379. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1381. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1382. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1383. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1384. ];
  1385. //cocobiz
  1386. U.MD.D.I.cocobizStudentDeskIcon = [
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1389. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1390. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1391. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1393. ];
  1394. //xxzjky
  1395. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1400. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1402. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1403. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1407. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1408. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1409. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1410. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1414. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1415. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1416. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1417. ];
  1418. //xxzjky
  1419. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1420. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1421. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1423. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1424. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //nsfx
  1428. U.MD.D.I.nsfxTeacherDeskIcon = [
  1429. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1437. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1438. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1439. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1440. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1441. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1444. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1445. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1446. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1447. ];
  1448. //nsfx
  1449. U.MD.D.I.nsfxStudentDeskIcon = [
  1450. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1451. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1452. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1454. ];
  1455. //stia
  1456. U.MD.D.I.stiaTeacherDeskIcon = [
  1457. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1458. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1459. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1460. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1461. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1462. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1463. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1464. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1465. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1466. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1467. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1468. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1469. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1470. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1472. ];
  1473. //stia
  1474. U.MD.D.I.stiaStudentDeskIcon = [
  1475. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1476. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1477. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1478. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1479. ];
  1480. //szdjg
  1481. U.MD.D.I.szdjgTeacherDeskIcon = [
  1482. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1483. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1484. ];
  1485. //szdjg
  1486. U.MD.D.I.szdjgStudentDeskIcon = [
  1487. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1490. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. ];
  1492. //010607
  1493. U.MD.D.I.x010607TeacherDeskIcon = [
  1494. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1497. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1498. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1499. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1500. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1501. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1502. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1505. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1506. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1507. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1508. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1509. ];
  1510. //010607
  1511. U.MD.D.I.x010607StudentDeskIcon = [
  1512. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1513. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1514. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. ];
  1517. //010608
  1518. U.MD.D.I.x010608TeacherDeskIcon = [
  1519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1522. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1523. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1524. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1525. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1526. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1528. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1529. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1530. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1531. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1532. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1533. ];
  1534. //010608
  1535. U.MD.D.I.x010608StudentDeskIcon = [
  1536. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1540. ];
  1541. //xhly
  1542. U.MD.D.I.xhlyTeacherDeskIcon = [
  1543. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1544. ];
  1545. //010608
  1546. U.MD.D.I.xhlyStudentDeskIcon = [
  1547. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. ];
  1549. //北师大
  1550. U.MD.D.I.BSDNSteacherDeskIcon = [
  1551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1559. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1560. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1561. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1562. ];
  1563. //北师大
  1564. U.MD.D.I.BSDNSstudentDeskIcon = [
  1565. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1566. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1567. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1569. ];
  1570. //CUHK_EDU
  1571. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1572. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1573. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1575. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1576. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1577. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1578. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1580. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1581. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1582. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1583. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1584. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1585. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1586. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1587. ];
  1588. //CUHK_EDU
  1589. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1590. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1593. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1594. ];
  1595. //010503
  1596. U.MD.D.I.x010503TeacherDeskIcon = [
  1597. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1598. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1599. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1600. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1601. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1602. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1603. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1604. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1605. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1606. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1607. ];
  1608. //010503
  1609. U.MD.D.I.x010503StudentDeskIcon = [
  1610. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1611. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1612. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1614. ];
  1615. //SPROUT Lab
  1616. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1617. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1621. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1622. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1625. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1627. ];
  1628. //SPROUT Lab
  1629. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1633. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1634. ];
  1635. //010204
  1636. U.MD.D.I.x010204TeacherDeskIcon = [
  1637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1639. ];
  1640. //010204
  1641. U.MD.D.I.x010204StudentDeskIcon = [
  1642. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1643. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1644. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1645. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1646. ];
  1647. //trail
  1648. U.MD.D.I.trailTeacherDeskIcon = [
  1649. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1650. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1651. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1652. ];
  1653. //trail
  1654. U.MD.D.I.trailStudentDeskIcon = [
  1655. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1656. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1657. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1658. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. ];
  1660. //trial
  1661. U.MD.D.I.trialTeacherDeskIcon = [
  1662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1664. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1665. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1666. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1667. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1668. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1669. ];
  1670. //trial
  1671. U.MD.D.I.trialStudentDeskIcon = [
  1672. // { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1675. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1676. ];
  1677. //010504
  1678. U.MD.D.I.x010504TeacherDeskIcon = [
  1679. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1680. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1681. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1682. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1683. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1684. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1685. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1690. ];
  1691. //010504
  1692. U.MD.D.I.x010504StudentDeskIcon = [
  1693. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1696. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. ];
  1698. //010505
  1699. U.MD.D.I.x010505TeacherDeskIcon = [
  1700. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1701. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1703. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1704. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1705. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1707. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1708. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1709. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1710. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1711. ];
  1712. //010505
  1713. U.MD.D.I.x010505StudentDeskIcon = [
  1714. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1717. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1718. ];
  1719. //SCNUET
  1720. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1721. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1722. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1725. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1726. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1727. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1728. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1729. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1730. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1731. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1732. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1733. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1734. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1735. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1737. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1738. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1739. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1740. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1741. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1742. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1743. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1744. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1745. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1746. ];
  1747. //SCNUET
  1748. U.MD.D.I.SCNUETAdminDeskIcon = [
  1749. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1750. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1751. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1753. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1754. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1755. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1756. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1757. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1758. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1759. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1760. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1761. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1762. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1763. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1765. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1767. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1768. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1769. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1770. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1771. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1772. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1773. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1774. ];
  1775. //SCNUET
  1776. U.MD.D.I.SCNUETStudentDeskIcon = [
  1777. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1778. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1779. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1780. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1781. ];
  1782. //x020201
  1783. U.MD.D.I.x020201TeacherDeskIcon = [
  1784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1788. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1789. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1790. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1791. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1794. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1795. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1796. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1797. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1798. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1799. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1800. ];
  1801. //x020201
  1802. U.MD.D.I.x020201AdminDeskIcon = [
  1803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1808. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1809. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1810. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1811. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1812. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1813. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1814. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1815. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1816. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1817. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1818. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1819. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1820. ];
  1821. //020201
  1822. U.MD.D.I.x020201StudentDeskIcon = [
  1823. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1824. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1825. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1826. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1827. ];
  1828. //010611
  1829. U.MD.D.I.x010611TeacherDeskIcon = [
  1830. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1831. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1832. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1833. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1834. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1835. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1836. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1837. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1838. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1839. ];
  1840. //010611
  1841. U.MD.D.I.x010611StudentDeskIcon = [
  1842. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1843. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1844. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1846. ];
  1847. //010612
  1848. U.MD.D.I.x010612TeacherDeskIcon = [
  1849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1851. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1852. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1853. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1854. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1855. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1856. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1857. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1858. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1859. ];
  1860. //010612
  1861. U.MD.D.I.x010612StudentDeskIcon = [
  1862. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1863. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1864. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1865. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1866. ];
  1867. //tianyuan
  1868. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1869. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1870. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1872. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1873. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1874. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1875. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1876. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1877. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1878. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1879. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1880. ];
  1881. //010611
  1882. U.MD.D.I.tianyuanStudentDeskIcon = [
  1883. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1884. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1885. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1886. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1887. ];
  1888. //320101
  1889. U.MD.D.I.x320101TeacherDeskIcon = [
  1890. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1891. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1893. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1894. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1895. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1896. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1897. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1898. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1899. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1900. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1901. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1902. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1903. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1904. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1905. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1906. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1907. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1908. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1909. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1910. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1911. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1912. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1913. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1914. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1915. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1916. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1917. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1918. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1919. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1920. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1921. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1922. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1923. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1925. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1926. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1927. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1928. ];
  1929. //320101
  1930. U.MD.D.I.x320101StudentDeskIcon = [
  1931. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1932. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1933. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1935. ];
  1936. //szsy
  1937. U.MD.D.I.szsyTeacherDeskIcon = [
  1938. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1939. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1940. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1941. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1942. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1943. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1944. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1945. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1946. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1947. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1948. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1949. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1950. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1951. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1952. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1953. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1954. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1955. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1956. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1957. ];
  1958. //szsy
  1959. U.MD.D.I.szsyStudentDeskIcon = [
  1960. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1961. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1962. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1964. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1965. ];
  1966. //010404
  1967. U.MD.D.I.x010404TeacherDeskIcon = [
  1968. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1969. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1970. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1971. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1972. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1973. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1974. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1975. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1976. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1977. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1978. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1979. ];
  1980. //010404
  1981. U.MD.D.I.x010404StudentDeskIcon = [
  1982. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1983. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1985. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1986. ];
  1987. //#region 桌面初始化a
  1988. /**
  1989. * 初始化桌面的起始函数
  1990. *
  1991. */
  1992. U.MD.D.I.init = function () {
  1993. if ($("#U_MD_D_K")[0]) {
  1994. //初始化桌面图标
  1995. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1996. // var clickUrl = ':12588/requestIp.php';
  1997. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1998. // U.MD.D.I.Ip = data;
  1999. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2000. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2001. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2002. // })
  2003. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2004. // })
  2005. }
  2006. }
  2007. /**
  2008. * 模式切换
  2009. *
  2010. */
  2011. U.MD.D.I.ModeCheck = function (type) {
  2012. if (US.Config.type == type) {
  2013. return
  2014. }
  2015. US.Config.type = type
  2016. $('.U_PBL_Check .active')[0].className = ''
  2017. if (type == 1) {
  2018. $('.U_PBL_Check div')[0].className = 'active'
  2019. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2020. } else {
  2021. $('.U_PBL_Check div')[1].className = 'active'
  2022. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2023. }
  2024. //初始化桌面图标
  2025. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2026. if (type == 2) {
  2027. U.MD.D.I.openApplication("project")
  2028. }
  2029. }
  2030. /**
  2031. * 隐藏任务栏
  2032. *
  2033. * @param {element} 桌面元素
  2034. */
  2035. U.MD.D.I.hiddenTaskbar = function (el) {
  2036. //任务栏位置变小
  2037. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2038. //桌面的位置变大
  2039. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2040. }
  2041. /**
  2042. * 隐藏任务栏
  2043. *
  2044. * @param {element} 桌面元素
  2045. */
  2046. U.MD.D.I.hiddenTaskbarout = function (el) {
  2047. //任务栏位置变小
  2048. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2049. //任务栏位置变化
  2050. U.selectEl(el).css({ "bottom": "-60px" });
  2051. //桌面的位置变大
  2052. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2053. }
  2054. }
  2055. /**
  2056. * 初始化打印桌面图标
  2057. *
  2058. * @param {element} 桌面元素
  2059. */
  2060. U.MD.D.I.initDesktopIcons = function (el, type) {
  2061. var i, //用于循环
  2062. _content, //桌面图标元素
  2063. _iconcontent, //桌面图标元素
  2064. _frag = $$("frag"), //定义一个碎片元素
  2065. _type = US.userInfo.type,
  2066. _org = US.userInfo.org,
  2067. _oid = US.userInfo.organizeid,
  2068. _role = US.userInfo.role,
  2069. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2070. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2071. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2072. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2073. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2074. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2075. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2076. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2077. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2078. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2079. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2080. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2081. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2082. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2083. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2084. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2085. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2086. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2087. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2088. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2089. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2090. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2091. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2092. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2093. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2094. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2095. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2096. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2097. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2098. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2099. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2100. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2101. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2102. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2103. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2104. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2105. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2106. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2107. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2108. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2109. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2110. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2111. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2112. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2113. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2114. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2115. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2116. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2117. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2118. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2119. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2120. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2121. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2122. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2123. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2124. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2125. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2126. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2127. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2128. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2129. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2130. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2131. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2132. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2133. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2134. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2135. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2136. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2137. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2138. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2139. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2140. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2141. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2142. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2143. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2144. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2145. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2146. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2147. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2148. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2149. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2150. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2151. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2152. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2153. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2154. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2155. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2156. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2157. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2158. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2159. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2160. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2161. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2162. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2163. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2164. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2165. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2166. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2167. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2168. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2169. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2170. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2171. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2172. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2173. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2174. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2175. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2176. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2177. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2178. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2179. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2180. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2181. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2182. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2183. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2184. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2185. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2186. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2187. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2188. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2189. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2190. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2191. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2192. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2193. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2194. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2195. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2196. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2197. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926','65ad80f0-16bb-11f0-a66a-005056924926','9a8076a2-469a-11f0-b60f-005056924926'];
  2198. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636','7cc601a0-fafc-4116-a805-0adbacf7a38d','62c166af-2f22-11f0-b60f-005056924926'];
  2199. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2200. //清楚桌面图标
  2201. el.innerHTML = "";
  2202. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2203. _teacherDesktopIconInfo.push(
  2204. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2205. { "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)" } },
  2206. )
  2207. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2208. }
  2209. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2210. _teacherDesktopIconInfo.push(
  2211. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2212. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2213. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2214. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2215. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2216. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2217. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2218. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2219. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2220. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2221. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2222. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2223. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2224. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2225. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2226. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2227. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2228. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2229. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2230. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2231. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2232. )
  2233. }
  2234. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2235. _teacherDesktopIconInfo.push(
  2236. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2237. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2238. )
  2239. }
  2240. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2241. _nsfxTeacherDeskIconInfo.push(
  2242. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2243. )
  2244. }
  2245. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2246. // _teacherDesktopIconInfo.push(
  2247. // )
  2248. // }
  2249. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2250. _teacherDesktopIconInfo.push(
  2251. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2252. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2253. )
  2254. }
  2255. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2256. _teacherDesktopIconInfo.push(
  2257. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2259. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2260. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2261. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2262. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2263. )
  2264. _studentDesktopIconInfo.push(
  2265. )
  2266. }
  2267. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2268. _teacherDesktopIconInfo.push(
  2269. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2270. )
  2271. _studentDesktopIconInfo.push(
  2272. )
  2273. }
  2274. //010606 组织
  2275. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2276. _teacherDesktopIconInfo.push(
  2277. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2278. )
  2279. _studentDesktopIconInfo.push(
  2280. )
  2281. }
  2282. //麒麟二中 和 民新小学
  2283. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2284. _teacherDesktopIconInfo.push(
  2285. )
  2286. }
  2287. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2288. _teacherDesktopIconInfo.push(
  2289. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2290. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2291. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2292. )
  2293. }
  2294. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2295. _hkTeacherDeskIconInfo.push(
  2296. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2297. )
  2298. }
  2299. //北师大附中(010601)
  2300. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2301. // _teacherDesktopIconInfo.push(
  2302. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2303. // )
  2304. // _studentDesktopIconInfo.push(
  2305. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2306. // )
  2307. // }
  2308. //樂善堂余近卿中學
  2309. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2310. _teacherDesktopIconInfo.push(
  2311. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2312. )
  2313. }
  2314. // Education Artificial Intelligence
  2315. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2316. _teacherDesktopIconInfo.push(
  2317. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2318. )
  2319. }
  2320. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2321. _teacherDesktopIconInfo.push(
  2322. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2323. )
  2324. }
  2325. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2326. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2327. _teacherDesktopIconInfo.push(
  2328. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2329. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2330. )
  2331. }
  2332. //麒麟二中
  2333. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2334. _studentDesktopIconInfo.push(
  2335. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2336. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2337. )
  2338. }
  2339. //万科双语
  2340. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2341. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2342. if (el.Name == '项目管理') {
  2343. el.Name = 'PBL项目'
  2344. }
  2345. return el
  2346. })
  2347. _studentDesktopIconInfo3.push(
  2348. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2349. )
  2350. }
  2351. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2352. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2353. return el.Name != '魔盒识字' && el.Name != '24点'
  2354. })
  2355. }
  2356. 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) {
  2357. _studentDesktopIconInfo.push(
  2358. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2359. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2360. )
  2361. }
  2362. //循环创建桌面图标
  2363. if (type == 1) {
  2364. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2365. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2366. _content = $$("div", {
  2367. className: "U_MD_D_KO",
  2368. "onmousedown": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_studentDesktopIconInfo[i]]),
  2372. "onclick": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_studentDesktopIconInfo[i]])
  2376. }, _frag); //
  2377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2380. }
  2381. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2382. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2383. _content = $$("div", {
  2384. className: "U_MD_D_KO",
  2385. "onmousedown": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2389. "onclick": U.UF.C.closure(function (obj) {
  2390. //防止拖动图标即打开了桌面应用
  2391. U.MD.D.click(this, obj);
  2392. }, [_hkZJLSStudentDeskIconInfo[i]])
  2393. }, _frag); //
  2394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2397. } //
  2398. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2399. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2400. _content = $$("div", {
  2401. className: "U_MD_D_KO",
  2402. "onmousedown": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_ytyStudentDeskIconInfo[i]]),
  2406. "onclick": U.UF.C.closure(function (obj) {
  2407. //防止拖动图标即打开了桌面应用
  2408. U.MD.D.click(this, obj);
  2409. }, [_ytyStudentDeskIconInfo[i]])
  2410. }, _frag); //
  2411. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2412. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2413. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2414. } //
  2415. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2416. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2417. _content = $$("div", {
  2418. className: "U_MD_D_KO",
  2419. "onmousedown": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_jccssylStudentDeskIconInfo[i]]),
  2423. "onclick": U.UF.C.closure(function (obj) {
  2424. //防止拖动图标即打开了桌面应用
  2425. U.MD.D.click(this, obj);
  2426. }, [_jccssylStudentDeskIconInfo[i]])
  2427. }, _frag); //
  2428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2431. }
  2432. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2433. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2434. _content = $$("div", {
  2435. className: "U_MD_D_KO",
  2436. "onmousedown": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_scnuaiStudentDeskIconInfo[i]]),
  2440. "onclick": U.UF.C.closure(function (obj) {
  2441. //防止拖动图标即打开了桌面应用
  2442. U.MD.D.click(this, obj);
  2443. }, [_scnuaiStudentDeskIconInfo[i]])
  2444. }, _frag); //
  2445. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2446. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2447. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2448. }
  2449. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2450. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2451. _content = $$("div", {
  2452. className: "U_MD_D_KO",
  2453. "onmousedown": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_caleStudentDeskIconInfo[i]]),
  2457. "onclick": U.UF.C.closure(function (obj) {
  2458. //防止拖动图标即打开了桌面应用
  2459. U.MD.D.click(this, obj);
  2460. }, [_caleStudentDeskIconInfo[i]])
  2461. }, _frag); //
  2462. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2463. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2464. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2465. }
  2466. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2467. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2468. _content = $$("div", {
  2469. className: "U_MD_D_KO",
  2470. "onmousedown": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_thuioeStudentDeskIconInfo[i]]),
  2474. "onclick": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_thuioeStudentDeskIconInfo[i]])
  2478. }, _frag); //
  2479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2482. }
  2483. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2484. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2485. _content = $$("div", {
  2486. className: "U_MD_D_KO",
  2487. "onmousedown": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_tpcStudentDeskIconInfo[i]]),
  2491. "onclick": U.UF.C.closure(function (obj) {
  2492. //防止拖动图标即打开了桌面应用
  2493. U.MD.D.click(this, obj);
  2494. }, [_tpcStudentDeskIconInfo[i]])
  2495. }, _frag); //
  2496. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2497. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2498. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2499. } //
  2500. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2501. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2502. _content = $$("div", {
  2503. className: "U_MD_D_KO",
  2504. "onmousedown": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_chjyjStudentDeskIconInfo[i]]),
  2508. "onclick": U.UF.C.closure(function (obj) {
  2509. //防止拖动图标即打开了桌面应用
  2510. U.MD.D.click(this, obj);
  2511. }, [_chjyjStudentDeskIconInfo[i]])
  2512. }, _frag); //
  2513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2516. }
  2517. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2518. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2519. _content = $$("div", {
  2520. className: "U_MD_D_KO",
  2521. "onmousedown": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_szjkyStudentDeskIconInfo[i]]),
  2525. "onclick": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_szjkyStudentDeskIconInfo[i]])
  2529. }, _frag); //
  2530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2533. }
  2534. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2535. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2536. _content = $$("div", {
  2537. className: "U_MD_D_KO",
  2538. "onmousedown": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_x020201StudentDeskIconInfo[i]]),
  2542. "onclick": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_x020201StudentDeskIconInfo[i]])
  2546. }, _frag); //
  2547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2550. }
  2551. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2552. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2553. _content = $$("div", {
  2554. className: "U_MD_D_KO",
  2555. "onmousedown": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_SCNUETStudentDeskIconInfo[i]]),
  2559. "onclick": U.UF.C.closure(function (obj) {
  2560. //防止拖动图标即打开了桌面应用
  2561. U.MD.D.click(this, obj);
  2562. }, [_SCNUETStudentDeskIconInfo[i]])
  2563. }, _frag); //
  2564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2567. }
  2568. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2569. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2570. _content = $$("div", {
  2571. className: "U_MD_D_KO",
  2572. "onmousedown": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_dseiStudentDeskIconInfo[i]]),
  2576. "onclick": U.UF.C.closure(function (obj) {
  2577. //防止拖动图标即打开了桌面应用
  2578. U.MD.D.click(this, obj);
  2579. }, [_dseiStudentDeskIconInfo[i]])
  2580. }, _frag); //
  2581. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2582. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2583. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2584. }
  2585. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2586. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2587. _content = $$("div", {
  2588. className: "U_MD_D_KO",
  2589. "onmousedown": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2593. "onclick": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2597. }, _frag); //
  2598. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2599. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2600. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2601. }
  2602. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2603. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2604. _content = $$("div", {
  2605. className: "U_MD_D_KO",
  2606. "onmousedown": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_nsfxStudentDeskIconInfo[i]]),
  2610. "onclick": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_nsfxStudentDeskIconInfo[i]])
  2614. }, _frag); //
  2615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2618. }
  2619. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2620. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2621. _content = $$("div", {
  2622. className: "U_MD_D_KO",
  2623. "onmousedown": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_stiaStudentDeskIconInfo[i]]),
  2627. "onclick": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_stiaStudentDeskIconInfo[i]])
  2631. }, _frag); //
  2632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2635. }
  2636. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2637. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2638. _content = $$("div", {
  2639. className: "U_MD_D_KO",
  2640. "onmousedown": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_szdjgStudentDeskIconInfo[i]]),
  2644. "onclick": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_szdjgStudentDeskIconInfo[i]])
  2648. }, _frag); //
  2649. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2650. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2651. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2652. }
  2653. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2654. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2655. _content = $$("div", {
  2656. className: "U_MD_D_KO",
  2657. "onmousedown": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_x010607StudentDeskIconInfo[i]]),
  2661. "onclick": U.UF.C.closure(function (obj) {
  2662. //防止拖动图标即打开了桌面应用
  2663. U.MD.D.click(this, obj);
  2664. }, [_x010607StudentDeskIconInfo[i]])
  2665. }, _frag); //
  2666. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2667. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2668. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2669. }
  2670. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2671. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2672. _content = $$("div", {
  2673. className: "U_MD_D_KO",
  2674. "onmousedown": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_xhlyStudentDeskIconInfo[i]]),
  2678. "onclick": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_xhlyStudentDeskIconInfo[i]])
  2682. }, _frag); //
  2683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2686. }
  2687. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2688. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2689. _content = $$("div", {
  2690. className: "U_MD_D_KO",
  2691. "onmousedown": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2695. "onclick": U.UF.C.closure(function (obj) {
  2696. //防止拖动图标即打开了桌面应用
  2697. U.MD.D.click(this, obj);
  2698. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2699. }, _frag); //
  2700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2703. }
  2704. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2705. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2706. _content = $$("div", {
  2707. className: "U_MD_D_KO",
  2708. "onmousedown": U.UF.C.closure(function (obj) {
  2709. //防止拖动图标即打开了桌面应用
  2710. U.MD.D.click(this, obj);
  2711. }, [_x010503StudentDeskIconInfo[i]]),
  2712. "onclick": U.UF.C.closure(function (obj) {
  2713. //防止拖动图标即打开了桌面应用
  2714. U.MD.D.click(this, obj);
  2715. }, [_x010503StudentDeskIconInfo[i]])
  2716. }, _frag); //
  2717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2720. }
  2721. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2722. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2723. _content = $$("div", {
  2724. className: "U_MD_D_KO",
  2725. "onmousedown": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_x010504StudentDeskIconInfo[i]]),
  2729. "onclick": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_x010504StudentDeskIconInfo[i]])
  2733. }, _frag); //
  2734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2737. }
  2738. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2739. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2740. _content = $$("div", {
  2741. className: "U_MD_D_KO",
  2742. "onmousedown": U.UF.C.closure(function (obj) {
  2743. //防止拖动图标即打开了桌面应用
  2744. U.MD.D.click(this, obj);
  2745. }, [_x010505StudentDeskIconInfo[i]]),
  2746. "onclick": U.UF.C.closure(function (obj) {
  2747. //防止拖动图标即打开了桌面应用
  2748. U.MD.D.click(this, obj);
  2749. }, [_x010505StudentDeskIconInfo[i]])
  2750. }, _frag); //
  2751. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2752. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2753. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2754. }
  2755. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2756. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2757. _content = $$("div", {
  2758. className: "U_MD_D_KO",
  2759. "onmousedown": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_x010404StudentDeskIconInfo[i]]),
  2763. "onclick": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_x010404StudentDeskIconInfo[i]])
  2767. }, _frag); //
  2768. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2769. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2770. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2771. }
  2772. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2773. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2774. _content = $$("div", {
  2775. className: "U_MD_D_KO",
  2776. "onmousedown": U.UF.C.closure(function (obj) {
  2777. //防止拖动图标即打开了桌面应用
  2778. U.MD.D.click(this, obj);
  2779. }, [_x010204StudentDeskIconInfo[i]]),
  2780. "onclick": U.UF.C.closure(function (obj) {
  2781. //防止拖动图标即打开了桌面应用
  2782. U.MD.D.click(this, obj);
  2783. }, [_x010204StudentDeskIconInfo[i]])
  2784. }, _frag); //
  2785. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2786. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2787. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2788. }
  2789. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2790. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2791. _content = $$("div", {
  2792. className: "U_MD_D_KO",
  2793. "onmousedown": U.UF.C.closure(function (obj) {
  2794. //防止拖动图标即打开了桌面应用
  2795. U.MD.D.click(this, obj);
  2796. }, [_x320101StudentDeskIconInfo[i]]),
  2797. "onclick": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_x320101StudentDeskIconInfo[i]])
  2801. }, _frag); //
  2802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2805. }
  2806. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2807. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2808. _content = $$("div", {
  2809. className: "U_MD_D_KO",
  2810. "onmousedown": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_trailStudentDeskIconInfo[i]]),
  2814. "onclick": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_trailStudentDeskIconInfo[i]])
  2818. }, _frag); //
  2819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2822. }
  2823. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2824. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  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. }, [_trialStudentDeskIconInfo[i]]),
  2831. "onclick": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_trialStudentDeskIconInfo[i]])
  2835. }, _frag); //
  2836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2839. }
  2840. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2841. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2842. _content = $$("div", {
  2843. className: "U_MD_D_KO",
  2844. "onmousedown": U.UF.C.closure(function (obj) {
  2845. //防止拖动图标即打开了桌面应用
  2846. U.MD.D.click(this, obj);
  2847. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2848. "onclick": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2852. }, _frag); //
  2853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2856. }
  2857. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2858. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2859. _content = $$("div", {
  2860. className: "U_MD_D_KO",
  2861. "onmousedown": U.UF.C.closure(function (obj) {
  2862. //防止拖动图标即打开了桌面应用
  2863. U.MD.D.click(this, obj);
  2864. }, [_szsyStudentDeskIconInfo[i]]),
  2865. "onclick": U.UF.C.closure(function (obj) {
  2866. //防止拖动图标即打开了桌面应用
  2867. U.MD.D.click(this, obj);
  2868. }, [_szsyStudentDeskIconInfo[i]])
  2869. }, _frag); //
  2870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2873. }
  2874. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2875. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2876. _content = $$("div", {
  2877. className: "U_MD_D_KO",
  2878. "onmousedown": U.UF.C.closure(function (obj) {
  2879. //防止拖动图标即打开了桌面应用
  2880. U.MD.D.click(this, obj);
  2881. }, [_x010608StudentDeskIconInfo[i]]),
  2882. "onclick": U.UF.C.closure(function (obj) {
  2883. //防止拖动图标即打开了桌面应用
  2884. U.MD.D.click(this, obj);
  2885. }, [_x010608StudentDeskIconInfo[i]])
  2886. }, _frag); //
  2887. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2888. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2889. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2890. }
  2891. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2892. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2893. _content = $$("div", {
  2894. className: "U_MD_D_KO",
  2895. "onmousedown": U.UF.C.closure(function (obj) {
  2896. //防止拖动图标即打开了桌面应用
  2897. U.MD.D.click(this, obj);
  2898. }, [_x010611StudentDeskIconInfo[i]]),
  2899. "onclick": U.UF.C.closure(function (obj) {
  2900. //防止拖动图标即打开了桌面应用
  2901. U.MD.D.click(this, obj);
  2902. }, [_x010611StudentDeskIconInfo[i]])
  2903. }, _frag); //
  2904. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2905. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2906. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2907. }
  2908. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2909. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2910. _content = $$("div", {
  2911. className: "U_MD_D_KO",
  2912. "onmousedown": U.UF.C.closure(function (obj) {
  2913. //防止拖动图标即打开了桌面应用
  2914. U.MD.D.click(this, obj);
  2915. }, [_x010612StudentDeskIconInfo[i]]),
  2916. "onclick": U.UF.C.closure(function (obj) {
  2917. //防止拖动图标即打开了桌面应用
  2918. U.MD.D.click(this, obj);
  2919. }, [_x010612StudentDeskIconInfo[i]])
  2920. }, _frag); //
  2921. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2922. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2923. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2924. }
  2925. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2926. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2927. _content = $$("div", {
  2928. className: "U_MD_D_KO",
  2929. "onmousedown": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_tianyuantudentDeskIconInfo[i]]),
  2933. "onclick": U.UF.C.closure(function (obj) {
  2934. //防止拖动图标即打开了桌面应用
  2935. U.MD.D.click(this, obj);
  2936. }, [_tianyuantudentDeskIconInfo[i]])
  2937. }, _frag); //
  2938. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2939. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2940. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2941. }
  2942. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2943. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2944. _content = $$("div", {
  2945. className: "U_MD_D_KO",
  2946. "onmousedown": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_siesStudentDeskIconInfo[i]]),
  2950. "onclick": U.UF.C.closure(function (obj) {
  2951. //防止拖动图标即打开了桌面应用
  2952. U.MD.D.click(this, obj);
  2953. }, [_siesStudentDeskIconInfo[i]])
  2954. }, _frag); //
  2955. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2956. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2957. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2958. }
  2959. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2960. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2961. _content = $$("div", {
  2962. className: "U_MD_D_KO",
  2963. "onmousedown": U.UF.C.closure(function (obj) {
  2964. //防止拖动图标即打开了桌面应用
  2965. U.MD.D.click(this, obj);
  2966. }, [_guzmsStudentDeskIconInfo[i]]),
  2967. "onclick": U.UF.C.closure(function (obj) {
  2968. //防止拖动图标即打开了桌面应用
  2969. U.MD.D.click(this, obj);
  2970. }, [_guzmsStudentDeskIconInfo[i]])
  2971. }, _frag); //
  2972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2975. }
  2976. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2977. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2978. _content = $$("div", {
  2979. className: "U_MD_D_KO",
  2980. "onmousedown": U.UF.C.closure(function (obj) {
  2981. //防止拖动图标即打开了桌面应用
  2982. U.MD.D.click(this, obj);
  2983. }, [_hkStudentDeskIconInfo[i]]),
  2984. "onclick": U.UF.C.closure(function (obj) {
  2985. //防止拖动图标即打开了桌面应用
  2986. U.MD.D.click(this, obj);
  2987. }, [_hkStudentDeskIconInfo[i]])
  2988. }, _frag); //
  2989. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2990. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2991. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2992. }
  2993. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  2994. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  2995. _content = $$("div", {
  2996. className: "U_MD_D_KO",
  2997. "onmousedown": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_tycyStudentDeskIconInfo[i]]),
  3001. "onclick": U.UF.C.closure(function (obj) {
  3002. //防止拖动图标即打开了桌面应用
  3003. U.MD.D.click(this, obj);
  3004. }, [_tycyStudentDeskIconInfo[i]])
  3005. }, _frag); //
  3006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3009. }
  3010. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3011. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3012. _content = $$("div", {
  3013. className: "U_MD_D_KO",
  3014. "onmousedown": U.UF.C.closure(function (obj) {
  3015. //防止拖动图标即打开了桌面应用
  3016. U.MD.D.click(this, obj);
  3017. }, [_ckcpsStudentDeskIconInfo[i]]),
  3018. "onclick": U.UF.C.closure(function (obj) {
  3019. //防止拖动图标即打开了桌面应用
  3020. U.MD.D.click(this, obj);
  3021. }, [_ckcpsStudentDeskIconInfo[i]])
  3022. }, _frag); //
  3023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3026. }
  3027. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3028. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3029. _content = $$("div", {
  3030. className: "U_MD_D_KO",
  3031. "onmousedown": U.UF.C.closure(function (obj) {
  3032. //防止拖动图标即打开了桌面应用
  3033. U.MD.D.click(this, obj);
  3034. }, [_hkaceStudentDeskIconInfo[i]]),
  3035. "onclick": U.UF.C.closure(function (obj) {
  3036. //防止拖动图标即打开了桌面应用
  3037. U.MD.D.click(this, obj);
  3038. }, [_hkaceStudentDeskIconInfo[i]])
  3039. }, _frag); //
  3040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3043. }
  3044. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3045. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3046. _content = $$("div", {
  3047. className: "U_MD_D_KO",
  3048. "onmousedown": U.UF.C.closure(function (obj) {
  3049. //防止拖动图标即打开了桌面应用
  3050. U.MD.D.click(this, obj);
  3051. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3052. "onclick": U.UF.C.closure(function (obj) {
  3053. //防止拖动图标即打开了桌面应用
  3054. U.MD.D.click(this, obj);
  3055. }, [_BSDNSstudentDesktopIconInfo[i]])
  3056. }, _frag); //
  3057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3060. }
  3061. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3062. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3063. _content = $$("div", {
  3064. className: "U_MD_D_KO",
  3065. "onmousedown": U.UF.C.closure(function (obj) {
  3066. //防止拖动图标即打开了桌面应用
  3067. U.MD.D.click(this, obj);
  3068. }, [_cocobizStudentDeskIconInfo[i]]),
  3069. "onclick": U.UF.C.closure(function (obj) {
  3070. //防止拖动图标即打开了桌面应用
  3071. U.MD.D.click(this, obj);
  3072. }, [_cocobizStudentDeskIconInfo[i]])
  3073. }, _frag); //
  3074. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3075. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3076. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3077. }
  3078. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3079. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3080. _content = $$("div", {
  3081. className: "U_MD_D_KO",
  3082. "onmousedown": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3086. "onclick": U.UF.C.closure(function (obj) {
  3087. //防止拖动图标即打开了桌面应用
  3088. U.MD.D.click(this, obj);
  3089. }, [_xxzjkyStudentDeskIconInfo[i]])
  3090. }, _frag); //
  3091. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3092. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3093. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3094. }
  3095. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3096. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3097. _content = $$("div", {
  3098. className: "U_MD_D_KO",
  3099. "onmousedown": U.UF.C.closure(function (obj) {
  3100. //防止拖动图标即打开了桌面应用
  3101. U.MD.D.click(this, obj);
  3102. }, [_studentDesktopIconInfo[i]]),
  3103. "onclick": U.UF.C.closure(function (obj) {
  3104. //防止拖动图标即打开了桌面应用
  3105. U.MD.D.click(this, obj);
  3106. }, [_studentDesktopIconInfo[i]])
  3107. }, _frag); //
  3108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3111. }
  3112. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3113. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3114. _content = $$("div", {
  3115. className: "U_MD_D_KO",
  3116. "onmousedown": U.UF.C.closure(function (obj) {
  3117. //防止拖动图标即打开了桌面应用
  3118. U.MD.D.click(this, obj);
  3119. }, [_tcStudentDeskIconInfo[i]]),
  3120. "onclick": U.UF.C.closure(function (obj) {
  3121. //防止拖动图标即打开了桌面应用
  3122. U.MD.D.click(this, obj);
  3123. }, [_tcStudentDeskIconInfo[i]])
  3124. }, _frag); //
  3125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3128. }
  3129. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3130. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3131. _content = $$("div", {
  3132. className: "U_MD_D_KO",
  3133. "onmousedown": U.UF.C.closure(function (obj) {
  3134. //防止拖动图标即打开了桌面应用
  3135. U.MD.D.click(this, obj);
  3136. }, [_szscStudentDeskIconInfo[i]]),
  3137. "onclick": U.UF.C.closure(function (obj) {
  3138. //防止拖动图标即打开了桌面应用
  3139. U.MD.D.click(this, obj);
  3140. }, [_szscStudentDeskIconInfo[i]])
  3141. }, _frag); //
  3142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3145. }
  3146. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3147. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3148. _content = $$("div", {
  3149. className: "U_MD_D_KO",
  3150. "onmousedown": U.UF.C.closure(function (obj) {
  3151. //防止拖动图标即打开了桌面应用
  3152. U.MD.D.click(this, obj);
  3153. }, [_studentDesktopIconInfo3[i]]),
  3154. "onclick": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_studentDesktopIconInfo3[i]])
  3158. }, _frag); //
  3159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3162. }
  3163. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3164. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3165. _content = $$("div", {
  3166. className: "U_MD_D_KO",
  3167. "onmousedown": U.UF.C.closure(function (obj) {
  3168. //防止拖动图标即打开了桌面应用
  3169. U.MD.D.click(this, obj);
  3170. }, [_studentDesktopIconInfo2[i]]),
  3171. "onclick": U.UF.C.closure(function (obj) {
  3172. //防止拖动图标即打开了桌面应用
  3173. U.MD.D.click(this, obj);
  3174. }, [_studentDesktopIconInfo2[i]])
  3175. }, _frag); //
  3176. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3179. }
  3180. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3181. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3182. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3183. continue
  3184. }
  3185. _content = $$("div", {
  3186. className: "U_MD_D_KO",
  3187. "onmousedown": U.UF.C.closure(function (obj) {
  3188. //防止拖动图标即打开了桌面应用
  3189. U.MD.D.click(this, obj);
  3190. }, [_wanketeacherDesktopIconInfo[i]]),
  3191. "onclick": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_wanketeacherDesktopIconInfo[i]])
  3195. }, _frag); //
  3196. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3197. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3198. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3199. }
  3200. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3201. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3202. _content = $$("div", {
  3203. className: "U_MD_D_KO",
  3204. "onmousedown": U.UF.C.closure(function (obj) {
  3205. //防止拖动图标即打开了桌面应用
  3206. U.MD.D.click(this, obj);
  3207. }, [_wankeAdminDesktopIconInfo[i]]),
  3208. "onclick": U.UF.C.closure(function (obj) {
  3209. //防止拖动图标即打开了桌面应用
  3210. U.MD.D.click(this, obj);
  3211. }, [_wankeAdminDesktopIconInfo[i]])
  3212. }, _frag); //
  3213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3216. }
  3217. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3218. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3219. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3220. continue
  3221. }
  3222. _content = $$("div", {
  3223. className: "U_MD_D_KO",
  3224. "onmousedown": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3228. "onclick": U.UF.C.closure(function (obj) {
  3229. //防止拖动图标即打开了桌面应用
  3230. U.MD.D.click(this, obj);
  3231. }, [_scnuaiTeacherDeskIconInfo[i]])
  3232. }, _frag); //
  3233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3236. }
  3237. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3238. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3239. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3240. continue
  3241. }
  3242. _content = $$("div", {
  3243. className: "U_MD_D_KO",
  3244. "onmousedown": U.UF.C.closure(function (obj) {
  3245. //防止拖动图标即打开了桌面应用
  3246. U.MD.D.click(this, obj);
  3247. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3248. "onclick": U.UF.C.closure(function (obj) {
  3249. //防止拖动图标即打开了桌面应用
  3250. U.MD.D.click(this, obj);
  3251. }, [_BSDNSteacherDesktopIconInfo[i]])
  3252. }, _frag); //
  3253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3256. }
  3257. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3258. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3259. _content = $$("div", {
  3260. className: "U_MD_D_KO",
  3261. "onmousedown": U.UF.C.closure(function (obj) {
  3262. //防止拖动图标即打开了桌面应用
  3263. U.MD.D.click(this, obj);
  3264. }, [_scnuaiAdminDeskIconInfo[i]]),
  3265. "onclick": U.UF.C.closure(function (obj) {
  3266. //防止拖动图标即打开了桌面应用
  3267. U.MD.D.click(this, obj);
  3268. }, [_scnuaiAdminDeskIconInfo[i]])
  3269. }, _frag); //
  3270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3273. }
  3274. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3275. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3276. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3277. continue
  3278. }
  3279. _content = $$("div", {
  3280. className: "U_MD_D_KO",
  3281. "onmousedown": U.UF.C.closure(function (obj) {
  3282. //防止拖动图标即打开了桌面应用
  3283. U.MD.D.click(this, obj);
  3284. }, [_jccssylTeacherDeskIconInfo[i]]),
  3285. "onclick": U.UF.C.closure(function (obj) {
  3286. //防止拖动图标即打开了桌面应用
  3287. U.MD.D.click(this, obj);
  3288. }, [_jccssylTeacherDeskIconInfo[i]])
  3289. }, _frag); //
  3290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3293. }
  3294. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3295. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3296. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3297. continue
  3298. }
  3299. _content = $$("div", {
  3300. className: "U_MD_D_KO",
  3301. "onmousedown": U.UF.C.closure(function (obj) {
  3302. //防止拖动图标即打开了桌面应用
  3303. U.MD.D.click(this, obj);
  3304. }, [_caleTeacherDeskIconInfo[i]]),
  3305. "onclick": U.UF.C.closure(function (obj) {
  3306. //防止拖动图标即打开了桌面应用
  3307. U.MD.D.click(this, obj);
  3308. }, [_caleTeacherDeskIconInfo[i]])
  3309. }, _frag); //
  3310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3313. }
  3314. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3315. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3316. _content = $$("div", {
  3317. className: "U_MD_D_KO",
  3318. "onmousedown": U.UF.C.closure(function (obj) {
  3319. //防止拖动图标即打开了桌面应用
  3320. U.MD.D.click(this, obj);
  3321. }, [_tpcOrganizerDeskIconInfo[i]]),
  3322. "onclick": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_tpcOrganizerDeskIconInfo[i]])
  3326. }, _frag); //
  3327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3330. }
  3331. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3332. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3333. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3334. continue
  3335. }
  3336. _content = $$("div", {
  3337. className: "U_MD_D_KO",
  3338. "onmousedown": U.UF.C.closure(function (obj) {
  3339. //防止拖动图标即打开了桌面应用
  3340. U.MD.D.click(this, obj);
  3341. }, [_tpcTeacherDeskIconInfo[i]]),
  3342. "onclick": U.UF.C.closure(function (obj) {
  3343. //防止拖动图标即打开了桌面应用
  3344. U.MD.D.click(this, obj);
  3345. }, [_tpcTeacherDeskIconInfo[i]])
  3346. }, _frag); //
  3347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3350. }
  3351. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3352. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3353. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3354. continue
  3355. }
  3356. _content = $$("div", {
  3357. className: "U_MD_D_KO",
  3358. "onmousedown": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_teacherDesktopIconInfo2[i]]),
  3362. "onclick": U.UF.C.closure(function (obj) {
  3363. //防止拖动图标即打开了桌面应用
  3364. U.MD.D.click(this, obj);
  3365. }, [_teacherDesktopIconInfo2[i]])
  3366. }, _frag); //
  3367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3370. }
  3371. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3372. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3373. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3374. continue
  3375. }
  3376. _content = $$("div", {
  3377. className: "U_MD_D_KO",
  3378. "onmousedown": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_thuioeTeacherDeskIconInfo[i]]),
  3382. "onclick": U.UF.C.closure(function (obj) {
  3383. //防止拖动图标即打开了桌面应用
  3384. U.MD.D.click(this, obj);
  3385. }, [_thuioeTeacherDeskIconInfo[i]])
  3386. }, _frag); //
  3387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3390. }
  3391. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3392. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3393. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3394. continue
  3395. }
  3396. _content = $$("div", {
  3397. className: "U_MD_D_KO",
  3398. "onmousedown": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_lotechTeacherDeskIconInfo[i]]),
  3402. "onclick": U.UF.C.closure(function (obj) {
  3403. //防止拖动图标即打开了桌面应用
  3404. U.MD.D.click(this, obj);
  3405. }, [_lotechTeacherDeskIconInfo[i]])
  3406. }, _frag); //
  3407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3410. }//
  3411. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3412. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3413. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3414. continue
  3415. }
  3416. _content = $$("div", {
  3417. className: "U_MD_D_KO",
  3418. "onmousedown": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3422. "onclick": U.UF.C.closure(function (obj) {
  3423. //防止拖动图标即打开了桌面应用
  3424. U.MD.D.click(this, obj);
  3425. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3426. }, _frag); //
  3427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3430. }
  3431. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3432. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3433. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3434. continue
  3435. }
  3436. _content = $$("div", {
  3437. className: "U_MD_D_KO",
  3438. "onmousedown": U.UF.C.closure(function (obj) {
  3439. //防止拖动图标即打开了桌面应用
  3440. U.MD.D.click(this, obj);
  3441. }, [_siesTeacherDeskIconInfo[i]]),
  3442. "onclick": U.UF.C.closure(function (obj) {
  3443. //防止拖动图标即打开了桌面应用
  3444. U.MD.D.click(this, obj);
  3445. }, [_siesTeacherDeskIconInfo[i]])
  3446. }, _frag); //
  3447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3450. }
  3451. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3452. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3453. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3454. continue
  3455. }
  3456. _content = $$("div", {
  3457. className: "U_MD_D_KO",
  3458. "onmousedown": U.UF.C.closure(function (obj) {
  3459. //防止拖动图标即打开了桌面应用
  3460. U.MD.D.click(this, obj);
  3461. }, [_guzmsTeacherDeskIconInfo[i]]),
  3462. "onclick": U.UF.C.closure(function (obj) {
  3463. //防止拖动图标即打开了桌面应用
  3464. U.MD.D.click(this, obj);
  3465. }, [_guzmsTeacherDeskIconInfo[i]])
  3466. }, _frag); //
  3467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3470. }
  3471. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3472. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3473. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3474. continue
  3475. }
  3476. _content = $$("div", {
  3477. className: "U_MD_D_KO",
  3478. "onmousedown": U.UF.C.closure(function (obj) {
  3479. //防止拖动图标即打开了桌面应用
  3480. U.MD.D.click(this, obj);
  3481. }, [_longhuaTeacherDeskIconInfo[i]]),
  3482. "onclick": U.UF.C.closure(function (obj) {
  3483. //防止拖动图标即打开了桌面应用
  3484. U.MD.D.click(this, obj);
  3485. }, [_longhuaTeacherDeskIconInfo[i]])
  3486. }, _frag); //
  3487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3490. }
  3491. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3492. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3493. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3494. continue
  3495. }
  3496. _content = $$("div", {
  3497. className: "U_MD_D_KO",
  3498. "onmousedown": U.UF.C.closure(function (obj) {
  3499. //防止拖动图标即打开了桌面应用
  3500. U.MD.D.click(this, obj);
  3501. }, [_ytyTeacherDeskIconInfo[i]]),
  3502. "onclick": U.UF.C.closure(function (obj) {
  3503. //防止拖动图标即打开了桌面应用
  3504. U.MD.D.click(this, obj);
  3505. }, [_ytyTeacherDeskIconInfo[i]])
  3506. }, _frag); //
  3507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3510. }
  3511. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3512. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3513. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3514. continue
  3515. }
  3516. _content = $$("div", {
  3517. className: "U_MD_D_KO",
  3518. "onmousedown": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3522. "onclick": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_yunhaiTeacherDeskIconInfo[i]])
  3526. }, _frag); //
  3527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3530. } //_hkStudentDeskIconInfo
  3531. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3532. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3533. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3534. continue
  3535. }
  3536. _content = $$("div", {
  3537. className: "U_MD_D_KO",
  3538. "onmousedown": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3542. "onclick": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3546. }, _frag); //
  3547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3550. }
  3551. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3552. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3553. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3554. continue
  3555. }
  3556. _content = $$("div", {
  3557. className: "U_MD_D_KO",
  3558. "onmousedown": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_ricohTeacherDeskIconInfo[i]]),
  3562. "onclick": U.UF.C.closure(function (obj) {
  3563. //防止拖动图标即打开了桌面应用
  3564. U.MD.D.click(this, obj);
  3565. }, [_ricohTeacherDeskIconInfo[i]])
  3566. }, _frag); //
  3567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3570. }
  3571. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3572. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3573. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3574. continue
  3575. }
  3576. _content = $$("div", {
  3577. className: "U_MD_D_KO",
  3578. "onmousedown": U.UF.C.closure(function (obj) {
  3579. //防止拖动图标即打开了桌面应用
  3580. U.MD.D.click(this, obj);
  3581. }, [_hkTeacherDeskIconInfo[i]]),
  3582. "onclick": U.UF.C.closure(function (obj) {
  3583. //防止拖动图标即打开了桌面应用
  3584. U.MD.D.click(this, obj);
  3585. }, [_hkTeacherDeskIconInfo[i]])
  3586. }, _frag); //
  3587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3590. }
  3591. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3592. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3593. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3594. continue
  3595. }
  3596. _content = $$("div", {
  3597. className: "U_MD_D_KO",
  3598. "onmousedown": U.UF.C.closure(function (obj) {
  3599. //防止拖动图标即打开了桌面应用
  3600. U.MD.D.click(this, obj);
  3601. }, [_tycyTeacherDeskIconInfo[i]]),
  3602. "onclick": U.UF.C.closure(function (obj) {
  3603. //防止拖动图标即打开了桌面应用
  3604. U.MD.D.click(this, obj);
  3605. }, [_tycyTeacherDeskIconInfo[i]])
  3606. }, _frag); //
  3607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3610. }
  3611. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3612. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3613. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3614. continue
  3615. }
  3616. _content = $$("div", {
  3617. className: "U_MD_D_KO",
  3618. "onmousedown": U.UF.C.closure(function (obj) {
  3619. //防止拖动图标即打开了桌面应用
  3620. U.MD.D.click(this, obj);
  3621. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3622. "onclick": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_ckcpsTeacherDeskIconInfo[i]])
  3626. }, _frag); //
  3627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3630. }
  3631. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3632. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3633. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3634. continue
  3635. }
  3636. _content = $$("div", {
  3637. className: "U_MD_D_KO",
  3638. "onmousedown": U.UF.C.closure(function (obj) {
  3639. //防止拖动图标即打开了桌面应用
  3640. U.MD.D.click(this, obj);
  3641. }, [_hkaceTeacherDeskIconInfo[i]]),
  3642. "onclick": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_hkaceTeacherDeskIconInfo[i]])
  3646. }, _frag); //
  3647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3650. }
  3651. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3652. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3653. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3654. continue
  3655. }
  3656. _content = $$("div", {
  3657. className: "U_MD_D_KO",
  3658. "onmousedown": U.UF.C.closure(function (obj) {
  3659. //防止拖动图标即打开了桌面应用
  3660. U.MD.D.click(this, obj);
  3661. }, [_cocobizTeacherDeskIconInfo[i]]),
  3662. "onclick": U.UF.C.closure(function (obj) {
  3663. //防止拖动图标即打开了桌面应用
  3664. U.MD.D.click(this, obj);
  3665. }, [_cocobizTeacherDeskIconInfo[i]])
  3666. }, _frag); //
  3667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3670. }
  3671. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3672. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3673. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3674. continue
  3675. }
  3676. _content = $$("div", {
  3677. className: "U_MD_D_KO",
  3678. "onmousedown": U.UF.C.closure(function (obj) {
  3679. //防止拖动图标即打开了桌面应用
  3680. U.MD.D.click(this, obj);
  3681. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3682. "onclick": U.UF.C.closure(function (obj) {
  3683. //防止拖动图标即打开了桌面应用
  3684. U.MD.D.click(this, obj);
  3685. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3686. }, _frag); //
  3687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3690. }
  3691. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3692. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3693. _content = $$("div", {
  3694. className: "U_MD_D_KO",
  3695. "onmousedown": U.UF.C.closure(function (obj) {
  3696. //防止拖动图标即打开了桌面应用
  3697. U.MD.D.click(this, obj);
  3698. }, [_gdjgAdminDeskIconInfo[i]]),
  3699. "onclick": U.UF.C.closure(function (obj) {
  3700. //防止拖动图标即打开了桌面应用
  3701. U.MD.D.click(this, obj);
  3702. }, [_gdjgAdminDeskIconInfo[i]])
  3703. }, _frag); //
  3704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3707. }
  3708. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3709. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3710. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3711. continue
  3712. }
  3713. _content = $$("div", {
  3714. className: "U_MD_D_KO",
  3715. "onmousedown": U.UF.C.closure(function (obj) {
  3716. //防止拖动图标即打开了桌面应用
  3717. U.MD.D.click(this, obj);
  3718. }, [_gdjgTeacherDeskIconInfo[i]]),
  3719. "onclick": U.UF.C.closure(function (obj) {
  3720. //防止拖动图标即打开了桌面应用
  3721. U.MD.D.click(this, obj);
  3722. }, [_gdjgTeacherDeskIconInfo[i]])
  3723. }, _frag); //
  3724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3727. }
  3728. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3729. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3730. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3731. continue
  3732. }
  3733. _content = $$("div", {
  3734. className: "U_MD_D_KO",
  3735. "onmousedown": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_szherTeacherDeskIconInfo[i]]),
  3739. "onclick": U.UF.C.closure(function (obj) {
  3740. //防止拖动图标即打开了桌面应用
  3741. U.MD.D.click(this, obj);
  3742. }, [_szherTeacherDeskIconInfo[i]])
  3743. }, _frag); //
  3744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3747. }
  3748. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3749. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3750. _content = $$("div", {
  3751. className: "U_MD_D_KO",
  3752. "onmousedown": U.UF.C.closure(function (obj) {
  3753. //防止拖动图标即打开了桌面应用
  3754. U.MD.D.click(this, obj);
  3755. }, [_heyuannAdminDeskIconInfo[i]]),
  3756. "onclick": U.UF.C.closure(function (obj) {
  3757. //防止拖动图标即打开了桌面应用
  3758. U.MD.D.click(this, obj);
  3759. }, [_heyuannAdminDeskIconInfo[i]])
  3760. }, _frag); //
  3761. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3762. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3763. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3764. }
  3765. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3766. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3767. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3768. continue
  3769. }
  3770. _content = $$("div", {
  3771. className: "U_MD_D_KO",
  3772. "onmousedown": U.UF.C.closure(function (obj) {
  3773. //防止拖动图标即打开了桌面应用
  3774. U.MD.D.click(this, obj);
  3775. }, [_heyuanTeacherDeskIconInfo[i]]),
  3776. "onclick": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_heyuanTeacherDeskIconInfo[i]])
  3780. }, _frag); //
  3781. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3782. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3783. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3784. } //
  3785. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3786. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3787. _content = $$("div", {
  3788. className: "U_MD_D_KO",
  3789. "onmousedown": U.UF.C.closure(function (obj) {
  3790. //防止拖动图标即打开了桌面应用
  3791. U.MD.D.click(this, obj);
  3792. }, [_dseiAdminDeskIconInfo[i]]),
  3793. "onclick": U.UF.C.closure(function (obj) {
  3794. //防止拖动图标即打开了桌面应用
  3795. U.MD.D.click(this, obj);
  3796. }, [_dseiAdminDeskIconInfo[i]])
  3797. }, _frag); //
  3798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3801. }
  3802. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3803. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3804. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3805. continue
  3806. }
  3807. _content = $$("div", {
  3808. className: "U_MD_D_KO",
  3809. "onmousedown": U.UF.C.closure(function (obj) {
  3810. //防止拖动图标即打开了桌面应用
  3811. U.MD.D.click(this, obj);
  3812. }, [_dseiTeacherDeskIconInfo[i]]),
  3813. "onclick": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_dseiTeacherDeskIconInfo[i]])
  3817. }, _frag); //
  3818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3821. } //
  3822. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3823. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3824. _content = $$("div", {
  3825. className: "U_MD_D_KO",
  3826. "onmousedown": U.UF.C.closure(function (obj) {
  3827. //防止拖动图标即打开了桌面应用
  3828. U.MD.D.click(this, obj);
  3829. }, [_chjyjAdminDeskIconInfo[i]]),
  3830. "onclick": U.UF.C.closure(function (obj) {
  3831. //防止拖动图标即打开了桌面应用
  3832. U.MD.D.click(this, obj);
  3833. }, [_chjyjAdminDeskIconInfo[i]])
  3834. }, _frag); //
  3835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3838. }//
  3839. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3840. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3841. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3842. continue
  3843. }
  3844. _content = $$("div", {
  3845. className: "U_MD_D_KO",
  3846. "onmousedown": U.UF.C.closure(function (obj) {
  3847. //防止拖动图标即打开了桌面应用
  3848. U.MD.D.click(this, obj);
  3849. }, [_chjyjTeacherDeskIconInfo[i]]),
  3850. "onclick": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_chjyjTeacherDeskIconInfo[i]])
  3854. }, _frag); //
  3855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3858. }
  3859. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3860. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3861. _content = $$("div", {
  3862. className: "U_MD_D_KO",
  3863. "onmousedown": U.UF.C.closure(function (obj) {
  3864. //防止拖动图标即打开了桌面应用
  3865. U.MD.D.click(this, obj);
  3866. }, [_szjkyAdminDeskIconInfo[i]]),
  3867. "onclick": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_szjkyAdminDeskIconInfo[i]])
  3871. }, _frag); //
  3872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3875. }//
  3876. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3877. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3878. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3879. continue
  3880. }
  3881. _content = $$("div", {
  3882. className: "U_MD_D_KO",
  3883. "onmousedown": U.UF.C.closure(function (obj) {
  3884. //防止拖动图标即打开了桌面应用
  3885. U.MD.D.click(this, obj);
  3886. }, [_szjkyTeacherDeskIconInfo[i]]),
  3887. "onclick": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_szjkyTeacherDeskIconInfo[i]])
  3891. }, _frag); //
  3892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3895. }
  3896. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3897. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3898. _content = $$("div", {
  3899. className: "U_MD_D_KO",
  3900. "onmousedown": U.UF.C.closure(function (obj) {
  3901. //防止拖动图标即打开了桌面应用
  3902. U.MD.D.click(this, obj);
  3903. }, [_x020201AdminDeskIconInfo[i]]),
  3904. "onclick": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_x020201AdminDeskIconInfo[i]])
  3908. }, _frag); //
  3909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3912. }//
  3913. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3914. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3915. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3916. continue
  3917. }
  3918. _content = $$("div", {
  3919. className: "U_MD_D_KO",
  3920. "onmousedown": U.UF.C.closure(function (obj) {
  3921. //防止拖动图标即打开了桌面应用
  3922. U.MD.D.click(this, obj);
  3923. }, [_x020201TeacherDeskIconInfo[i]]),
  3924. "onclick": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_x020201TeacherDeskIconInfo[i]])
  3928. }, _frag); //
  3929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3932. }
  3933. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3934. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3935. _content = $$("div", {
  3936. className: "U_MD_D_KO",
  3937. "onmousedown": U.UF.C.closure(function (obj) {
  3938. //防止拖动图标即打开了桌面应用
  3939. U.MD.D.click(this, obj);
  3940. }, [_SCNUETAdminDeskIconInfo[i]]),
  3941. "onclick": U.UF.C.closure(function (obj) {
  3942. //防止拖动图标即打开了桌面应用
  3943. U.MD.D.click(this, obj);
  3944. }, [_SCNUETAdminDeskIconInfo[i]])
  3945. }, _frag); //
  3946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3949. }//
  3950. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3951. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3952. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3953. continue
  3954. }
  3955. _content = $$("div", {
  3956. className: "U_MD_D_KO",
  3957. "onmousedown": U.UF.C.closure(function (obj) {
  3958. //防止拖动图标即打开了桌面应用
  3959. U.MD.D.click(this, obj);
  3960. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3961. "onclick": U.UF.C.closure(function (obj) {
  3962. //防止拖动图标即打开了桌面应用
  3963. U.MD.D.click(this, obj);
  3964. }, [_SCNUETTeacherDeskIconInfo[i]])
  3965. }, _frag); //
  3966. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3967. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3968. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3969. }
  3970. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3971. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3972. _content = $$("div", {
  3973. className: "U_MD_D_KO",
  3974. "onmousedown": U.UF.C.closure(function (obj) {
  3975. //防止拖动图标即打开了桌面应用
  3976. U.MD.D.click(this, obj);
  3977. }, [_futianAdminDeskIconInfo[i]]),
  3978. "onclick": U.UF.C.closure(function (obj) {
  3979. //防止拖动图标即打开了桌面应用
  3980. U.MD.D.click(this, obj);
  3981. }, [_futianAdminDeskIconInfo[i]])
  3982. }, _frag); //
  3983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3986. }
  3987. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3988. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3989. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3990. continue
  3991. }
  3992. _content = $$("div", {
  3993. className: "U_MD_D_KO",
  3994. "onmousedown": U.UF.C.closure(function (obj) {
  3995. //防止拖动图标即打开了桌面应用
  3996. U.MD.D.click(this, obj);
  3997. }, [_futianTeacherDeskIconInfo[i]]),
  3998. "onclick": U.UF.C.closure(function (obj) {
  3999. //防止拖动图标即打开了桌面应用
  4000. U.MD.D.click(this, obj);
  4001. }, [_futianTeacherDeskIconInfo[i]])
  4002. }, _frag); //
  4003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4006. }
  4007. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4008. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4009. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4010. continue
  4011. }
  4012. _content = $$("div", {
  4013. className: "U_MD_D_KO",
  4014. "onmousedown": U.UF.C.closure(function (obj) {
  4015. //防止拖动图标即打开了桌面应用
  4016. U.MD.D.click(this, obj);
  4017. }, [_MingdeTeacherDeskIcon[i]]),
  4018. "onclick": U.UF.C.closure(function (obj) {
  4019. //防止拖动图标即打开了桌面应用
  4020. U.MD.D.click(this, obj);
  4021. }, [_MingdeTeacherDeskIcon[i]])
  4022. }, _frag); //
  4023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4026. }
  4027. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4028. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  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. }, [_lhsAdminDesktopIconInfo[i]]),
  4035. "onclick": U.UF.C.closure(function (obj) {
  4036. //防止拖动图标即打开了桌面应用
  4037. U.MD.D.click(this, obj);
  4038. }, [_lhsAdminDesktopIconInfo[i]])
  4039. }, _frag); //
  4040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4043. }
  4044. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4045. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4046. if(_role === 0 && _lhsteacherDesktopIconInfo[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. }, [_lhsteacherDesktopIconInfo[i]]),
  4055. "onclick": U.UF.C.closure(function (obj) {
  4056. //防止拖动图标即打开了桌面应用
  4057. U.MD.D.click(this, obj);
  4058. }, [_lhsteacherDesktopIconInfo[i]])
  4059. }, _frag); //
  4060. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4061. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4062. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4063. }
  4064. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4065. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4066. if(_role === 0 && _zhoujiateacherDesktopIconInfo[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. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4075. "onclick": U.UF.C.closure(function (obj) {
  4076. //防止拖动图标即打开了桌面应用
  4077. U.MD.D.click(this, obj);
  4078. }, [_zhoujiateacherDesktopIconInfo[i]])
  4079. }, _frag); //
  4080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4083. }
  4084. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4085. for (i = 0; i < _hanDeskIcon.length; i++) {
  4086. if(_role === 0 && _hanDeskIcon[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. }, [_hanDeskIcon[i]]),
  4095. "onclick": U.UF.C.closure(function (obj) {
  4096. //防止拖动图标即打开了桌面应用
  4097. U.MD.D.click(this, obj);
  4098. }, [_hanDeskIcon[i]])
  4099. }, _frag); //
  4100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4103. }
  4104. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4105. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4106. if(_role === 0 && _orgStemDeskIcon[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. }, [_orgStemDeskIcon[i]]),
  4115. "onclick": U.UF.C.closure(function (obj) {
  4116. //防止拖动图标即打开了桌面应用
  4117. U.MD.D.click(this, obj);
  4118. }, [_orgStemDeskIcon[i]])
  4119. }, _frag); //
  4120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4123. }
  4124. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4125. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4126. if(_role === 0 && _szulsDeskIcon[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. }, [_szulsDeskIcon[i]]),
  4135. "onclick": U.UF.C.closure(function (obj) {
  4136. //防止拖动图标即打开了桌面应用
  4137. U.MD.D.click(this, obj);
  4138. }, [_szulsDeskIcon[i]])
  4139. }, _frag); //
  4140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4143. }
  4144. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4145. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4146. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  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. }, [_orgDesktopIconInfo[i]]),
  4155. "onclick": U.UF.C.closure(function (obj) {
  4156. //防止拖动图标即打开了桌面应用
  4157. U.MD.D.click(this, obj);
  4158. }, [_orgDesktopIconInfo[i]])
  4159. }, _frag); //
  4160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4163. }
  4164. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4165. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4166. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4167. continue
  4168. }
  4169. _content = $$("div", {
  4170. className: "U_MD_D_KO",
  4171. "onmousedown": U.UF.C.closure(function (obj) {
  4172. //防止拖动图标即打开了桌面应用
  4173. U.MD.D.click(this, obj);
  4174. }, [_schoolDesktopIconInfo[i]]),
  4175. "onclick": U.UF.C.closure(function (obj) {
  4176. //防止拖动图标即打开了桌面应用
  4177. U.MD.D.click(this, obj);
  4178. }, [_schoolDesktopIconInfo[i]])
  4179. }, _frag); //
  4180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4183. }
  4184. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4185. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4186. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4187. continue
  4188. }
  4189. _content = $$("div", {
  4190. className: "U_MD_D_KO",
  4191. "onmousedown": U.UF.C.closure(function (obj) {
  4192. //防止拖动图标即打开了桌面应用
  4193. U.MD.D.click(this, obj);
  4194. }, [_GMteacherDesktopIconInfo[i]]),
  4195. "onclick": U.UF.C.closure(function (obj) {
  4196. //防止拖动图标即打开了桌面应用
  4197. U.MD.D.click(this, obj);
  4198. }, [_GMteacherDesktopIconInfo[i]])
  4199. }, _frag); //
  4200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4203. }
  4204. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4205. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4206. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4207. continue
  4208. }
  4209. _content = $$("div", {
  4210. className: "U_MD_D_KO",
  4211. "onmousedown": U.UF.C.closure(function (obj) {
  4212. //防止拖动图标即打开了桌面应用
  4213. U.MD.D.click(this, obj);
  4214. }, [_SONGteacherDesktopIconInfo[i]]),
  4215. "onclick": U.UF.C.closure(function (obj) {
  4216. //防止拖动图标即打开了桌面应用
  4217. U.MD.D.click(this, obj);
  4218. }, [_SONGteacherDesktopIconInfo[i]])
  4219. }, _frag); //
  4220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4223. }
  4224. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4225. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4226. _content = $$("div", {
  4227. className: "U_MD_D_KO",
  4228. "onmousedown": U.UF.C.closure(function (obj) {
  4229. //防止拖动图标即打开了桌面应用
  4230. U.MD.D.click(this, obj);
  4231. }, [_GMstudentDesktopIconInfo[i]]),
  4232. "onclick": U.UF.C.closure(function (obj) {
  4233. //防止拖动图标即打开了桌面应用
  4234. U.MD.D.click(this, obj);
  4235. }, [_GMstudentDesktopIconInfo[i]])
  4236. }, _frag); //
  4237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4240. }
  4241. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4242. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4243. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4244. continue
  4245. }
  4246. _content = $$("div", {
  4247. className: "U_MD_D_KO",
  4248. "onmousedown": U.UF.C.closure(function (obj) {
  4249. //防止拖动图标即打开了桌面应用
  4250. U.MD.D.click(this, obj);
  4251. }, [_tcTeacherDeskIconInfo[i]]),
  4252. "onclick": U.UF.C.closure(function (obj) {
  4253. //防止拖动图标即打开了桌面应用
  4254. U.MD.D.click(this, obj);
  4255. }, [_tcTeacherDeskIconInfo[i]])
  4256. }, _frag); //
  4257. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4258. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4259. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4260. }
  4261. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4262. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4263. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4264. continue
  4265. }
  4266. _content = $$("div", {
  4267. className: "U_MD_D_KO",
  4268. "onmousedown": U.UF.C.closure(function (obj) {
  4269. //防止拖动图标即打开了桌面应用
  4270. U.MD.D.click(this, obj);
  4271. }, [_tcOrganizerDeskIconInfo[i]]),
  4272. "onclick": U.UF.C.closure(function (obj) {
  4273. //防止拖动图标即打开了桌面应用
  4274. U.MD.D.click(this, obj);
  4275. }, [_tcOrganizerDeskIconInfo[i]])
  4276. }, _frag); //
  4277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4280. }
  4281. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4282. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4283. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4284. continue
  4285. }
  4286. _content = $$("div", {
  4287. className: "U_MD_D_KO",
  4288. "onmousedown": U.UF.C.closure(function (obj) {
  4289. //防止拖动图标即打开了桌面应用
  4290. U.MD.D.click(this, obj);
  4291. }, [_szscTeacherDeskIconInfo[i]]),
  4292. "onclick": U.UF.C.closure(function (obj) {
  4293. //防止拖动图标即打开了桌面应用
  4294. U.MD.D.click(this, obj);
  4295. }, [_szscTeacherDeskIconInfo[i]])
  4296. }, _frag); //
  4297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4300. }
  4301. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4302. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4303. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4304. continue
  4305. }
  4306. _content = $$("div", {
  4307. className: "U_MD_D_KO",
  4308. "onmousedown": U.UF.C.closure(function (obj) {
  4309. //防止拖动图标即打开了桌面应用
  4310. U.MD.D.click(this, obj);
  4311. }, [_szscOrganizerDeskIconInfo[i]]),
  4312. "onclick": U.UF.C.closure(function (obj) {
  4313. //防止拖动图标即打开了桌面应用
  4314. U.MD.D.click(this, obj);
  4315. }, [_szscOrganizerDeskIconInfo[i]])
  4316. }, _frag); //
  4317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4320. }
  4321. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4322. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4323. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4324. continue
  4325. }
  4326. _content = $$("div", {
  4327. className: "U_MD_D_KO",
  4328. "onmousedown": U.UF.C.closure(function (obj) {
  4329. //防止拖动图标即打开了桌面应用
  4330. U.MD.D.click(this, obj);
  4331. }, [_nsfxTeacherDeskIconInfo[i]]),
  4332. "onclick": U.UF.C.closure(function (obj) {
  4333. //防止拖动图标即打开了桌面应用
  4334. U.MD.D.click(this, obj);
  4335. }, [_nsfxTeacherDeskIconInfo[i]])
  4336. }, _frag); //
  4337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4340. }
  4341. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4342. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4343. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4344. continue
  4345. }
  4346. _content = $$("div", {
  4347. className: "U_MD_D_KO",
  4348. "onmousedown": U.UF.C.closure(function (obj) {
  4349. //防止拖动图标即打开了桌面应用
  4350. U.MD.D.click(this, obj);
  4351. }, [_stiaTeacherDeskIconInfo[i]]),
  4352. "onclick": U.UF.C.closure(function (obj) {
  4353. //防止拖动图标即打开了桌面应用
  4354. U.MD.D.click(this, obj);
  4355. }, [_stiaTeacherDeskIconInfo[i]])
  4356. }, _frag); //
  4357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4360. }
  4361. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4362. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4363. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4364. continue
  4365. }
  4366. _content = $$("div", {
  4367. className: "U_MD_D_KO",
  4368. "onmousedown": U.UF.C.closure(function (obj) {
  4369. //防止拖动图标即打开了桌面应用
  4370. U.MD.D.click(this, obj);
  4371. }, [_szdjgTeacherDeskIconInfo[i]]),
  4372. "onclick": U.UF.C.closure(function (obj) {
  4373. //防止拖动图标即打开了桌面应用
  4374. U.MD.D.click(this, obj);
  4375. }, [_szdjgTeacherDeskIconInfo[i]])
  4376. }, _frag); //
  4377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4380. }
  4381. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4382. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4383. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4384. continue
  4385. }
  4386. _content = $$("div", {
  4387. className: "U_MD_D_KO",
  4388. "onmousedown": U.UF.C.closure(function (obj) {
  4389. //防止拖动图标即打开了桌面应用
  4390. U.MD.D.click(this, obj);
  4391. }, [_x010607TeacherDeskIconInfo[i]]),
  4392. "onclick": U.UF.C.closure(function (obj) {
  4393. //防止拖动图标即打开了桌面应用
  4394. U.MD.D.click(this, obj);
  4395. }, [_x010607TeacherDeskIconInfo[i]])
  4396. }, _frag); //
  4397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4400. }
  4401. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4402. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4403. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4404. continue
  4405. }
  4406. _content = $$("div", {
  4407. className: "U_MD_D_KO",
  4408. "onmousedown": U.UF.C.closure(function (obj) {
  4409. //防止拖动图标即打开了桌面应用
  4410. U.MD.D.click(this, obj);
  4411. }, [_xhlyTeacherDeskIconInfo[i]]),
  4412. "onclick": U.UF.C.closure(function (obj) {
  4413. //防止拖动图标即打开了桌面应用
  4414. U.MD.D.click(this, obj);
  4415. }, [_xhlyTeacherDeskIconInfo[i]])
  4416. }, _frag); //
  4417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4420. }
  4421. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4422. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4423. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4424. continue
  4425. }
  4426. _content = $$("div", {
  4427. className: "U_MD_D_KO",
  4428. "onmousedown": U.UF.C.closure(function (obj) {
  4429. //防止拖动图标即打开了桌面应用
  4430. U.MD.D.click(this, obj);
  4431. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4432. "onclick": U.UF.C.closure(function (obj) {
  4433. //防止拖动图标即打开了桌面应用
  4434. U.MD.D.click(this, obj);
  4435. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4436. }, _frag); //
  4437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4440. }
  4441. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4442. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4443. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4444. continue
  4445. }
  4446. _content = $$("div", {
  4447. className: "U_MD_D_KO",
  4448. "onmousedown": U.UF.C.closure(function (obj) {
  4449. //防止拖动图标即打开了桌面应用
  4450. U.MD.D.click(this, obj);
  4451. }, [_x010503TeacherDeskIconInfo[i]]),
  4452. "onclick": U.UF.C.closure(function (obj) {
  4453. //防止拖动图标即打开了桌面应用
  4454. U.MD.D.click(this, obj);
  4455. }, [_x010503TeacherDeskIconInfo[i]])
  4456. }, _frag); //
  4457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4460. }
  4461. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4462. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4463. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4464. continue
  4465. }
  4466. _content = $$("div", {
  4467. className: "U_MD_D_KO",
  4468. "onmousedown": U.UF.C.closure(function (obj) {
  4469. //防止拖动图标即打开了桌面应用
  4470. U.MD.D.click(this, obj);
  4471. }, [_x010504TeacherDeskIconInfo[i]]),
  4472. "onclick": U.UF.C.closure(function (obj) {
  4473. //防止拖动图标即打开了桌面应用
  4474. U.MD.D.click(this, obj);
  4475. }, [_x010504TeacherDeskIconInfo[i]])
  4476. }, _frag); //
  4477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4480. }
  4481. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4482. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4483. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4484. continue
  4485. }
  4486. _content = $$("div", {
  4487. className: "U_MD_D_KO",
  4488. "onmousedown": U.UF.C.closure(function (obj) {
  4489. //防止拖动图标即打开了桌面应用
  4490. U.MD.D.click(this, obj);
  4491. }, [_x010505TeacherDeskIconInfo[i]]),
  4492. "onclick": U.UF.C.closure(function (obj) {
  4493. //防止拖动图标即打开了桌面应用
  4494. U.MD.D.click(this, obj);
  4495. }, [_x010505TeacherDeskIconInfo[i]])
  4496. }, _frag); //
  4497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4500. }
  4501. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4502. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4503. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4504. continue
  4505. }
  4506. _content = $$("div", {
  4507. className: "U_MD_D_KO",
  4508. "onmousedown": U.UF.C.closure(function (obj) {
  4509. //防止拖动图标即打开了桌面应用
  4510. U.MD.D.click(this, obj);
  4511. }, [_x010404TeacherDeskIconInfo[i]]),
  4512. "onclick": U.UF.C.closure(function (obj) {
  4513. //防止拖动图标即打开了桌面应用
  4514. U.MD.D.click(this, obj);
  4515. }, [_x010404TeacherDeskIconInfo[i]])
  4516. }, _frag); //
  4517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4520. }
  4521. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4522. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4523. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4524. continue
  4525. }
  4526. _content = $$("div", {
  4527. className: "U_MD_D_KO",
  4528. "onmousedown": U.UF.C.closure(function (obj) {
  4529. //防止拖动图标即打开了桌面应用
  4530. U.MD.D.click(this, obj);
  4531. }, [_x010204TeacherDeskIconInfo[i]]),
  4532. "onclick": U.UF.C.closure(function (obj) {
  4533. //防止拖动图标即打开了桌面应用
  4534. U.MD.D.click(this, obj);
  4535. }, [_x010204TeacherDeskIconInfo[i]])
  4536. }, _frag); //
  4537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4540. }
  4541. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4542. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4543. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4544. continue
  4545. }
  4546. _content = $$("div", {
  4547. className: "U_MD_D_KO",
  4548. "onmousedown": U.UF.C.closure(function (obj) {
  4549. //防止拖动图标即打开了桌面应用
  4550. U.MD.D.click(this, obj);
  4551. }, [_x320101TeacherDeskIconInfo[i]]),
  4552. "onclick": U.UF.C.closure(function (obj) {
  4553. //防止拖动图标即打开了桌面应用
  4554. U.MD.D.click(this, obj);
  4555. }, [_x320101TeacherDeskIconInfo[i]])
  4556. }, _frag); //
  4557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4560. }
  4561. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4562. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4563. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4564. continue
  4565. }
  4566. _content = $$("div", {
  4567. className: "U_MD_D_KO",
  4568. "onmousedown": U.UF.C.closure(function (obj) {
  4569. //防止拖动图标即打开了桌面应用
  4570. U.MD.D.click(this, obj);
  4571. }, [_trailTeacherDeskIconInfo[i]]),
  4572. "onclick": U.UF.C.closure(function (obj) {
  4573. //防止拖动图标即打开了桌面应用
  4574. U.MD.D.click(this, obj);
  4575. }, [_trailTeacherDeskIconInfo[i]])
  4576. }, _frag); //
  4577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4580. }
  4581. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4582. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4583. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4584. continue
  4585. }
  4586. _content = $$("div", {
  4587. className: "U_MD_D_KO",
  4588. "onmousedown": U.UF.C.closure(function (obj) {
  4589. //防止拖动图标即打开了桌面应用
  4590. U.MD.D.click(this, obj);
  4591. }, [_trialTeacherDeskIconInfo[i]]),
  4592. "onclick": U.UF.C.closure(function (obj) {
  4593. //防止拖动图标即打开了桌面应用
  4594. U.MD.D.click(this, obj);
  4595. }, [_trialTeacherDeskIconInfo[i]])
  4596. }, _frag); //
  4597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4600. }
  4601. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4602. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4603. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4604. continue
  4605. }
  4606. _content = $$("div", {
  4607. className: "U_MD_D_KO",
  4608. "onmousedown": U.UF.C.closure(function (obj) {
  4609. //防止拖动图标即打开了桌面应用
  4610. U.MD.D.click(this, obj);
  4611. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4612. "onclick": U.UF.C.closure(function (obj) {
  4613. //防止拖动图标即打开了桌面应用
  4614. U.MD.D.click(this, obj);
  4615. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4616. }, _frag); //
  4617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4620. }
  4621. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4622. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4623. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4624. continue
  4625. }
  4626. _content = $$("div", {
  4627. className: "U_MD_D_KO",
  4628. "onmousedown": U.UF.C.closure(function (obj) {
  4629. //防止拖动图标即打开了桌面应用
  4630. U.MD.D.click(this, obj);
  4631. }, [_szsyTeacherDeskIconInfo[i]]),
  4632. "onclick": U.UF.C.closure(function (obj) {
  4633. //防止拖动图标即打开了桌面应用
  4634. U.MD.D.click(this, obj);
  4635. }, [_szsyTeacherDeskIconInfo[i]])
  4636. }, _frag); //
  4637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4640. }
  4641. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4642. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4643. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4644. continue
  4645. }
  4646. _content = $$("div", {
  4647. className: "U_MD_D_KO",
  4648. "onmousedown": U.UF.C.closure(function (obj) {
  4649. //防止拖动图标即打开了桌面应用
  4650. U.MD.D.click(this, obj);
  4651. }, [_x010608TeacherDeskIconInfo[i]]),
  4652. "onclick": U.UF.C.closure(function (obj) {
  4653. //防止拖动图标即打开了桌面应用
  4654. U.MD.D.click(this, obj);
  4655. }, [_x010608TeacherDeskIconInfo[i]])
  4656. }, _frag); //
  4657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4660. }
  4661. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4662. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4663. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4664. continue
  4665. }
  4666. _content = $$("div", {
  4667. className: "U_MD_D_KO",
  4668. "onmousedown": U.UF.C.closure(function (obj) {
  4669. //防止拖动图标即打开了桌面应用
  4670. U.MD.D.click(this, obj);
  4671. }, [_x010611TeacherDeskIconInfo[i]]),
  4672. "onclick": U.UF.C.closure(function (obj) {
  4673. //防止拖动图标即打开了桌面应用
  4674. U.MD.D.click(this, obj);
  4675. }, [_x010611TeacherDeskIconInfo[i]])
  4676. }, _frag); //
  4677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4680. }
  4681. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4682. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4683. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4684. continue
  4685. }
  4686. _content = $$("div", {
  4687. className: "U_MD_D_KO",
  4688. "onmousedown": U.UF.C.closure(function (obj) {
  4689. //防止拖动图标即打开了桌面应用
  4690. U.MD.D.click(this, obj);
  4691. }, [_x010612TeacherDeskIconInfo[i]]),
  4692. "onclick": U.UF.C.closure(function (obj) {
  4693. //防止拖动图标即打开了桌面应用
  4694. U.MD.D.click(this, obj);
  4695. }, [_x010612TeacherDeskIconInfo[i]])
  4696. }, _frag); //
  4697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4700. }
  4701. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4702. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4703. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4704. continue
  4705. }
  4706. _content = $$("div", {
  4707. className: "U_MD_D_KO",
  4708. "onmousedown": U.UF.C.closure(function (obj) {
  4709. //防止拖动图标即打开了桌面应用
  4710. U.MD.D.click(this, obj);
  4711. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4712. "onclick": U.UF.C.closure(function (obj) {
  4713. //防止拖动图标即打开了桌面应用
  4714. U.MD.D.click(this, obj);
  4715. }, [_tianyuanTeacherDeskIconInfo[i]])
  4716. }, _frag); //
  4717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4720. }
  4721. } else {
  4722. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4723. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4724. continue
  4725. }
  4726. _content = $$("div", {
  4727. className: "U_MD_D_KO",
  4728. "onmousedown": U.UF.C.closure(function (obj) {
  4729. //防止拖动图标即打开了桌面应用
  4730. U.MD.D.click(this, obj);
  4731. }, [_teacherDesktopIconInfo[i]]),
  4732. "onclick": U.UF.C.closure(function (obj) {
  4733. //防止拖动图标即打开了桌面应用
  4734. U.MD.D.click(this, obj);
  4735. }, [_teacherDesktopIconInfo[i]])
  4736. }, _frag); //
  4737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4740. }
  4741. }
  4742. } else {
  4743. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4744. _content = $$("div", {
  4745. className: "U_MD_D_KO",
  4746. style: { 'width': '124px', 'height': '145px' },
  4747. "onmousedown": U.UF.C.closure(function (obj) {
  4748. //防止拖动图标即打开了桌面应用
  4749. U.MD.D.click(this, obj);
  4750. }, [_easyDesktopIconInfo[i]]),
  4751. "onclick": U.UF.C.closure(function (obj) {
  4752. //防止拖动图标即打开了桌面应用
  4753. U.MD.D.click(this, obj);
  4754. }, [_easyDesktopIconInfo[i]])
  4755. }, _frag); //
  4756. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4759. }
  4760. }
  4761. if (type == 1) {
  4762. //加载好后给图标定位
  4763. U.MD.D.iconPostion($(_frag).Child());
  4764. } else {
  4765. //加载好后给图标定位
  4766. U.MD.D.iconPostion2($(_frag).Child());
  4767. }
  4768. //把图标加载到页面
  4769. el.appendChild(_frag);
  4770. }
  4771. /**
  4772. * 显示任务栏
  4773. *
  4774. * @param {element} 桌面元素
  4775. */
  4776. U.MD.D.I.displayTaskbar = function (el) {
  4777. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4778. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4779. //任务栏位置变化
  4780. U.selectEl(el).css({ "bottom": "0px" });
  4781. //桌面位置变话
  4782. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4783. }
  4784. }
  4785. //#region 桌面图标拖动逻辑
  4786. /**
  4787. * 桌面排列图标
  4788. *
  4789. * @param {element} 桌面元素
  4790. * @param {object} 上下相距的距离
  4791. * @param {object} 左右相距的距离
  4792. * @return {object} 命名空间
  4793. */
  4794. U.MD.D.iconPostion = function (childs, top, left) {
  4795. var i; //用于循环处理
  4796. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4797. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4798. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4799. for (i = 0; i < childs.length; i++) {
  4800. //如果竖排top超过了范围处理
  4801. if (top + 95 > US.height - 10) {
  4802. //left超过了页面范围处理,则向上重叠打印处理
  4803. if ((left + 180) > US.width) {
  4804. top -= 110;
  4805. left -= 90;
  4806. }
  4807. //没有超过范围,那么left+90添加到下一个竖排打印
  4808. else {
  4809. left += 90;
  4810. top = 15;
  4811. };
  4812. }
  4813. //给图标的位置赋值
  4814. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4815. if (i < childs.length - 1) {
  4816. //页面图标每次向下加95
  4817. top += 95;
  4818. }
  4819. }
  4820. //返回最后调用的图标的位置
  4821. return [top, left];
  4822. }
  4823. /**
  4824. * 桌面排列图标
  4825. *
  4826. * @param {element} 桌面元素
  4827. * @param {object} 上下相距的距离
  4828. * @param {object} 左右相距的距离
  4829. * @return {object} 命名空间
  4830. */
  4831. U.MD.D.iconPostion2 = function (childs, top, left) {
  4832. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4833. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4834. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4835. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4836. for (i = 0; i < childs.length; i++) {
  4837. //如果竖排top超过了范围处理
  4838. if (left + 150 > US.width - 10) {
  4839. //left超过了页面范围处理,则向上重叠打印处理
  4840. if ((top + 180) > US.Height) {
  4841. top -= 150;
  4842. left -= 150;
  4843. }
  4844. //没有超过范围,那么left+90添加到下一个竖排打印
  4845. else {
  4846. top += 150;
  4847. left = ol;
  4848. };
  4849. }
  4850. //给图标的位置赋值
  4851. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4852. if (i < childs.length - 1) {
  4853. //页面图标每次向下加95
  4854. left += 150;
  4855. }
  4856. }
  4857. //返回最后调用的图标的位置
  4858. return [top, left];
  4859. }
  4860. /**
  4861. * 桌面点击事件逻辑
  4862. *
  4863. * @param {element} 桌面元素
  4864. * @param {object} 上下相距的距离
  4865. * @param {object} 左右相距的距离
  4866. * @return {object} 命名空间
  4867. */
  4868. U.MD.D.click = function (el, obj) {
  4869. var _buttonnumber = event.button; //点击的按钮的事件值
  4870. var _userinfo = US.userInfo;
  4871. U.UF.EV.stopBubble(); //阻止向上冒泡
  4872. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4873. if (_buttonnumber < 2) {
  4874. //如果是click事件的处理
  4875. if (event.type == "click") {
  4876. //如果元素在mousemove事件中没有移动则出发click事件
  4877. if (!U.MD.D.I.IsDrag) {
  4878. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4879. U.alert("请先登录您的账号!");
  4880. setTimeout(() => {
  4881. U.MD.U.L.login();
  4882. }, 2000);
  4883. } else {
  4884. //打开应用处理
  4885. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4886. }
  4887. }
  4888. }
  4889. //如果是mouse事件的处理
  4890. else {
  4891. if (US.Config.type == '1') {
  4892. //拖动处理,添加拖动和拖动结束事件
  4893. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4894. }
  4895. }
  4896. U.MD.D.I.IsDrag = false;
  4897. }
  4898. }
  4899. /**
  4900. * 拖动的处理
  4901. *
  4902. */
  4903. U.MD.D.iconMove = function () {
  4904. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4905. U.MD.D.I.IsDrag = true;
  4906. }
  4907. /**
  4908. * 拖动结束后,这里是定位处理,以网状的形式定位
  4909. *
  4910. * @param {element} 拖动的元素
  4911. * @return {object} 命名空间
  4912. */
  4913. U.MD.D.iconUp = function (el) {
  4914. var _top = 15,
  4915. _left = 20,
  4916. _margin,
  4917. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4918. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4919. if (_positioninfo["OT"] > 15) {
  4920. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4921. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4922. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4923. }
  4924. if (_positioninfo["OL"] > 20) {
  4925. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4926. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4927. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4928. }
  4929. //while循环判断么一个重叠的元素
  4930. do {
  4931. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4932. _top = _positioninfo[0] + 95; //得到定位后的top
  4933. _left = _positioninfo[1]; //得到定位后的left
  4934. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4935. }
  4936. /**
  4937. * 判断拖动后图标是否重叠
  4938. *
  4939. * @param {element} 拖动的元素
  4940. * @param {element} 桌面所有的元素
  4941. * @param {array} 拖动元素的位置
  4942. ----------[0] 上 top
  4943. ----------[1] 左 left
  4944. * @return {object} 命名空间
  4945. */
  4946. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4947. //循环所有的图标
  4948. for (var i = 0; i < childs.length; i++) {
  4949. //判断有没有和该图标诶子重叠的元素
  4950. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4951. return childs[i]; //如果有返回
  4952. }
  4953. }
  4954. }
  4955. //#endregion
  4956. //#endregion
  4957. //#region 桌面应用
  4958. /**
  4959. * 打开应用
  4960. *
  4961. * @param {string} 类型
  4962. -----------------Disk 网盘系统
  4963. -----------------PDisk 学习系统网盘
  4964. -----------------Poto 图片
  4965. -----------------Video 视频
  4966. -----------------Music 音乐
  4967. -----------------Word word
  4968. -----------------Excel excel
  4969. -----------------Txt 记事本
  4970. -----------------PB 学习系统
  4971. -----------------Blog 朋友圈系统
  4972. -----------------FTP ftp系统
  4973. -----------------Group 好友群
  4974. -----------------SY 首页系统
  4975. -----------------Set 个人设置
  4976. -----------------XSet 系统设置
  4977. -----------------App 我们所有的app
  4978. -----------------BC c.1473.cn 平台
  4979. -----------------CWeb d.1473.cn 变成平台
  4980. -----------------其他的外联系统 我们统一用iframe打开
  4981. * @param {array} 类型
  4982. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4983. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4984. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4985. 如果第一个参数为其他,则无第二个参数
  4986. * @returns {array}
  4987. */
  4988. window.addEventListener('message', function (e) { // 监听 message 事件
  4989. // alert(e.data.type);
  4990. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4991. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4992. //3是展示全部阶段 2学生 1老师 4专家
  4993. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4994. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4995. //3是展示全部阶段 2学生 1老师 4专家
  4996. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4997. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4998. //3是展示全部阶段 2学生 1老师 4专家
  4999. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5000. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5001. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5002. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5003. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5004. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5005. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5006. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5007. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5008. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5009. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5010. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5011. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5012. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5013. //3是展示全部阶段 2学生 1老师 4专家
  5014. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5015. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5016. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5017. U.MD.D.I.selectUser();
  5018. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5019. var _formel = document.getElementById("study");
  5020. U.UF.F.windowZooming(_formel);
  5021. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5022. var _formel = document.getElementById("studyDetail");
  5023. U.UF.F.windowZooming(_formel);
  5024. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5025. var _formel = document.getElementById("studyDetail");
  5026. U.UF.F.windowZooming(_formel);
  5027. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5028. var _formel = document.getElementById("studentStudy");
  5029. U.UF.F.windowZooming(_formel);
  5030. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5031. // var _formel = document.getElementById("study");
  5032. //如果最大化了,那么就把他缩小
  5033. // if (_formel.ismaximize) {
  5034. // return;
  5035. // }
  5036. // U.UF.F.windowZooming(_formel);
  5037. // U.UF.F.topWindow(_formel);
  5038. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5039. // var _formel = document.getElementById("studyDetail");
  5040. //如果最大化了,那么就把他缩小
  5041. // if (_formel.ismaximize) {
  5042. // return;
  5043. // }
  5044. // U.UF.F.windowZooming(_formel);
  5045. // U.UF.F.topWindow(_formel);
  5046. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5047. // var _formel = document.getElementById("studentStudy");
  5048. // if (_formel.ismaximize) {
  5049. // return;
  5050. // }
  5051. // U.UF.F.windowZooming(_formel);
  5052. // U.UF.F.topWindow(_formel);
  5053. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5054. var _formel = document.getElementById("study");
  5055. // if (_formel.ismaximize) {
  5056. // return;
  5057. // }
  5058. // U.UF.F.windowZooming(_formel);
  5059. U.UF.F.topWindow(_formel);
  5060. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5061. var _formel = document.getElementById("studentIndex");
  5062. U.UF.F.windowZooming(_formel);
  5063. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5064. var _formel = document.getElementById("studyDetailS");
  5065. U.UF.F.windowZooming(_formel);
  5066. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5067. var _formel = document.getElementById("studioIndex");
  5068. U.UF.F.windowZooming(_formel);
  5069. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5070. var _formel = document.getElementById("studyDetailStudio");
  5071. U.UF.F.windowZooming(_formel);
  5072. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5073. var _formel = document.getElementById("studyDetailStudio");
  5074. U.UF.F.windowZooming(_formel);
  5075. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5076. var _formel = document.getElementById("studyDetailNT");
  5077. U.UF.F.windowZooming(_formel);
  5078. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5079. var _formel = document.getElementById("studyDetailS");
  5080. U.UF.F.windowZooming(_formel);
  5081. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5082. var _formel = document.getElementById("studyDetailS");
  5083. U.UF.F.topWindow(_formel);
  5084. } else if (e.data.tools && e.data.tools == "1") {
  5085. // U.MD.D.I.openApplication("whiteboard")
  5086. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5087. } else if (e.data.tools && e.data.tools == "2") {
  5088. U.MD.D.I.openApplication("note")
  5089. } else if (e.data.tools && e.data.tools == "3") {
  5090. // U.MD.D.I.openApplication("mind")
  5091. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5092. } else if (e.data.tools && e.data.tools == "4") {
  5093. U.MD.D.I.openApplication("investigation")
  5094. } else if (e.data.tools && e.data.tools == "6") {
  5095. // U.MD.D.I.openApplication("doc")
  5096. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5097. } else if (e.data.tools && e.data.tools == "7") {
  5098. // U.MD.D.I.openApplication("mindNetwork")
  5099. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5100. } else if (e.data.tools && e.data.tools == "8") {
  5101. U.MD.D.I.openApplication("library")
  5102. } else if (e.data.tools && e.data.tools == "17") {
  5103. U.MD.D.I.openApplication("stuLibrary")
  5104. } else if (e.data.tools && e.data.tools == "18") {
  5105. U.MD.D.I.openApplication("train")
  5106. } else if (e.data.tools && e.data.tools == "21") {
  5107. U.MD.D.I.openApplication("program")
  5108. } else if (e.data.tools && e.data.tools == "22") {
  5109. U.MD.D.I.openApplication("AIprogram2")
  5110. } else if (e.data.tools && e.data.tools == "23") {
  5111. U.MD.D.I.openApplication("Pythonprogram")
  5112. } else if (e.data.tools && e.data.tools == "24") {
  5113. U.MD.D.I.openApplication("AIprogram")
  5114. } else if (e.data.tools && e.data.tools == "25") {
  5115. U.MD.D.I.openApplication("sys")
  5116. } else if (e.data.tools && e.data.tools == "26") {
  5117. // U.MD.D.I.openApplication("courseDesign")
  5118. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5119. } else if (e.data.tools && e.data.tools == "31") {
  5120. U.MD.D.I.openApplication("netWorkPanel")
  5121. } else if (e.data.tools && e.data.tools == "32") {
  5122. U.MD.D.I.openApplication("codeEdit")
  5123. } else if (e.data.tools && e.data.tools == "57") {
  5124. U.MD.D.I.openApplication("CocoPi")
  5125. } else if (e.data.tools && e.data.tools == "63") {
  5126. U.MD.D.I.openApplication("Wood")
  5127. } else if (e.data.tools && e.data.tools == "58") {
  5128. U.MD.D.I.openApplication("car")
  5129. } else if (e.data.tools && e.data.tools == "59") {
  5130. U.MD.D.I.openApplication("lineSearch")
  5131. } else if (e.data.tools && e.data.tools == "60") {
  5132. U.MD.D.I.openApplication("deepLearning")
  5133. } else if (e.data.tools && e.data.tools == "61") {
  5134. U.MD.D.I.openApplication("allHistory")
  5135. } else if (e.data.tools && e.data.tools == "28") {
  5136. U.MD.D.I.openApplication("translation")
  5137. } else if (e.data.tools && e.data.tools == "37") {
  5138. U.MD.D.I.openApplication("mohe")
  5139. } else if (e.data.tools && e.data.tools == "38") {
  5140. U.MD.D.I.openApplication("24game")
  5141. } else if (e.data.tools && e.data.tools == "39") {
  5142. U.MD.D.I.openApplication("GeoGebra")
  5143. } else if (e.data.tools && e.data.tools == "43") {
  5144. U.MD.D.I.openApplication("studentEvaluate")
  5145. } else if (e.data.tools && e.data.tools == "44") {
  5146. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5147. } else if (e.data.tools && e.data.tools == "46") {
  5148. U.MD.D.I.openApplication("project")
  5149. } else if (e.data.tools && e.data.tools == "71") {
  5150. U.MD.D.I.openApplication("aigptCourse")
  5151. } else if (e.data.tools && e.data.tools == "72") {
  5152. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5153. } else if (e.data.tools && e.data.tools == "1s") {
  5154. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5155. } else if (e.data.tools && e.data.tools == "3s") {
  5156. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5157. } else if (e.data.tools && e.data.tools == "6s") {
  5158. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5159. } else if (e.data.tools && e.data.tools == "1studio") {
  5160. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5161. } else if (e.data.tools && e.data.tools == "3studio") {
  5162. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5163. } else if (e.data.tools && e.data.tools == "6studio") {
  5164. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5165. } else if (e.data.tools && e.data.tools == "3y") {
  5166. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5167. } else if (e.data.tools && e.data.tools == "1y") {
  5168. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5169. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5170. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5171. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5172. U.MD.D.I.openApplication("AIAnalyse")
  5173. } else if (e.data.tools && e.data.tools == "1teacher") {
  5174. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5175. } else if (e.data.tools && e.data.tools == "3teacher") {
  5176. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5177. } else if (e.data.tools && e.data.tools == "7teacher") {
  5178. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5179. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5180. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5181. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5182. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5183. } else if (e.data.tools && e.data.tools == "1E") {
  5184. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5185. } else if (e.data.tools && e.data.tools == "3E") {
  5186. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5187. } else if (e.data.tools && e.data.tools == "57y") {
  5188. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5189. } else if (e.data.tools && e.data.tools == "57u") {
  5190. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5191. } else if (e.data.tools && e.data.tools == "57teacher") {
  5192. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5193. } else if (e.data.tools && e.data.tools == "64") {
  5194. U.MD.D.I.openApplication("AIChat")
  5195. } else if (e.data.tools && e.data.tools == "66") {
  5196. U.MD.D.I.openApplication("formulaEdi")
  5197. } else if (e.data.tools && e.data.tools == "67") {
  5198. U.MD.D.I.openApplication("molStr")
  5199. } else if (e.data.tools && e.data.tools == "68") {
  5200. U.MD.D.I.openApplication("timeAxis")
  5201. } else if (e.data.tools && e.data.tools == "openCourse") {
  5202. let _data = {
  5203. typea: e.data.typea || '',
  5204. typeb: e.data.typeb || '',
  5205. typed: e.data.typed || '',
  5206. }
  5207. U.MD.D.I.openInApplication("index", _data)
  5208. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5209. let _data = {
  5210. classid: e.data.classid || '',
  5211. }
  5212. U.MD.D.I.openInApplication("dataClass", _data)
  5213. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5214. let _data = {
  5215. cid: e.data.cid || '',
  5216. gid: e.data.gid || '',
  5217. }
  5218. U.MD.D.I.openInApplication("opencCscl", _data)
  5219. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5220. U.MD.D.I.openApplication("dataBoardTest")
  5221. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5222. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5223. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5224. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5225. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5226. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5227. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5228. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5229. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5230. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5231. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5232. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5233. }else if (e.data.tools && e.data.tools == "loginSz") {
  5234. U.MD.D.I.openInApplication("loginSz")
  5235. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5236. if($('#classroom_observation_board')[0]){
  5237. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5238. }
  5239. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5240. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5241. if($('#classroom_observation_ob_comment')[0]){
  5242. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5243. }
  5244. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5245. }else if (e.data.tools && e.data.tools == "logout"){
  5246. U.MD.U.LO.logoutSystem()
  5247. }else if (e.data.tools && e.data.tools == "getLogin"){
  5248. let _iframe = $('#UI_Login')[0];
  5249. if (_iframe) {
  5250. var userInfo = US.userInfo;
  5251. var type = 2
  5252. if(userInfo && userInfo.userid){
  5253. type = 1
  5254. }
  5255. _contentWindow = _iframe.contentWindow;
  5256. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5257. }
  5258. }
  5259. });
  5260. U.MD.D.I.selectUser = function () {
  5261. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5262. if (res.value[0].length > 0) {
  5263. US.userInfo = res.value[0][0];
  5264. $(".userName")[0].innerHTML = US.userInfo.username;
  5265. }
  5266. }, [], { "type": "GET", "withCredentials": true });
  5267. }
  5268. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5269. var _userinfo = US.userInfo, //登录用户信息
  5270. _userid = US.userInfo.userid, //登录用户id
  5271. _oid = _userinfo.organizeid,
  5272. _type = US.userInfo.type,
  5273. _org = US.userInfo.org,
  5274. _role = US.userInfo.role,
  5275. _classId = US.userInfo.classid;
  5276. if (_type == 4) {
  5277. tType = 4
  5278. }
  5279. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5280. if(opArray.includes(str)){
  5281. let _str = str
  5282. if(str == 'appStore'){
  5283. _str = "cocoFlow"
  5284. }else if(str == "futureClass"){
  5285. _str = "cocoNote"
  5286. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5287. _str = "IntelligentForm"
  5288. }else if(str == "testStudent" || str == "testStudentSies"){
  5289. _str = "TeacherCenter"
  5290. }
  5291. try {
  5292. if (data) {
  5293. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5294. }else {
  5295. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5296. }
  5297. } catch (error) {
  5298. console.log(error);
  5299. }
  5300. }
  5301. switch (str) {
  5302. case "studyDetailNT": //无终端模式
  5303. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5304. setTimeout(() => {
  5305. U.MD.U.L.login();
  5306. }, 2000);
  5307. } else {
  5308. _formdiv = new U.UF.UI.form(
  5309. "课程详情",
  5310. $$("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 }), {
  5311. "id": "studyDetailNT",
  5312. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5313. "onresize": function () { }
  5314. }, {
  5315. closecallback: function () { }
  5316. }, { "style": { "height": "36px" } }).form; //创建窗体
  5317. _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); } }
  5318. break;
  5319. }
  5320. case "studyDetail":
  5321. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5322. setTimeout(() => {
  5323. U.MD.U.L.login();
  5324. }, 2000);
  5325. } else {
  5326. _formdiv = new U.UF.UI.form(
  5327. "课程详情",
  5328. $$("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 }), {
  5329. "id": "studyDetail",
  5330. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5331. "onresize": function () { }
  5332. }, {
  5333. closecallback: function () { }
  5334. }, { "style": { "height": "36px" } }).form; //创建窗体
  5335. _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); } }
  5336. break;
  5337. }
  5338. case "studyDetailTrain":
  5339. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5340. setTimeout(() => {
  5341. U.MD.U.L.login();
  5342. }, 2000);
  5343. } else {
  5344. _formdiv = new U.UF.UI.form(
  5345. "培训详情",
  5346. $$("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 }), {
  5347. "id": "studyDetailTrain",
  5348. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5354. break;
  5355. }
  5356. case "studyDetailS":
  5357. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5358. setTimeout(() => {
  5359. U.MD.U.L.login();
  5360. }, 2000);
  5361. } else {
  5362. _formdiv = new U.UF.UI.form(
  5363. "项目详情",
  5364. $$("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 }), {
  5365. "id": "studyDetailS",
  5366. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5367. "onresize": function () { }
  5368. }, {
  5369. closecallback: function () { }
  5370. }, { "style": { "height": "36px" } }).form; //创建窗体
  5371. _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); } }
  5372. break;
  5373. }
  5374. case "studyDetailStudio":
  5375. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5376. setTimeout(() => {
  5377. U.MD.U.L.login();
  5378. }, 2000);
  5379. } else {
  5380. _formdiv = new U.UF.UI.form(
  5381. "工作详情",
  5382. $$("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 }), {
  5383. "id": "studyDetailStudio",
  5384. "style": { "width": "95%", "height": "95%", "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/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5390. break;
  5391. }
  5392. case "studyDetailS5":
  5393. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5394. setTimeout(() => {
  5395. U.MD.U.L.login();
  5396. }, 2000);
  5397. } else {
  5398. _formdiv = new U.UF.UI.form(
  5399. "项目详情",
  5400. $$("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 }), {
  5401. "id": "studyDetailS",
  5402. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5403. "onresize": function () { }
  5404. }, {
  5405. closecallback: function () { }
  5406. }, { "style": { "height": "36px" } }).form; //创建窗体
  5407. _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); } }
  5408. break;
  5409. }
  5410. case "studyDetailGM":
  5411. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5412. setTimeout(() => {
  5413. U.MD.U.L.login();
  5414. }, 2000);
  5415. } else {
  5416. _formdiv = new U.UF.UI.form(
  5417. "课程详情",
  5418. $$("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 }), {
  5419. "id": "studyDetail",
  5420. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5426. break;
  5427. }
  5428. case "hanUrl":
  5429. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5430. setTimeout(() => {
  5431. U.MD.U.L.login();
  5432. }, 2000);
  5433. } else {
  5434. _formdiv = new U.UF.UI.form(
  5435. "汉字宫",
  5436. $$("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" }), {
  5437. "id": "hanUrl",
  5438. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5439. "onresize": function () { }
  5440. }, {
  5441. closecallback: function () { }
  5442. }, { "style": { "height": "36px" } }).form; //创建窗体
  5443. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5444. break;
  5445. }
  5446. case "index":
  5447. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5448. setTimeout(() => {
  5449. U.MD.U.L.login();
  5450. }, 2000);
  5451. } else {
  5452. _formdiv = new U.UF.UI.form(
  5453. "课程中心",
  5454. $$("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 }), {
  5455. "id": "study",
  5456. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. _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); } }
  5462. break;
  5463. }
  5464. case "dataClass":
  5465. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5466. setTimeout(() => {
  5467. U.MD.U.L.login();
  5468. }, 2000);
  5469. } else {
  5470. _formdiv = new U.UF.UI.form(
  5471. "数据报告",
  5472. $$("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 }), {
  5473. "id": "dataClass",
  5474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5475. "onresize": function () { }
  5476. }, {
  5477. closecallback: function () { }
  5478. }, { "style": { "height": "36px" } }).form; //创建窗体
  5479. _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); } }
  5480. break;
  5481. }
  5482. case "opencCscl":
  5483. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5484. setTimeout(() => {
  5485. U.MD.U.L.login();
  5486. }, 2000);
  5487. } else {
  5488. _formdiv = new U.UF.UI.form(
  5489. "协同建构",
  5490. $$("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 }), {
  5491. "id": "futureClass",
  5492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5493. "onresize": function () { }
  5494. }, {
  5495. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5496. }, { "style": { "height": "36px" } }).form; //创建窗体
  5497. _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); } }
  5498. break;
  5499. }
  5500. case "openCourseUpdate":
  5501. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5502. setTimeout(() => {
  5503. U.MD.U.L.login();
  5504. }, 2000);
  5505. } else {
  5506. _formdiv = new U.UF.UI.form(
  5507. "课程管理",
  5508. $$("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 }), {
  5509. "id": "openCourseUpdate",
  5510. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5511. "onresize": function () { }
  5512. }, {
  5513. closecallback: function () { }
  5514. }, { "style": { "height": "36px" } }).form; //创建窗体
  5515. break;
  5516. }
  5517. case "openNewCourseUpdate":
  5518. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5519. setTimeout(() => {
  5520. U.MD.U.L.login();
  5521. }, 2000);
  5522. } else {
  5523. _formdiv = new U.UF.UI.form(
  5524. "课程管理",
  5525. $$("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 }), {
  5526. "id": "openCourseUpdate",
  5527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5528. "onresize": function () { }
  5529. }, {
  5530. closecallback: function () { }
  5531. }, { "style": { "height": "36px" } }).form; //创建窗体
  5532. break;
  5533. }
  5534. case "openCourseEUpdate":
  5535. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5536. setTimeout(() => {
  5537. U.MD.U.L.login();
  5538. }, 2000);
  5539. } else {
  5540. _formdiv = new U.UF.UI.form(
  5541. "课程管理",
  5542. $$("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 }), {
  5543. "id": "openCourseUpdate",
  5544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. break;
  5550. }
  5551. case "openCourseAiUpdate":
  5552. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5553. setTimeout(() => {
  5554. U.MD.U.L.login();
  5555. }, 2000);
  5556. } else {
  5557. _formdiv = new U.UF.UI.form(
  5558. "课程管理",
  5559. $$("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 }), {
  5560. "id": "openCourseUpdate",
  5561. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5562. "onresize": function () { }
  5563. }, {
  5564. closecallback: function () { }
  5565. }, { "style": { "height": "36px" } }).form; //创建窗体
  5566. break;
  5567. }
  5568. case "openCourseAiUpdate2":
  5569. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5570. setTimeout(() => {
  5571. U.MD.U.L.login();
  5572. }, 2000);
  5573. } else {
  5574. _formdiv = new U.UF.UI.form(
  5575. "课程管理",
  5576. $$("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 }), {
  5577. "id": "openCourseUpdate",
  5578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5579. "onresize": function () { }
  5580. }, {
  5581. closecallback: function () { }
  5582. }, { "style": { "height": "36px" } }).form; //创建窗体
  5583. break;
  5584. }
  5585. case "openCourseNewUpdate":
  5586. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5587. setTimeout(() => {
  5588. U.MD.U.L.login();
  5589. }, 2000);
  5590. } else {
  5591. _formdiv = new U.UF.UI.form(
  5592. "课程管理",
  5593. $$("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 }), {
  5594. "id": "openCourseUpdate",
  5595. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5596. "onresize": function () { }
  5597. }, {
  5598. closecallback: function () { }
  5599. }, { "style": { "height": "36px" } }).form; //创建窗体
  5600. break;
  5601. }
  5602. case "inviteLoginSz":
  5603. _formdiv = new U.UF.UI.form(
  5604. "随机码登录",
  5605. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5606. "id": "loginSz",
  5607. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5608. "onresize": function () { }
  5609. }, {
  5610. closecallback: function () { }
  5611. }, { "style": { "height": "36px" } }).form; //创建窗体
  5612. break;
  5613. case "loginSz":
  5614. _formdiv = new U.UF.UI.form(
  5615. "教师登录",
  5616. $$("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" }), {
  5617. "id": "loginSz",
  5618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. break;
  5624. case "teacher":
  5625. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5626. setTimeout(() => {
  5627. U.MD.U.L.login();
  5628. }, 2000);
  5629. } else {
  5630. _formdiv = new U.UF.UI.form(
  5631. "教师管理",
  5632. $$("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 }), {
  5633. "id": "teacher",
  5634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //创建窗体
  5639. break;
  5640. }
  5641. case "dataBoardSZArea":
  5642. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5643. setTimeout(() => {
  5644. U.MD.U.L.login();
  5645. }, 2000);
  5646. } else {
  5647. _formdiv = new U.UF.UI.form(
  5648. "综合数据看板",
  5649. $$("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 }), {
  5650. "id": "dataBoardSZArea",
  5651. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. break;
  5657. }
  5658. case "dataBoardSZCity":
  5659. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5660. setTimeout(() => {
  5661. U.MD.U.L.login();
  5662. }, 2000);
  5663. } else {
  5664. _formdiv = new U.UF.UI.form(
  5665. "综合数据看板",
  5666. $$("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 }), {
  5667. "id": "dataBoardSZCity",
  5668. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. break;
  5674. }
  5675. case "classroom_observation_board":
  5676. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5677. setTimeout(() => {
  5678. U.MD.U.L.login();
  5679. }, 2000);
  5680. } else {
  5681. _formdiv = new U.UF.UI.form(
  5682. "课堂观察",
  5683. $$("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 }), {
  5684. "id": "classroom_observation_board",
  5685. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5686. "onresize": function () { }
  5687. }, {
  5688. closecallback: function () { }
  5689. }, { "style": { "height": "36px" } }).form; //创建窗体
  5690. break;
  5691. }
  5692. case "classroom_observation_ob_comment":
  5693. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5694. setTimeout(() => {
  5695. U.MD.U.L.login();
  5696. }, 2000);
  5697. } else {
  5698. _formdiv = new U.UF.UI.form(
  5699. "课堂审核",
  5700. $$("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 }), {
  5701. "id": "classroom_observation_ob_comment",
  5702. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. break;
  5708. }
  5709. case "gptConfig":
  5710. _formdiv = new U.UF.UI.form(
  5711. data.name ? data.name : "应用中心",
  5712. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  5713. "id": "gptConfig" + data.id,
  5714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. break;
  5720. }
  5721. }
  5722. U.MD.D.I.openApplication = function (str, obj, info) {
  5723. obj = obj || {};
  5724. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5725. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5726. _userinfo = US.userInfo, //登录用户信息
  5727. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5728. _oid = obj.organizeid || _userinfo.organizeid,
  5729. _type = US.userInfo.type,
  5730. _org = obj.org || US.userInfo.org,
  5731. _role = US.userInfo.role,
  5732. _classId = US.userInfo.classid,
  5733. _TscreenType = 1
  5734. _screenType = 2,
  5735. _SscreenType = 3;
  5736. let iframeBool = true
  5737. if(U.UF.UI.form.allForm[str]){
  5738. iframeBool = false
  5739. }
  5740. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5741. return;
  5742. }
  5743. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5744. if(opArray.includes(str)){
  5745. let _str = str
  5746. if(str == 'appStore'){
  5747. _str = "cocoFlow"
  5748. }else if(str == "futureClass"){
  5749. _str = "cocoNote"
  5750. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5751. _str = "IntelligentForm"
  5752. }else if(str == "testStudent" || str == "testStudentSies"){
  5753. _str = "TeacherCenter"
  5754. }
  5755. try {
  5756. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5757. } catch (error) {
  5758. console.log(error);
  5759. }
  5760. }
  5761. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5762. switch (str) {
  5763. case "studnetProject": //好友打开
  5764. _formdiv = new U.UF.UI.form(
  5765. "我的项目",
  5766. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5767. "id": "studnetProject",
  5768. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5769. "onresize": function () { }
  5770. }, {
  5771. closecallback: function () { }
  5772. }, { "style": { "height": "36px" } }).form; //创建窗体
  5773. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5774. break;
  5775. case "studentEvaluate": //好友打开
  5776. _formdiv = new U.UF.UI.form(
  5777. "我的评价",
  5778. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5779. "id": "studentEvaluate",
  5780. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5781. "onresize": function () { }
  5782. }, {
  5783. closecallback: function () { }
  5784. }, { "style": { "height": "36px" } }).form; //创建窗体
  5785. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5786. break;
  5787. case "my":
  5788. _formdiv = new U.UF.UI.form(
  5789. "我的资料",
  5790. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5791. "id": "my",
  5792. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5793. "onresize": function () { }
  5794. }, {
  5795. closecallback: function () { }
  5796. }, { "style": { "height": "36px" } }).form; //创建窗体
  5797. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5798. break;
  5799. case "program":
  5800. _formdiv = new U.UF.UI.form(
  5801. "编程平台",
  5802. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5803. "id": "program",
  5804. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //创建窗体
  5809. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5810. break;
  5811. case "library":
  5812. _formdiv = new U.UF.UI.form(
  5813. "素材库",
  5814. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5815. "id": "library",
  5816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //创建窗体
  5821. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5822. break;
  5823. case "whiteboard":
  5824. _formdiv = new U.UF.UI.form(
  5825. "电子白板",
  5826. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5827. "id": "whiteboard",
  5828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5834. break;
  5835. case "investigation":
  5836. _formdiv = new U.UF.UI.form(
  5837. "问卷调查",
  5838. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5839. "id": "investigation",
  5840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //创建窗体
  5845. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5846. break;
  5847. case "note":
  5848. _formdiv = new U.UF.UI.form(
  5849. "便签分类",
  5850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5851. "id": "note",
  5852. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5858. break;
  5859. // case "score":
  5860. // _formdiv = new U.UF.UI.form(
  5861. // "量规评分",
  5862. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5863. // "id": "score",
  5864. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5865. // "onresize": function() {}
  5866. // }, {
  5867. // closecallback: function() {}
  5868. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5869. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5870. // break;
  5871. case "mind":
  5872. _formdiv = new U.UF.UI.form(
  5873. "思维导图",
  5874. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5875. "id": "mind",
  5876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5877. "onresize": function () { }
  5878. }, {
  5879. closecallback: function () { }
  5880. }, { "style": { "height": "36px" } }).form; //创建窗体
  5881. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5882. break;
  5883. case "doc":
  5884. // U.MD.D.I.isRoom();
  5885. _formdiv = new U.UF.UI.form(
  5886. "协同文档",
  5887. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5888. "id": "doc",
  5889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5890. "onresize": function () { }
  5891. }, {
  5892. closecallback: function () { }
  5893. }, { "style": { "height": "36px" } }).form; //创建窗体
  5894. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5895. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5896. // })
  5897. _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); } }
  5898. break;
  5899. case "studentStudy":
  5900. _formdiv = new U.UF.UI.form(
  5901. "课程中心",
  5902. $$("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
  5903. "id": "studentStudy",
  5904. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5905. "onresize": function () { }
  5906. }, {
  5907. closecallback: function () { }
  5908. }, { "style": { "height": "36px" } }).form; //创建窗体
  5909. _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); } }
  5910. break;
  5911. case "train": //好友打开
  5912. _formdiv = new U.UF.UI.form(
  5913. "训练平台",
  5914. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5915. "id": "train",
  5916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5917. "onresize": function () { }
  5918. }, {
  5919. closecallback: function () { }
  5920. }, { "style": { "height": "36px" } }).form; //创建窗体
  5921. _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); } }
  5922. break;
  5923. case "mindNetwork": //好友打开
  5924. _formdiv = new U.UF.UI.form(
  5925. "思维网格",
  5926. $$("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 }), {
  5927. "id": "mindNetwork",
  5928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5929. "onresize": function () { }
  5930. }, {
  5931. closecallback: function () { }
  5932. }, { "style": { "height": "36px" } }).form; //创建窗体
  5933. _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); } }
  5934. break;
  5935. case "studentClassRoom": //好友打开
  5936. _formdiv = new U.UF.UI.form(
  5937. "实时课堂",
  5938. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/liveRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5939. "id": "studentClassRoom",
  5940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5941. "onresize": function () { }
  5942. }, {
  5943. closecallback: function () { }
  5944. }, { "style": { "height": "36px" } }).form; //创建窗体
  5945. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5946. setTimeout(() => {
  5947. U.UF.F.windowZooming(_formdiv)
  5948. }, 0);
  5949. break;
  5950. }
  5951. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5952. switch (str) {
  5953. case "studnetProject": //好友打开
  5954. _formdiv = new U.UF.UI.form(
  5955. "我的项目",
  5956. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5957. "id": "studnetProject",
  5958. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5959. "onresize": function () { }
  5960. }, {
  5961. closecallback: function () { }
  5962. }, { "style": { "height": "36px" } }).form; //创建窗体
  5963. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5964. break;
  5965. case "studentEvaluate": //好友打开
  5966. _formdiv = new U.UF.UI.form(
  5967. "我的评价",
  5968. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5969. "id": "studentEvaluate",
  5970. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5971. "onresize": function () { }
  5972. }, {
  5973. closecallback: function () { }
  5974. }, { "style": { "height": "36px" } }).form; //创建窗体
  5975. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5976. break;
  5977. case "my":
  5978. _formdiv = new U.UF.UI.form(
  5979. "我的资料",
  5980. $$("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 }), {
  5981. "id": "my",
  5982. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5988. break;
  5989. case "program":
  5990. _formdiv = new U.UF.UI.form(
  5991. "编程平台",
  5992. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5993. "id": "program",
  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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6000. break;
  6001. case "library":
  6002. _formdiv = new U.UF.UI.form(
  6003. "素材库",
  6004. $$("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 }), {
  6005. "id": "library",
  6006. "style": { "width": "90%", "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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6012. break;
  6013. case "whiteboard":
  6014. _formdiv = new U.UF.UI.form(
  6015. "电子白板",
  6016. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6017. "id": "whiteboard",
  6018. "style": { "width": "90%", "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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6024. break;
  6025. case "investigation":
  6026. _formdiv = new U.UF.UI.form(
  6027. "问卷调查",
  6028. $$("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 }), {
  6029. "id": "investigation",
  6030. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6036. break;
  6037. case "note":
  6038. _formdiv = new U.UF.UI.form(
  6039. "便签分类",
  6040. $$("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 }), {
  6041. "id": "note",
  6042. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6048. break;
  6049. // case "score":
  6050. // _formdiv = new U.UF.UI.form(
  6051. // "量规评分",
  6052. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6053. // "id": "score",
  6054. // "style": { "width": "90%", "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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6060. // break;
  6061. case "mind":
  6062. _formdiv = new U.UF.UI.form(
  6063. "思维导图",
  6064. $$("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"
  6065. "id": "mind",
  6066. "style": { "width": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6072. break;
  6073. case "doc":
  6074. // U.MD.D.I.isRoom();
  6075. _formdiv = new U.UF.UI.form(
  6076. "协同文档",
  6077. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6078. "id": "doc",
  6079. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6080. "onresize": function () { }
  6081. }, {
  6082. closecallback: function () { }
  6083. }, { "style": { "height": "36px" } }).form; //创建窗体
  6084. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6085. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6086. })
  6087. _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); } }
  6088. break;
  6089. case "train": //好友打开
  6090. _formdiv = new U.UF.UI.form(
  6091. "训练平台",
  6092. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6093. "id": "train",
  6094. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6095. "onresize": function () { }
  6096. }, {
  6097. closecallback: function () { }
  6098. }, { "style": { "height": "36px" } }).form; //创建窗体
  6099. _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); } }
  6100. break;
  6101. case "studentStudy":
  6102. _formdiv = new U.UF.UI.form(
  6103. "课程中心",
  6104. $$("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
  6105. "id": "studentStudy",
  6106. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6107. "onresize": function () { }
  6108. }, {
  6109. closecallback: function () { }
  6110. }, { "style": { "height": "36px" } }).form; //创建窗体
  6111. _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); } }
  6112. break;
  6113. case "mindNetwork": //好友打开
  6114. _formdiv = new U.UF.UI.form(
  6115. "思维网格",
  6116. $$("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 }), {
  6117. "id": "mindNetwork",
  6118. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6119. "onresize": function () { }
  6120. }, {
  6121. closecallback: function () { }
  6122. }, { "style": { "height": "36px" } }).form; //创建窗体
  6123. _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); } }
  6124. break;
  6125. case "studentClassRoom": //好友打开
  6126. _formdiv = new U.UF.UI.form(
  6127. "实时课堂",
  6128. $$("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 }), {
  6129. "id": "studentClassRoom",
  6130. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6131. "onresize": function () { }
  6132. }, {
  6133. closecallback: function () { }
  6134. }, { "style": { "height": "36px" } }).form; //创建窗体
  6135. _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); } }
  6136. setTimeout(() => {
  6137. U.UF.F.windowZooming(_formdiv)
  6138. }, 0);
  6139. break;
  6140. }
  6141. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6142. //选择应用处理
  6143. switch (str) {
  6144. case "project": //好友打开
  6145. _formdiv = new U.UF.UI.form(
  6146. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6147. $$("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 }), {
  6148. "id": "project",
  6149. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6150. "onresize": function () { }
  6151. }, {
  6152. closecallback: function () { }
  6153. }, { "style": { "height": "36px" } }).form; //创建窗体
  6154. _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); } }
  6155. break;
  6156. case "student":
  6157. _formdiv = new U.UF.UI.form(
  6158. "学生管理",
  6159. $$("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 }), {
  6160. "id": "student",
  6161. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6162. "onresize": function () { }
  6163. }, {
  6164. closecallback: function () { }
  6165. }, { "style": { "height": "36px" } }).form; //创建窗体
  6166. _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); } }
  6167. break;
  6168. case "evaluate":
  6169. _formdiv = new U.UF.UI.form(
  6170. "学生评价",
  6171. $$("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 }), {
  6172. "id": "evaluate",
  6173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, { "style": { "height": "36px" } }).form; //创建窗体
  6178. _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); } }
  6179. break;
  6180. case "sys":
  6181. _formdiv = new U.UF.UI.form(
  6182. "目标管理",
  6183. $$("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 }), {
  6184. "id": "sys",
  6185. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6186. "onresize": function () { }
  6187. }, {
  6188. closecallback: function () { }
  6189. }, { "style": { "height": "36px" } }).form; //创建窗体
  6190. _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); } }
  6191. break;
  6192. case "courseDesign":
  6193. _formdiv = new U.UF.UI.form(
  6194. "项目设计",
  6195. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6196. "id": "courseDesign",
  6197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6198. "onresize": function () { }
  6199. }, {
  6200. closecallback: function () { }
  6201. }, { "style": { "height": "36px" } }).form; //创建窗体
  6202. _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); } }
  6203. break;
  6204. case "program":
  6205. _formdiv = new U.UF.UI.form(
  6206. "编程平台",
  6207. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6208. "id": "program",
  6209. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6210. "onresize": function () { }
  6211. }, {
  6212. closecallback: function () { }
  6213. }, { "style": { "height": "36px" } }).form; //创建窗体
  6214. _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); } }
  6215. break;
  6216. case "class":
  6217. _formdiv = new U.UF.UI.form(
  6218. "班级管理",
  6219. $$("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 }), {
  6220. "id": "class",
  6221. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6222. "onresize": function () { }
  6223. }, {
  6224. closecallback: function () { }
  6225. }, { "style": { "height": "36px" } }).form; //创建窗体
  6226. _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); } }
  6227. break;
  6228. case "Grade":
  6229. _formdiv = new U.UF.UI.form(
  6230. "年级管理",
  6231. $$("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 }), {
  6232. "id": "Grade",
  6233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6234. "onresize": function () { }
  6235. }, {
  6236. closecallback: function () { }
  6237. }, { "style": { "height": "36px" } }).form; //创建窗体
  6238. _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); } }
  6239. break;
  6240. case "teacherOffice":
  6241. _formdiv = new U.UF.UI.form(
  6242. "教研室",
  6243. $$("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 }), {
  6244. "id": "teacherOffice",
  6245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //创建窗体
  6250. _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); } }
  6251. break;
  6252. case "my":
  6253. _formdiv = new U.UF.UI.form(
  6254. "我的资料",
  6255. $$("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 }), {
  6256. "id": "my",
  6257. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //创建窗体
  6262. _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); } }
  6263. break;
  6264. case "notice":
  6265. _formdiv = new U.UF.UI.form(
  6266. "通知公告",
  6267. $$("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 }), {
  6268. "id": "notice",
  6269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //创建窗体
  6274. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6275. break;
  6276. case "library":
  6277. _formdiv = new U.UF.UI.form(
  6278. "素材库",
  6279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6280. "id": "library",
  6281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //创建窗体
  6286. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6287. break;
  6288. case "whiteboard":
  6289. _formdiv = new U.UF.UI.form(
  6290. "电子白板",
  6291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6292. "id": "whiteboard",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //创建窗体
  6298. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6299. break;
  6300. case "investigation":
  6301. _formdiv = new U.UF.UI.form(
  6302. "问卷调查",
  6303. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6304. "id": "investigation",
  6305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6306. "onresize": function () { }
  6307. }, {
  6308. closecallback: function () { }
  6309. }, { "style": { "height": "36px" } }).form; //创建窗体
  6310. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6311. break;
  6312. case "note":
  6313. _formdiv = new U.UF.UI.form(
  6314. "便签分类",
  6315. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  6316. "id": "note",
  6317. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6318. "onresize": function () { }
  6319. }, {
  6320. closecallback: function () { }
  6321. }, { "style": { "height": "36px" } }).form; //创建窗体
  6322. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6323. break;
  6324. // case "score":
  6325. // _formdiv = new U.UF.UI.form(
  6326. // "量规评分",
  6327. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6328. // "id": "score",
  6329. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6330. // "onresize": function() {}
  6331. // }, {
  6332. // closecallback: function() {}
  6333. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6334. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6335. // break;
  6336. case "mind":
  6337. _formdiv = new U.UF.UI.form(
  6338. "思维导图",
  6339. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6340. "id": "mind",
  6341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6342. "onresize": function () { }
  6343. }, {
  6344. closecallback: function () { }
  6345. }, { "style": { "height": "36px" } }).form; //创建窗体
  6346. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6347. break;
  6348. case "doc":
  6349. // U.MD.D.I.isRoom();
  6350. _formdiv = new U.UF.UI.form(
  6351. "协同文档",
  6352. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6353. "id": "doc",
  6354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6360. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6361. })
  6362. _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); } }
  6363. break;
  6364. case "study":
  6365. _formdiv = new U.UF.UI.form(
  6366. "课程中心",
  6367. $$("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
  6368. "id": "study",
  6369. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6370. "onresize": function () { }
  6371. }, {
  6372. closecallback: function () { }
  6373. }, { "style": { "height": "36px" } }).form; //创建窗体
  6374. _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); } }
  6375. break;
  6376. case "mindNetwork": //好友打开
  6377. _formdiv = new U.UF.UI.form(
  6378. "思维网格",
  6379. $$("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 }), {
  6380. "id": "mindNetwork",
  6381. "style": { "width": "90%", "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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6387. break;
  6388. case "train": //好友打开
  6389. _formdiv = new U.UF.UI.form(
  6390. "训练平台",
  6391. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6392. "id": "mindNetwork",
  6393. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6394. "onresize": function () { }
  6395. }, {
  6396. closecallback: function () { }
  6397. }, { "style": { "height": "36px" } }).form; //创建窗体
  6398. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6399. break;
  6400. case "teacherClassRoom": //好友打开
  6401. _formdiv = new U.UF.UI.form(
  6402. "实时课堂",
  6403. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6404. "id": "teacherClassRoom",
  6405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6406. "onresize": function () { }
  6407. }, {
  6408. closecallback: function () { }
  6409. }, { "style": { "height": "36px" } }).form; //创建窗体
  6410. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6411. setTimeout(() => {
  6412. U.UF.F.windowZooming(_formdiv)
  6413. }, 0);
  6414. break;
  6415. }
  6416. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6417. switch (str) {
  6418. case "project": //好友打开
  6419. _formdiv = new U.UF.UI.form(
  6420. "课程管理",
  6421. $$("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 }), {
  6422. "id": "project",
  6423. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6424. "onresize": function () { }
  6425. }, {
  6426. closecallback: function () { }
  6427. }, { "style": { "height": "36px" } }).form; //创建窗体
  6428. _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); } }
  6429. break;
  6430. case "evaluate":
  6431. _formdiv = new U.UF.UI.form(
  6432. "学生评价",
  6433. $$("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 }), {
  6434. "id": "evaluate",
  6435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6436. "onresize": function () { }
  6437. }, {
  6438. closecallback: function () { }
  6439. }, { "style": { "height": "36px" } }).form; //创建窗体
  6440. _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); } }
  6441. break;
  6442. case "notice":
  6443. _formdiv = new U.UF.UI.form(
  6444. "通知公告",
  6445. $$("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 }), {
  6446. "id": "notice",
  6447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6448. "onresize": function () { }
  6449. }, {
  6450. closecallback: function () { }
  6451. }, { "style": { "height": "36px" } }).form; //创建窗体
  6452. _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); } }
  6453. break;
  6454. case "stuLibrary":
  6455. _formdiv = new U.UF.UI.form(
  6456. "学习资料",
  6457. $$("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 }), {
  6458. "id": "stuLibrary",
  6459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6460. "onresize": function () { }
  6461. }, {
  6462. closecallback: function () { }
  6463. }, { "style": { "height": "36px" } }).form; //创建窗体
  6464. _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); } }
  6465. break;
  6466. case "program":
  6467. _formdiv = new U.UF.UI.form(
  6468. "编程平台",
  6469. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6470. "id": "program",
  6471. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6472. "onresize": function () { }
  6473. }, {
  6474. closecallback: function () { }
  6475. }, { "style": { "height": "36px" } }).form; //创建窗体
  6476. _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); } }
  6477. break;
  6478. case "whiteboard":
  6479. _formdiv = new U.UF.UI.form(
  6480. "电子白板",
  6481. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6482. "id": "whiteboard",
  6483. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6484. "onresize": function () { }
  6485. }, {
  6486. closecallback: function () { }
  6487. }, { "style": { "height": "36px" } }).form; //创建窗体
  6488. _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); } }
  6489. break;
  6490. case "investigation":
  6491. _formdiv = new U.UF.UI.form(
  6492. "问卷调查",
  6493. $$("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 }), {
  6494. "id": "investigation",
  6495. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6496. "onresize": function () { }
  6497. }, {
  6498. closecallback: function () { }
  6499. }, { "style": { "height": "36px" } }).form; //创建窗体
  6500. _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); } }
  6501. break;
  6502. case "mind":
  6503. _formdiv = new U.UF.UI.form(
  6504. "思维导图",
  6505. $$("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"
  6506. "id": "mind",
  6507. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6508. "onresize": function () { }
  6509. }, {
  6510. closecallback: function () { }
  6511. }, { "style": { "height": "36px" } }).form; //创建窗体
  6512. _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); } }
  6513. break;
  6514. case "doc":
  6515. // U.MD.D.I.isRoom();
  6516. _formdiv = new U.UF.UI.form(
  6517. "协同文档",
  6518. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6519. "id": "doc",
  6520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6521. "onresize": function () { }
  6522. }, {
  6523. closecallback: function () { }
  6524. }, { "style": { "height": "36px" } }).form; //创建窗体
  6525. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6526. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6527. })
  6528. _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); } }
  6529. break;
  6530. case "study":
  6531. _formdiv = new U.UF.UI.form(
  6532. "课程中心",
  6533. $$("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
  6534. "id": "study",
  6535. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6536. "onresize": function () { }
  6537. }, {
  6538. closecallback: function () { }
  6539. }, { "style": { "height": "36px" } }).form; //创建窗体
  6540. _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); } }
  6541. break;
  6542. case "mindNetwork": //好友打开
  6543. _formdiv = new U.UF.UI.form(
  6544. "思维网格",
  6545. $$("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 }), {
  6546. "id": "mindNetwork",
  6547. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6548. "onresize": function () { }
  6549. }, {
  6550. closecallback: function () { }
  6551. }, { "style": { "height": "36px" } }).form; //创建窗体
  6552. _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); } }
  6553. break;
  6554. case "train": //好友打开
  6555. _formdiv = new U.UF.UI.form(
  6556. "训练平台",
  6557. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6558. "id": "train",
  6559. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6560. "onresize": function () { }
  6561. }, {
  6562. closecallback: function () { }
  6563. }, { "style": { "height": "36px" } }).form; //创建窗体
  6564. _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); } }
  6565. break;
  6566. case "sys":
  6567. _formdiv = new U.UF.UI.form(
  6568. "目标管理",
  6569. $$("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 }), {
  6570. "id": "sys",
  6571. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6572. "onresize": function () { }
  6573. }, {
  6574. closecallback: function () { }
  6575. }, { "style": { "height": "36px" } }).form; //创建窗体
  6576. _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); } }
  6577. break;
  6578. case "courseDesign":
  6579. _formdiv = new U.UF.UI.form(
  6580. "项目设计",
  6581. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6582. "id": "courseDesign",
  6583. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6584. "onresize": function () { }
  6585. }, {
  6586. closecallback: function () { }
  6587. }, { "style": { "height": "36px" } }).form; //创建窗体
  6588. _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); } }
  6589. break;
  6590. }
  6591. } else if (!_type) {
  6592. switch (str) {
  6593. case "my":
  6594. _formdiv = new U.UF.UI.form(
  6595. "我的资料",
  6596. $$("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 }), {
  6597. "id": "my",
  6598. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6599. "onresize": function () { }
  6600. }, {
  6601. closecallback: function () { }
  6602. }, { "style": { "height": "36px" } }).form; //创建窗体
  6603. _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); } }
  6604. break;
  6605. }
  6606. }
  6607. switch (str) {
  6608. // AIprogram2 AI体验 aihub.cocorobo.cn
  6609. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6610. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6611. case "formulaEdi": //公式编辑
  6612. _formdiv = new U.UF.UI.form(
  6613. "公式编辑",
  6614. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6615. "id": "formulaEdi",
  6616. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6617. "onresize": function () { }
  6618. }, {
  6619. closecallback: function () { }
  6620. }, { "style": { "height": "36px" } }).form; //创建窗体
  6621. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6622. break;
  6623. case "molStr": //分子结构
  6624. _formdiv = new U.UF.UI.form(
  6625. "分子结构",
  6626. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6627. "id": "molStr",
  6628. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _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); } }
  6634. break;
  6635. case "timeAxis": //时间轴
  6636. _formdiv = new U.UF.UI.form(
  6637. "时间轴",
  6638. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6639. "id": "timeAxis",
  6640. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6641. "onresize": function () { }
  6642. }, {
  6643. closecallback: function () { }
  6644. }, { "style": { "height": "36px" } }).form; //创建窗体
  6645. _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); } }
  6646. break;
  6647. case "AIprogram2": //AI体验
  6648. _formdiv = new U.UF.UI.form(
  6649. "AI体验",
  6650. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6651. "id": "AIprogram2",
  6652. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6653. "onresize": function () { }
  6654. }, {
  6655. closecallback: function () { }
  6656. }, { "style": { "height": "36px" } }).form; //创建窗体
  6657. _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); } }
  6658. break;
  6659. case "Pythonprogram": //python编程
  6660. _formdiv = new U.UF.UI.form(
  6661. "Python编程",
  6662. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6663. "id": "Pythonprogram",
  6664. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6665. "onresize": function () { }
  6666. }, {
  6667. closecallback: function () { }
  6668. }, { "style": { "height": "36px" } }).form; //创建窗体
  6669. _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); } }
  6670. break;
  6671. case "AIprogram": //ai编程
  6672. _formdiv = new U.UF.UI.form(
  6673. "AI编程平台",
  6674. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6675. "id": "AIprogram",
  6676. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, { "style": { "height": "36px" } }).form; //创建窗体
  6681. _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); } }
  6682. break;
  6683. case "CocoPi": //CocoPi
  6684. _formdiv = new U.UF.UI.form(
  6685. "CocoPi",
  6686. $$("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" }), {
  6687. "id": "CocoPi",
  6688. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _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); } }
  6694. break;
  6695. case "Wood": //Wood
  6696. _formdiv = new U.UF.UI.form(
  6697. "海龟编程",
  6698. $$("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/" }), {
  6699. "id": "Wood",
  6700. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _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); } }
  6706. break;
  6707. case "car": //模拟驾驶
  6708. _formdiv = new U.UF.UI.form(
  6709. "模拟驾驶",
  6710. $$("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/" }), {
  6711. "id": "car",
  6712. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //创建窗体
  6717. _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); } }
  6718. break;
  6719. case "lineSearch": //路径搜索
  6720. _formdiv = new U.UF.UI.form(
  6721. "路径搜索",
  6722. $$("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/" }), {
  6723. "id": "lineSearch",
  6724. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //创建窗体
  6729. _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); } }
  6730. break;
  6731. case "deepLearning": //深度学习
  6732. _formdiv = new U.UF.UI.form(
  6733. "深度学习",
  6734. $$("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/#" }), {
  6735. "id": "deepLearning",
  6736. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //创建窗体
  6741. _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); } }
  6742. break;
  6743. case "allHistory": //深度学习
  6744. _formdiv = new U.UF.UI.form(
  6745. "全历史",
  6746. $$("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/" }), {
  6747. "id": "allHistory",
  6748. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, { "style": { "height": "36px" } }).form; //创建窗体
  6753. _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); } }
  6754. break;
  6755. case "chatPDF": //ai编程
  6756. _formdiv = new U.UF.UI.form(
  6757. "chatPDF",
  6758. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6759. "id": "chatPDF",
  6760. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //创建窗体
  6765. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6766. break;
  6767. case "resources": //国家教育
  6768. _formdiv = new U.UF.UI.form(
  6769. "国家教育",
  6770. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6771. "id": "resources",
  6772. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () { }
  6776. }, { "style": { "height": "36px" } }).form; //创建窗体
  6777. _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); } }
  6778. break;
  6779. case "codeEdit": //源码编辑
  6780. _formdiv = new U.UF.UI.form(
  6781. "源码编辑",
  6782. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6783. "id": "codeEdit",
  6784. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, { "style": { "height": "36px" } }).form; //创建窗体
  6789. _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); } }
  6790. break; //
  6791. case "MindMap": //MindMap
  6792. _formdiv = new U.UF.UI.form(
  6793. "MindMap",
  6794. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6795. "id": "MindMap",
  6796. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, { "style": { "height": "36px" } }).form; //创建窗体
  6801. _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); } }
  6802. break;
  6803. case "netWorkPanel": //netWorkPanel
  6804. _formdiv = new U.UF.UI.form(
  6805. "netWorkPanel",
  6806. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6807. "id": "netWorkPanel",
  6808. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6809. "onresize": function () { }
  6810. }, {
  6811. closecallback: function () { }
  6812. }, { "style": { "height": "36px" } }).form; //创建窗体
  6813. _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); } }
  6814. break;
  6815. case "GeoGebra": //GeoGebra
  6816. _formdiv = new U.UF.UI.form(
  6817. "GeoGebra",
  6818. $$("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" }), {
  6819. "id": "GeoGebra",
  6820. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //创建窗体
  6825. _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); } }
  6826. break;
  6827. case "translation": //翻译
  6828. _formdiv = new U.UF.UI.form(
  6829. "翻译",
  6830. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6831. "id": "translation",
  6832. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //创建窗体
  6837. _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); } }
  6838. break;
  6839. case "mohe": //魔盒
  6840. _formdiv = new U.UF.UI.form(
  6841. "魔盒识字",
  6842. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6843. "id": "mohe",
  6844. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //创建窗体
  6849. _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); } }
  6850. break;
  6851. case "24game": //24点
  6852. _formdiv = new U.UF.UI.form(
  6853. "24点",
  6854. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6855. "id": "24game",
  6856. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //创建窗体
  6861. _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); } }
  6862. break;
  6863. case "case":
  6864. _formdiv = new U.UF.UI.form(
  6865. "课程进展",
  6866. $$("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 }), {
  6867. "id": "case",
  6868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. closecallback: function () { }
  6872. }, { "style": { "height": "36px" } }).form; //创建窗体
  6873. _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); } }
  6874. break;
  6875. case "snf":
  6876. _formdiv = new U.UF.UI.form(
  6877. "赛诺梵",
  6878. $$("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" }), {
  6879. "id": "snf",
  6880. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6881. "onresize": function () { }
  6882. }, {
  6883. closecallback: function () { }
  6884. }, { "style": { "height": "36px" } }).form; //创建窗体
  6885. _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); } }
  6886. break;
  6887. case "hanFamily":
  6888. _formdiv = new U.UF.UI.form(
  6889. "汉字家族",
  6890. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6891. "id": "hanFamily",
  6892. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6893. "onresize": function () { }
  6894. }, {
  6895. closecallback: function () { }
  6896. }, { "style": { "height": "36px" } }).form; //创建窗体
  6897. _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); } }
  6898. break;
  6899. case "hanClassics":
  6900. _formdiv = new U.UF.UI.form(
  6901. "国学经典",
  6902. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6903. "id": "hanClassics",
  6904. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6905. "onresize": function () { }
  6906. }, {
  6907. closecallback: function () { }
  6908. }, { "style": { "height": "36px" } }).form; //创建窗体
  6909. _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); } }
  6910. break;
  6911. case "hanTraining":
  6912. _formdiv = new U.UF.UI.form(
  6913. "笔画训练",
  6914. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6915. "id": "hanTraining",
  6916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6917. "onresize": function () { }
  6918. }, {
  6919. closecallback: function () { }
  6920. }, { "style": { "height": "36px" } }).form; //创建窗体
  6921. _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); } }
  6922. break;
  6923. case "hanClass":
  6924. _formdiv = new U.UF.UI.form(
  6925. "书法课堂",
  6926. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6927. "id": "hanClass",
  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/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6934. break;
  6935. case "han":
  6936. _formdiv = new U.UF.UI.form(
  6937. "汉字宫",
  6938. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6939. "id": "han",
  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/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6946. break;
  6947. case "projectGM": //课程管理
  6948. _formdiv = new U.UF.UI.form(
  6949. "课程管理",
  6950. $$("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 }), {
  6951. "id": "projectGM",
  6952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6953. "onresize": function () { }
  6954. }, {
  6955. closecallback: function () { }
  6956. }, { "style": { "height": "36px" } }).form; //创建窗体
  6957. _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); } }
  6958. break;
  6959. case "studyGM": //课程中心
  6960. _formdiv = new U.UF.UI.form(
  6961. "课程中心",
  6962. $$("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
  6963. "id": "study",
  6964. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6965. "onresize": function () { }
  6966. }, {
  6967. closecallback: function () { }
  6968. }, { "style": { "height": "36px" } }).form; //创建窗体
  6969. _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); } }
  6970. break;
  6971. // studentGM
  6972. case "studentGM": //学生管理
  6973. _formdiv = new U.UF.UI.form(
  6974. "学生管理",
  6975. $$("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 }), {
  6976. "id": "studentGM",
  6977. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6978. "onresize": function () { }
  6979. }, {
  6980. closecallback: function () { }
  6981. }, { "style": { "height": "36px" } }).form; //创建窗体
  6982. _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); } }
  6983. break;
  6984. case "evaluateGM": //学生评价
  6985. _formdiv = new U.UF.UI.form(
  6986. "学生评价",
  6987. $$("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 }), {
  6988. "id": "evaluateGM",
  6989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6990. "onresize": function () { }
  6991. }, {
  6992. closecallback: function () { }
  6993. }, { "style": { "height": "36px" } }).form; //创建窗体
  6994. _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); } }
  6995. break;
  6996. // classGM
  6997. case "classGM": //班级管理
  6998. _formdiv = new U.UF.UI.form(
  6999. "班级管理",
  7000. $$("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 }), {
  7001. "id": "classGM",
  7002. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7003. "onresize": function () { }
  7004. }, {
  7005. closecallback: function () { }
  7006. }, { "style": { "height": "36px" } }).form; //创建窗体
  7007. _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); } }
  7008. break;
  7009. // dataGM
  7010. case "dataGM":
  7011. _formdiv = new U.UF.UI.form(
  7012. "我的资料",
  7013. $$("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 }), {
  7014. "id": "dataGM",
  7015. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7016. "onresize": function () { }
  7017. }, {
  7018. closecallback: function () { }
  7019. }, { "style": { "height": "36px" } }).form; //创建窗体
  7020. _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); } }
  7021. break;
  7022. // caseGM
  7023. case "caseGM": //课程进展
  7024. _formdiv = new U.UF.UI.form(
  7025. "课程进展",
  7026. $$("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 }), {
  7027. "id": "caseGM",
  7028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7029. "onresize": function () { }
  7030. }, {
  7031. closecallback: function () { }
  7032. }, { "style": { "height": "36px" } }).form; //创建窗体
  7033. _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); } }
  7034. break;
  7035. // meterialGM
  7036. case "meterialGM": //素材库
  7037. _formdiv = new U.UF.UI.form(
  7038. "素材库",
  7039. $$("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 }), {
  7040. "id": "meterialGM",
  7041. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7042. "onresize": function () { }
  7043. }, {
  7044. closecallback: function () { }
  7045. }, { "style": { "height": "36px" } }).form; //创建窗体
  7046. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7047. break;
  7048. // evaluateSGM
  7049. case "evaluateSGM": //我的评价
  7050. _formdiv = new U.UF.UI.form(
  7051. "我的评价",
  7052. $$("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 }), {
  7053. "id": "evaluateSGM",
  7054. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7055. "onresize": function () { }
  7056. }, {
  7057. closecallback: function () { }
  7058. }, { "style": { "height": "36px" } }).form; //创建窗体
  7059. _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); } }
  7060. break;
  7061. case "jupyter": //jupyter
  7062. _formdiv = new U.UF.UI.form(
  7063. "jupyter",
  7064. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7065. "id": "jupyter",
  7066. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7067. "onresize": function () { }
  7068. }, {
  7069. closecallback: function () { }
  7070. }, { "style": { "height": "36px" } }).form; //创建窗体
  7071. _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); } }
  7072. break;
  7073. case "number": //数字实验室
  7074. _formdiv = new U.UF.UI.form(
  7075. "数字实验室",
  7076. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7077. "id": "number",
  7078. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7079. "onresize": function () { }
  7080. }, {
  7081. closecallback: function () { }
  7082. }, { "style": { "height": "36px" } }).form; //创建窗体
  7083. _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); } }
  7084. break;
  7085. case "studentCourse": //项目管理 学生
  7086. _formdiv = new U.UF.UI.form(
  7087. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7088. $$("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 }), {
  7089. "id": "studentCourse",
  7090. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7091. "onresize": function () { }
  7092. }, {
  7093. closecallback: function () { }
  7094. }, { "style": { "height": "36px" } }).form; //创建窗体
  7095. _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); } }
  7096. break;
  7097. case "studentCourseS": //项目管理 老师
  7098. _formdiv = new U.UF.UI.form(
  7099. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7100. $$("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 }), {
  7101. "id": "studentCourseS",
  7102. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7103. "onresize": function () { }
  7104. }, {
  7105. closecallback: function () { }
  7106. }, { "style": { "height": "36px" } }).form; //创建窗体
  7107. _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); } }
  7108. break;
  7109. case "studentIndex": //项目中心
  7110. _formdiv = new U.UF.UI.form(
  7111. "项目中心",
  7112. $$("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 }), {
  7113. "id": "studentIndex",
  7114. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7115. "onresize": function () { }
  7116. }, {
  7117. closecallback: function () { }
  7118. }, { "style": { "height": "36px" } }).form; //创建窗体
  7119. _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); } }
  7120. break;
  7121. case "CaseDesignS":
  7122. _formdiv = new U.UF.UI.form(
  7123. "项目进展",
  7124. $$("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 }), {
  7125. "id": "case",
  7126. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7127. "onresize": function () { }
  7128. }, {
  7129. closecallback: function () { }
  7130. }, { "style": { "height": "36px" } }).form; //创建窗体
  7131. _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); } }
  7132. break;
  7133. case "tcStudent": //腾讯学生管理
  7134. _formdiv = new U.UF.UI.form(
  7135. "学生管理",
  7136. $$("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 }), {
  7137. "id": "tcStudent",
  7138. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7139. "onresize": function () { }
  7140. }, {
  7141. closecallback: function () { }
  7142. }, { "style": { "height": "36px" } }).form; //创建窗体
  7143. _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); } }
  7144. break;
  7145. case "tcSchool": //腾讯学校管理
  7146. _formdiv = new U.UF.UI.form(
  7147. "学校管理",
  7148. $$("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 }), {
  7149. "id": "tcSchool",
  7150. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7151. "onresize": function () { }
  7152. }, {
  7153. closecallback: function () { }
  7154. }, { "style": { "height": "36px" } }).form; //创建窗体
  7155. _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); } }
  7156. break;
  7157. case "tcTeacher": //腾讯学校管理
  7158. _formdiv = new U.UF.UI.form(
  7159. "教师管理",
  7160. $$("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 }), {
  7161. "id": "tcTeacher",
  7162. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7163. "onresize": function () { }
  7164. }, {
  7165. closecallback: function () { }
  7166. }, { "style": { "height": "36px" } }).form; //创建窗体
  7167. _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); } }
  7168. break;
  7169. case "teacher":
  7170. _formdiv = new U.UF.UI.form(
  7171. "教师管理",
  7172. $$("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 }), {
  7173. "id": "teacher",
  7174. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, { "style": { "height": "36px" } }).form; //创建窗体
  7179. _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); } }
  7180. break;
  7181. case "tcData": //腾讯我的资料
  7182. _formdiv = new U.UF.UI.form(
  7183. "我的资料",
  7184. $$("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 }), {
  7185. "id": "tcData",
  7186. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7187. "onresize": function () { }
  7188. }, {
  7189. closecallback: function () { }
  7190. }, { "style": { "height": "36px" } }).form; //创建窗体
  7191. _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); } }
  7192. break;
  7193. case "tcNotice": //腾讯消息通知
  7194. _formdiv = new U.UF.UI.form(
  7195. "消息通知",
  7196. $$("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 }), {
  7197. "id": "tcNotice",
  7198. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, { "style": { "height": "36px" } }).form; //创建窗体
  7203. _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); } }
  7204. break;
  7205. case "myReport": //好友打开
  7206. _formdiv = new U.UF.UI.form(
  7207. "我的评价",
  7208. $$("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 }), {
  7209. "id": "myReport",
  7210. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7211. "onresize": function () { }
  7212. }, {
  7213. closecallback: function () { }
  7214. }, { "style": { "height": "36px" } }).form; //创建窗体
  7215. _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); } }
  7216. break;
  7217. case "learnAna": //好友打开
  7218. _formdiv = new U.UF.UI.form(
  7219. "学习分析",
  7220. $$("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 }), {
  7221. "id": "learnAna",
  7222. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7223. "onresize": function () { }
  7224. }, {
  7225. closecallback: function () { }
  7226. }, { "style": { "height": "36px" } }).form; //创建窗体
  7227. _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); } }
  7228. break;
  7229. case "AIChat": //AI共创
  7230. _formdiv = new U.UF.UI.form(
  7231. "AI共创",
  7232. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7233. "id": "AIChat",
  7234. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7235. "onresize": function () { }
  7236. }, {
  7237. istop: true,
  7238. closecallback: function () { $("#aichat_icon").remove(); },
  7239. narrowcallback: function () {
  7240. if (!$("#aichat_icon")[0]) {
  7241. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7242. }
  7243. },
  7244. }, { "style": { "height": "36px" } }).form; //创建窗体
  7245. _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); } }
  7246. break;
  7247. case "ainew": //AI共创
  7248. _formdiv = new U.UF.UI.form(
  7249. "AI协同",
  7250. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7251. "id": "ainew",
  7252. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7253. "onresize": function () { }
  7254. }, {
  7255. closecallback: function () { }
  7256. }, { "style": { "height": "36px" } }).form; //创建窗体
  7257. _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); } }
  7258. break;
  7259. case "gpt4": //gpt4
  7260. _formdiv = new U.UF.UI.form(
  7261. "AI助手",
  7262. $$("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 }), {
  7263. "id": "gpt4",
  7264. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7265. "onresize": function () { }
  7266. }, {
  7267. closecallback: function () { }
  7268. }, { "style": { "height": "36px" } }).form; //创建窗体
  7269. _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); } }
  7270. break;
  7271. case "aigpt": //gpt4
  7272. _formdiv = new U.UF.UI.form(
  7273. "AI助手+",
  7274. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7275. "id": "aigpt",
  7276. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7277. "onresize": function () { }
  7278. }, {
  7279. closecallback: function () {
  7280. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7281. }
  7282. }, { "style": { "height": "36px" } }).form; //创建窗体
  7283. _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); } }
  7284. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7285. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7286. })
  7287. break;
  7288. case "aiKnowledge": //aiKnowledge
  7289. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7290. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7291. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7292. }
  7293. _formdiv = new U.UF.UI.form(
  7294. "知识建构",
  7295. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7296. "id": "aiKnowledge",
  7297. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7298. "onresize": function () { }
  7299. }, {
  7300. closecallback: function () { }
  7301. }, { "style": { "height": "36px" } }).form; //创建窗体
  7302. _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); } }
  7303. break;
  7304. case "futureClass": //AI共创
  7305. _formdiv = new U.UF.UI.form(
  7306. "协同建构",
  7307. $$("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
  7308. "id": "synergyCourse",
  7309. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7310. "onresize": function () { }
  7311. }, {
  7312. closecallback: function () {
  7313. $("iframe", _formdiv)[0].contentWindow.loginout();
  7314. }
  7315. }, { "style": { "height": "36px" } }).form; //创建窗体
  7316. _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); } }
  7317. break;
  7318. case "aiagent": //ai agent
  7319. _formdiv = new U.UF.UI.form(
  7320. "AI Agent",
  7321. $$("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" }), {
  7322. "id": "AIAgent",
  7323. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7324. "onresize": function () { }
  7325. }, {
  7326. closecallback: function () { }
  7327. }, { "style": { "height": "36px" } }).form; //创建窗体
  7328. _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); } }
  7329. break;
  7330. case "dataBoard": //数据看板
  7331. _formdiv = new U.UF.UI.form(
  7332. "数据看板",
  7333. $$("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 }), {
  7334. "id": "dataBoard",
  7335. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7336. "onresize": function () { }
  7337. }, {
  7338. closecallback: function () { }
  7339. }, { "style": { "height": "36px" } }).form; //创建窗体
  7340. _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); } }
  7341. break;
  7342. case "dataBoardSies": //数据融合
  7343. _formdiv = new U.UF.UI.form(
  7344. "数据融合",
  7345. $$("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 }), {
  7346. "id": "dataBoardSies",
  7347. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7348. "onresize": function () { }
  7349. }, {
  7350. closecallback: function () { }
  7351. }, { "style": { "height": "36px" } }).form; //创建窗体
  7352. _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); } }
  7353. break;
  7354. case "dataBoardNew": //数据看板
  7355. _formdiv = new U.UF.UI.form(
  7356. "综合看板",
  7357. $$("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 }), {
  7358. "id": "dataBoardNew",
  7359. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7360. "onresize": function () { }
  7361. }, {
  7362. closecallback: function () { }
  7363. }, { "style": { "height": "36px" } }).form; //创建窗体
  7364. _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); } }
  7365. break;
  7366. case "dataBoardTest": //数据看板
  7367. _formdiv = new U.UF.UI.form(
  7368. "评测看板",
  7369. $$("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 }), {
  7370. "id": "dataBoardTest",
  7371. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7372. "onresize": function () { }
  7373. }, {
  7374. closecallback: function () { }
  7375. }, { "style": { "height": "36px" } }).form; //创建窗体
  7376. _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); } }
  7377. break;
  7378. case "AIAnalyse": //AI共创
  7379. _formdiv = new U.UF.UI.form(
  7380. "AI分析",
  7381. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7382. "id": "AIAnalyse",
  7383. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7384. "onresize": function () { }
  7385. }, {
  7386. closecallback: function () { }
  7387. }, { "style": { "height": "36px" } }).form; //创建窗体
  7388. _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); } }
  7389. break;
  7390. case "studioCourse": //AI共创
  7391. _formdiv = new U.UF.UI.form(
  7392. "工作管理",
  7393. $$("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 }), {
  7394. "id": "studioCourse",
  7395. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7396. "onresize": function () { }
  7397. }, {
  7398. closecallback: function () { }
  7399. }, { "style": { "height": "36px" } }).form; //创建窗体
  7400. _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); } }
  7401. break;
  7402. case "studioIndex": //AI共创
  7403. _formdiv = new U.UF.UI.form(
  7404. "工作中心",
  7405. $$("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 }), {
  7406. "id": "studioIndex",
  7407. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7408. "onresize": function () { }
  7409. }, {
  7410. closecallback: function () { }
  7411. }, { "style": { "height": "36px" } }).form; //创建窗体
  7412. _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); } }
  7413. break;
  7414. case "source":
  7415. _formdiv = new U.UF.UI.form(
  7416. "教学资源",
  7417. $$("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 }), {
  7418. "id": "source",
  7419. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7420. "onresize": function () { }
  7421. }, {
  7422. closecallback: function () { }
  7423. }, { "style": { "height": "36px" } }).form; //创建窗体
  7424. _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); } }
  7425. break;
  7426. case "testTeacher":
  7427. _formdiv = new U.UF.UI.form(
  7428. "智能表单",
  7429. $$("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 }), {
  7430. "id": "testTeacher",
  7431. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7432. "onresize": function () { }
  7433. }, {
  7434. closecallback: function () { }
  7435. }, { "style": { "height": "36px" } }).form; //创建窗体
  7436. _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); } }
  7437. break;
  7438. case "testStudent":
  7439. _formdiv = new U.UF.UI.form(
  7440. "教师中心",
  7441. $$("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 }), {
  7442. "id": "testStudent",
  7443. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7444. "onresize": function () { }
  7445. }, {
  7446. closecallback: function () { }
  7447. }, { "style": { "height": "36px" } }).form; //创建窗体
  7448. _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); } }
  7449. break;
  7450. case "testTeacherSies":
  7451. _formdiv = new U.UF.UI.form(
  7452. "教师管理",
  7453. $$("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 }), {
  7454. "id": "testTeacherSies",
  7455. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7456. "onresize": function () { }
  7457. }, {
  7458. closecallback: function () { }
  7459. }, { "style": { "height": "36px" } }).form; //创建窗体
  7460. _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); } }
  7461. break;
  7462. case "testStudentSies":
  7463. _formdiv = new U.UF.UI.form(
  7464. "教师中心",
  7465. $$("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 }), {
  7466. "id": "testStudentSies",
  7467. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7468. "onresize": function () { }
  7469. }, {
  7470. closecallback: function () { }
  7471. }, { "style": { "height": "36px" } }).form; //创建窗体
  7472. _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); } }
  7473. break;
  7474. case "ytpbl": //消息通知
  7475. _formdiv = new U.UF.UI.form(
  7476. "案例征集",
  7477. $$("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 }), {
  7478. "id": "ytpbl",
  7479. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7480. "onresize": function () { }
  7481. }, {
  7482. closecallback: function () { }
  7483. }, { "style": { "height": "36px" } }).form; //创建窗体
  7484. _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); } }
  7485. // 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");
  7486. break;
  7487. case "aiCourseResource": //人工智能窗体
  7488. _formdiv = new U.UF.UI.form(
  7489. false,
  7490. $$("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 }), {
  7491. "id": "aiCourseResource",
  7492. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7493. "onresize": function () { },
  7494. "isdrag": false,
  7495. }, {
  7496. closecallback: function () { }
  7497. }, { "style": { "height": "36px" } }).form; //创建窗体
  7498. _taskbar = ''
  7499. break;
  7500. case "szdjgCocooroboX": //图形化编程
  7501. _formdiv = new U.UF.UI.form(
  7502. "图形化编程",
  7503. $$("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" }), {
  7504. "id": "szdjgCocooroboX",
  7505. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7506. "onresize": function () { }
  7507. }, {
  7508. closecallback: function () { }
  7509. }, { "style": { "height": "36px" } }).form; //创建窗体
  7510. _taskbar = ''
  7511. break;
  7512. case "szdjgPython": //python编程
  7513. _formdiv = new U.UF.UI.form(
  7514. "Python编程",
  7515. $$("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" }), {
  7516. "id": "szdjgPython",
  7517. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7518. "onresize": function () { }
  7519. }, {
  7520. closecallback: function () { }
  7521. }, { "style": { "height": "36px" } }).form; //创建窗体
  7522. _taskbar = ''
  7523. break;
  7524. case "Record":
  7525. _formdiv = new U.UF.UI.form(
  7526. "观察记录",
  7527. $$("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 }), {
  7528. "id": "Record",
  7529. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7530. "onresize": function () { }
  7531. }, {
  7532. closecallback: function () { }
  7533. }, { "style": { "height": "36px" } }).form; //创建窗体
  7534. _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); } }
  7535. break;
  7536. case "aigptCourse":
  7537. _formdiv = new U.UF.UI.form(
  7538. "AI智能体",
  7539. $$("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' }), {
  7540. "id": "aigptCourse",
  7541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7542. "onresize": function () { }
  7543. }, {
  7544. closecallback: function () { }
  7545. }, { "style": { "height": "36px" } }).form; //创建窗体
  7546. _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); } }
  7547. break;
  7548. case "classroomObservation":
  7549. _formdiv = new U.UF.UI.form(
  7550. "课堂观察",
  7551. $$("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 }), {
  7552. "id": "classroomObservation",
  7553. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7554. "onresize": function () { }
  7555. }, {
  7556. closecallback: function () { }
  7557. }, { "style": { "height": "36px" } }).form; //创建窗体
  7558. _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); } }
  7559. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7560. break;
  7561. case "pblCourse":
  7562. _formdiv = new U.UF.UI.form(
  7563. "学生PBL",
  7564. $$("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 }), {
  7565. "id": "pblCourse",
  7566. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7567. "onresize": function () { }
  7568. }, {
  7569. closecallback: function () { }
  7570. }, { "style": { "height": "36px" } }).form; //创建窗体
  7571. _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); } }
  7572. break;
  7573. case "appStore":
  7574. U.MD.D.addOp('','cocoflowOpen','')
  7575. _formdiv = new U.UF.UI.form(
  7576. "CocoFlow",
  7577. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7578. "id": "appStore",
  7579. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7580. "onresize": function () { }
  7581. }, {
  7582. closecallback: function () { }
  7583. }, { "style": { "height": "36px" } }).form; //创建窗体
  7584. _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); } }
  7585. break;
  7586. case "sassPlatform":
  7587. _formdiv = new U.UF.UI.form(
  7588. "Sass通用后台管理",
  7589. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7590. "id": "sassPlatform",
  7591. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7592. "onresize": function () { }
  7593. }, {
  7594. closecallback: function () { }
  7595. }, { "style": { "height": "36px" } }).form; //创建窗体
  7596. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7597. break;
  7598. case "EDU":
  7599. _formdiv = new U.UF.UI.form(
  7600. "EDU",
  7601. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7602. "id": "EDU",
  7603. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7604. "onresize": function () { }
  7605. }, {
  7606. closecallback: function () { }
  7607. }, { "style": { "height": "36px" } }).form; //创建窗体
  7608. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7609. break;
  7610. case "knowledge":
  7611. _formdiv = new U.UF.UI.form(
  7612. "知识库",
  7613. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7614. "id": "knowledge",
  7615. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7616. "onresize": function () { }
  7617. }, {
  7618. closecallback: function () { }
  7619. }, { "style": { "height": "36px" } }).form; //创建窗体
  7620. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7621. break;
  7622. case "userExamine":
  7623. _formdiv = new U.UF.UI.form(
  7624. "账号申请",
  7625. $$("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" }), {
  7626. "id": "userExamine",
  7627. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7628. "onresize": function () { }
  7629. }, {
  7630. closecallback: function () { }
  7631. }, { "style": { "height": "36px" } }).form; //创建窗体
  7632. break;
  7633. case "cocoflowDeskTop": //cocoflowDeskTop
  7634. _formdiv = new U.UF.UI.form(
  7635. false,
  7636. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7637. "id": "cocoflowDeskTop",
  7638. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7639. "onresize": function () { },
  7640. }, {
  7641. closecallback: function () { },
  7642. "isdrag": false,
  7643. }, { "style": { "height": "36px" } }).form; //创建窗体
  7644. _taskbar = ''
  7645. break;
  7646. case "liyuanLogin": //liyuanLogin
  7647. _formdiv = new U.UF.UI.form(
  7648. false,
  7649. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7650. "id": "liyuanLogin",
  7651. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7652. "onresize": function () { },
  7653. }, {
  7654. closecallback: function () { },
  7655. isdrag: false,
  7656. isstretching: false,
  7657. isenlarge: false,
  7658. isnarrow: false
  7659. }, { "style": { "height": "36px" } }).form; //创建窗体
  7660. _taskbar = ''
  7661. break;
  7662. case "updatePaDialog":
  7663. _formdiv = new U.UF.UI.form(
  7664. "密码修改",
  7665. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  7666. "id": "updatePaDialog",
  7667. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7668. "onresize": function () { },
  7669. }, {
  7670. closecallback: function () { },
  7671. isclose: false,
  7672. isdrag: false,
  7673. isstretching: false,
  7674. isenlarge: false,
  7675. isnarrow: false
  7676. }, { "style": { "height": "36px" } }).form; //创建窗体
  7677. break;
  7678. }
  7679. //U.MD.D.I.openClick(str);
  7680. //如果有任务栏信息
  7681. if (_taskbar) {
  7682. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7683. }
  7684. if(iframeBool){
  7685. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7686. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7687. // console.log("iframe进入");
  7688. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7689. // };
  7690. setTimeout(() => {
  7691. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7692. }, 2000);
  7693. }
  7694. }
  7695. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7696. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7697. _userinfo = US.userInfo, //登录用户信息
  7698. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7699. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7700. let iframeBool = true;
  7701. let queryString = ''
  7702. if(array && array.length){
  7703. const paramsMap = {
  7704. userid: _userid,
  7705. org: _org,
  7706. oid: _oid,
  7707. type: _type,
  7708. role: _role,
  7709. classId: _classId,
  7710. TscreenType: _TscreenType,
  7711. SscreenType: _SscreenType
  7712. };
  7713. const canshu = array
  7714. .filter(param => paramsMap[param] !== undefined)
  7715. .map(param => `${param}=${paramsMap[param]}`);
  7716. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7717. }
  7718. let _url = url + queryString
  7719. if(U.UF.UI.form.allForm[id]){
  7720. iframeBool = false
  7721. }
  7722. _formdiv = new U.UF.UI.form(
  7723. false,
  7724. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }),
  7725. {
  7726. "id": id,
  7727. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7728. "onresize": function () { },
  7729. },
  7730. {
  7731. closecallback: function () { },
  7732. isdrag: false,
  7733. isstretching: false,
  7734. isenlarge: false,
  7735. isnarrow: false
  7736. },
  7737. { "style": { "height": "36px" } },
  7738. undefined,
  7739. undefined,
  7740. dom
  7741. ).form
  7742. }
  7743. // U.MD.D.I.openClick = function(str){
  7744. // var click = '';
  7745. // switch(str){
  7746. // case 'friend':
  7747. // click = '我的好友';
  7748. // break;
  7749. // case 'domain':
  7750. // click = '域名管理';
  7751. // break;
  7752. // case 'disk':
  7753. // click = '我的云盘';
  7754. // break;
  7755. // case 'word':
  7756. // click = 'Word';
  7757. // break;
  7758. // case 'excel':
  7759. // click = 'Execl';
  7760. // break;
  7761. // case 'txt':
  7762. // click = '文本文件';
  7763. // break;
  7764. // case 'lookupFriend':
  7765. // click = '查找好友';
  7766. // break;
  7767. // case 'ftp':
  7768. // click = 'FTP';
  7769. // break;
  7770. // case 'group':
  7771. // click = '群组';
  7772. // break;
  7773. // case 'set':
  7774. // click = '我的设置';
  7775. // break;
  7776. // case 'systemSet':
  7777. // click = '系统设置';
  7778. // break;
  7779. // case 'boomYun':
  7780. // click = '互联办公';
  7781. // break;
  7782. // case 'xz':
  7783. // click = '云端下载';
  7784. // break;
  7785. // case 'client':
  7786. // click = '有思浏览器';
  7787. // break;
  7788. // case 'backEndProgramming':
  7789. // click = '在线后台编程';
  7790. // break;
  7791. // case 'frontEndProgramming':
  7792. // click = '在线前端编程';
  7793. // break;
  7794. // default: break;
  7795. // }
  7796. // if(U.MD.D.I.Ip && click){
  7797. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7798. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7799. // })
  7800. // }
  7801. // }
  7802. /**
  7803. *函数作用:ajax简易函数,使用post格式
  7804. *@param url {data} 后台地址
  7805. *@param data {data} 参数json
  7806. *@param fn {data} 回调函数
  7807. *
  7808. */
  7809. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7810. // var xhr = new XMLHttpRequest();
  7811. // xhr.open("GET",url,true);
  7812. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7813. // xhr.onreadystatechange = function(){
  7814. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7815. // fn.call(this,xhr.responseText);
  7816. // }
  7817. // };
  7818. // xhr.send();
  7819. // }
  7820. /*判断是否是内网IP*/
  7821. // U.MD.D.I.isInnerIPFn = function(str){
  7822. // var curPageUrl = str;
  7823. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7824. // curPageUrl =curPageUrl.replace(reg1,'');
  7825. // // console.log('curPageUrl-1 '+curPageUrl);
  7826. // var reg2 = /\:+/g;//替换冒号为一点
  7827. // curPageUrl =curPageUrl.replace(reg2,'.');
  7828. // // console.log('curPageUrl-2 '+curPageUrl);
  7829. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7830. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7831. // if(curPageUrl[2] != '16'){
  7832. // return ipAddress;
  7833. // }else{
  7834. // return false;
  7835. // }
  7836. // }
  7837. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7838. // //compatibility for firefox and chrome
  7839. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7840. // var pc = new myPeerConnection({
  7841. // iceServers: []
  7842. // }),
  7843. // noop = function() {},
  7844. // localIPs = {},
  7845. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7846. // key;
  7847. // function iterateIP(ip) {
  7848. // if (!localIPs[ip]) onNewIP(ip);
  7849. // localIPs[ip] = true;
  7850. // }
  7851. // //create a bogus data channel
  7852. // pc.createDataChannel("");
  7853. // // create offer and set local description
  7854. // pc.createOffer().then(function(sdp) {
  7855. // sdp.sdp.split('\n').forEach(function(line) {
  7856. // if (line.indexOf('candidate') < 0) return;
  7857. // line.match(ipRegex).forEach(iterateIP);
  7858. // });
  7859. // pc.setLocalDescription(sdp, noop, noop);
  7860. // }).catch(function(reason) {
  7861. // // An error occurred, so handle the failure to connect
  7862. // });
  7863. // //sten for candidate events
  7864. // pc.onicecandidate = function(ice) {
  7865. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7866. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7867. // };
  7868. // }
  7869. // U.MD.D.I.getUserIpBool = function(callback){
  7870. // U.MD.D.I.getUserIP(function(ip){
  7871. // alert("Got IP! :" + ip);
  7872. // });
  7873. //}
  7874. //#endregion
  7875. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7876. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7877. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7878. _userinfo = US.userInfo, //登录用户信息
  7879. _userid = US.userInfo.userid //登录用户id
  7880. let _iframe;
  7881. let _cid = cid,
  7882. _stage = stage,
  7883. _task = task,
  7884. _tool = tool;
  7885. var _jie = $$("div", {
  7886. "style": {
  7887. "position": "absolute",
  7888. "bottom": "50px",
  7889. "right": "50px",
  7890. "zIndex": "9999",
  7891. "backgroundColor": "#2268bc",
  7892. "color": "#fff",
  7893. "padding": "12px 20px",
  7894. "cursor": "pointer",
  7895. "borderRadius": "4px",
  7896. },
  7897. "innerHTML": "提交作业"
  7898. })
  7899. let aTool = ''
  7900. let _loading = document.createElement('div')
  7901. _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;"
  7902. // _loading.id = "";
  7903. let _lchild = document.createElement('div')
  7904. let _limg = document.createElement('img')
  7905. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7906. _limg.style = "width: 26px;margin-right: 10px;"
  7907. _lchild.appendChild(_limg)
  7908. let _lspan = document.createElement('span')
  7909. _lspan.innerHTML = "上传中..."
  7910. _lchild.appendChild(_lspan)
  7911. _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%);"
  7912. _loading.appendChild(_lchild)
  7913. var _box = $$('div', {
  7914. "style": {
  7915. "position": "relative",
  7916. "width": "100%",
  7917. "height": "100%",
  7918. },
  7919. })
  7920. _box.appendChild(_loading)
  7921. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7922. switch (str) {
  7923. case "whiteboard":
  7924. aTool = 1;
  7925. _iframe = $$("iframe", {
  7926. "frameborder": "no",
  7927. "border": "0",
  7928. "scrolling ": "no",
  7929. "style": {
  7930. "cssText": "border:0;width:100%;height:100%"
  7931. },
  7932. "src": "https://beta.iwb.cocorobo.cn/"
  7933. })
  7934. _box.appendChild(_iframe);
  7935. _box.appendChild(_jie);
  7936. _formdiv = new U.UF.UI.form(
  7937. "电子白板",
  7938. _box, {
  7939. "id": "whiteboard" + cid + stage + task + tool,
  7940. "style": {
  7941. "width": "90%",
  7942. "height": "90%",
  7943. "overflow": 'hidden'
  7944. },
  7945. "onresize": function () { }
  7946. }, {
  7947. closecallback: function () { }
  7948. }, {
  7949. "style": {
  7950. "height": "36px"
  7951. }
  7952. }).form; //创建窗体
  7953. _taskbar = {
  7954. "id": str + _formdiv.id,
  7955. "style": {
  7956. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7957. },
  7958. "name": "电子白板",
  7959. "forms": _formdiv,
  7960. "click": function () {
  7961. U.MD.D.I.openApplication(str, obj, info);
  7962. }
  7963. }
  7964. break;
  7965. case "mind":
  7966. aTool = 3;
  7967. _iframe = $$("iframe", {
  7968. "frameborder": "no",
  7969. "border": "0",
  7970. "scrolling ": "no",
  7971. "style": {
  7972. "cssText": "border:0;width:100%;height:100%"
  7973. },
  7974. "src": "/kityminder-editor/dist/index.html"
  7975. })
  7976. _box.appendChild(_iframe);
  7977. _box.appendChild(_jie);
  7978. _formdiv = new U.UF.UI.form(
  7979. "思维导图",
  7980. _box, { //"/jsmind/example/demo.html"
  7981. "id": "mind" + cid + stage + task + tool,
  7982. "style": {
  7983. "width": "90%",
  7984. "height": "90%",
  7985. "overflow": 'hidden'
  7986. },
  7987. "onresize": function () { }
  7988. }, {
  7989. closecallback: function () { }
  7990. }, {
  7991. "style": {
  7992. "height": "36px"
  7993. }
  7994. }).form; //创建窗体
  7995. _taskbar = {
  7996. "id": str + _formdiv.id,
  7997. "style": {
  7998. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7999. },
  8000. "name": "思维导图",
  8001. "forms": _formdiv,
  8002. "click": function () {
  8003. U.MD.D.I.openApplication(str, obj, info);
  8004. }
  8005. }
  8006. break;
  8007. case "MindMap":
  8008. aTool = 3;
  8009. _iframe = $$("iframe", {
  8010. "frameborder": "no",
  8011. "border": "0",
  8012. "scrolling ": "no",
  8013. "style": {
  8014. "cssText": "border:0;width:100%;height:100%"
  8015. },
  8016. "src": "//cloud.cocorobo.cn/mind/"
  8017. })
  8018. _box.appendChild(_iframe);
  8019. _box.appendChild(_jie);
  8020. _formdiv = new U.UF.UI.form(
  8021. "思维导图",
  8022. _box, { //"/jsmind/example/demo.html"
  8023. "id": "mind" + cid + stage + task + tool,
  8024. "style": {
  8025. "width": "90%",
  8026. "height": "90%",
  8027. "overflow": 'hidden'
  8028. },
  8029. "onresize": function () { }
  8030. }, {
  8031. closecallback: function () { }
  8032. }, {
  8033. "style": {
  8034. "height": "36px"
  8035. }
  8036. }).form; //创建窗体
  8037. _taskbar = {
  8038. "id": str + _formdiv.id,
  8039. "style": {
  8040. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8041. },
  8042. "name": "思维导图",
  8043. "forms": _formdiv,
  8044. "click": function () {
  8045. U.MD.D.I.openApplication(str, obj, info);
  8046. }
  8047. }
  8048. break;
  8049. case "doc":
  8050. aTool = 6;
  8051. _iframe = $$("iframe", {
  8052. "frameborder": "no",
  8053. "border": "0",
  8054. "scrolling ": "no",
  8055. "style": {
  8056. "cssText": "border:0;width:100%;height:100%"
  8057. },
  8058. "src": "/Office/Word/WordEditArea.htm"
  8059. })
  8060. _box.appendChild(_iframe);
  8061. _box.appendChild(_jie);
  8062. _formdiv = new U.UF.UI.form(
  8063. "协同文档",
  8064. _box, {
  8065. "id": "doc" + cid + stage + task + tool,
  8066. "style": {
  8067. "width": "90%",
  8068. "height": "90%",
  8069. "overflow": 'hidden'
  8070. },
  8071. "onresize": function () { }
  8072. }, {
  8073. closecallback: function () { }
  8074. }, {
  8075. "style": {
  8076. "height": "36px"
  8077. }
  8078. }).form; //创建窗体
  8079. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8080. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8081. })
  8082. _taskbar = {
  8083. "id": str + _formdiv.id,
  8084. "style": {
  8085. "backgroundImage": "url(/img/icon/doc.png)"
  8086. },
  8087. "name": "协同文档",
  8088. "forms": _formdiv,
  8089. "click": function () {
  8090. U.MD.D.I.openApplication(str, obj, info);
  8091. }
  8092. }
  8093. break;
  8094. case "mindNetwork": //好友打开
  8095. aTool = 7;
  8096. _iframe = $$("iframe", {
  8097. "webkitallowfullscreen": "",
  8098. "mozallowfullscreen": "",
  8099. "allowfullscreen": "",
  8100. "frameborder": "no",
  8101. "border": "0",
  8102. "scrolling ": "no",
  8103. "style": {
  8104. "cssText": "border:0; width:100%; height:100%;"
  8105. },
  8106. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8107. })
  8108. _box.appendChild(_iframe);
  8109. _box.appendChild(_jie);
  8110. _formdiv = new U.UF.UI.form(
  8111. "思维网格",
  8112. _box, {
  8113. "id": "mindNetwork" + cid + stage + task + tool,
  8114. "style": {
  8115. "width": "90%",
  8116. "height": "90%",
  8117. "overflow": 'hidden'
  8118. },
  8119. "onresize": function () { }
  8120. }, {
  8121. closecallback: function () { }
  8122. }, {
  8123. "style": {
  8124. "height": "36px"
  8125. }
  8126. }).form; //创建窗体
  8127. _taskbar = {
  8128. "id": str + _formdiv.id,
  8129. "style": {
  8130. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8131. },
  8132. "name": "思维网格",
  8133. "forms": _formdiv,
  8134. "click": function () {
  8135. U.MD.D.I.openApplication(str, obj, info);
  8136. }
  8137. }
  8138. break;
  8139. case "courseDesign":
  8140. _iframe = $$("iframe", {
  8141. "webkitallowfullscreen": "",
  8142. "mozallowfullscreen": "",
  8143. "allowfullscreen": "",
  8144. "frameborder": "no",
  8145. "border": "0",
  8146. "scrolling ": "no",
  8147. "style": {
  8148. "cssText": "border:0; width:100%; height:100%;"
  8149. },
  8150. "src": "/course-design-vue"
  8151. })
  8152. _box.appendChild(_iframe);
  8153. _box.appendChild(_jie);
  8154. _formdiv = new U.UF.UI.form(
  8155. "项目设计",
  8156. _box, {
  8157. "id": "courseDesign" + cid + stage + task + tool,
  8158. "style": {
  8159. "width": "90%",
  8160. "height": "90%",
  8161. "overflow": 'hidden'
  8162. },
  8163. "onresize": function () { }
  8164. }, {
  8165. closecallback: function () { }
  8166. }, {
  8167. "style": {
  8168. "height": "36px"
  8169. }
  8170. }).form; //创建窗体
  8171. _taskbar = {
  8172. "id": str + _formdiv.id,
  8173. "style": {
  8174. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8175. },
  8176. "name": "项目设计",
  8177. "forms": _formdiv,
  8178. "click": function () {
  8179. U.MD.D.I.openApplication(str, obj, info);
  8180. }
  8181. }
  8182. break;
  8183. }
  8184. const script1 = document.createElement("script");
  8185. script1.type = "text/javascript";
  8186. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8187. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8188. const script2 = document.createElement("script");
  8189. script2.type = "text/javascript";
  8190. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8191. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8192. const script3 = document.createElement("script");
  8193. script3.type = "text/javascript";
  8194. script3.charset = "UTF-8";
  8195. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8196. const script4 = document.createElement("script");
  8197. script4.type = "text/javascript";
  8198. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8199. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8200. if (_iframe) {
  8201. if (str == 'doc') {
  8202. _iframe = _formdiv.querySelector('iframe')
  8203. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8204. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8205. _iframe.contentWindow.document.body.appendChild(script1);
  8206. _iframe.contentWindow.document.body.appendChild(script2);
  8207. // _iframe.contentWindow.document.body.appendChild(script3);
  8208. _iframe.contentWindow.document.body.appendChild(script4);
  8209. })
  8210. if (onloadListener) {
  8211. _iframe.contentDocument.location.reload()
  8212. } else {
  8213. _iframe.contentDocument.location.reload()
  8214. }
  8215. } else if (str == 'courseDesign') {
  8216. U.UF.DL.iframeLoad(_iframe, function () {
  8217. // _iframe.contentWindow.U.MD.O.W.load();
  8218. // _iframe.contentWindow.document.body.appendChild(script1);
  8219. _iframe.contentWindow.document.body.appendChild(script2);
  8220. _iframe.contentWindow.document.body.appendChild(script4);
  8221. })
  8222. } else if (str == 'mind') {
  8223. _iframe = _formdiv.querySelector('iframe')
  8224. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8225. //
  8226. _iframe.contentWindow.document.body.appendChild(script1);
  8227. _iframe.contentWindow.document.body.appendChild(script2);
  8228. _iframe.contentWindow.document.body.appendChild(script4);
  8229. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8230. })
  8231. if (onloadListener) {
  8232. _iframe.contentDocument.location.reload()
  8233. } else {
  8234. _iframe.contentDocument.location.reload()
  8235. }
  8236. } else if (str == 'whiteboard') {
  8237. _iframe = _formdiv.querySelector('iframe')
  8238. let onloadListener = _iframe.onload = () => {
  8239. _iframe.contentWindow.document.body.appendChild(script1);
  8240. _iframe.contentWindow.document.body.appendChild(script2);
  8241. _iframe.contentWindow.document.body.appendChild(script4);
  8242. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8243. };
  8244. // if (onloadListener) {
  8245. // try {
  8246. // _iframe.src += "?cocorobo="+new Date().getTime()
  8247. // _iframe.contentWindow.document.location.reload()
  8248. // } catch (error) {
  8249. // }
  8250. // } else {
  8251. // _iframe.contentDocument.location.reload()
  8252. // }
  8253. } else {
  8254. _iframe.onload = () => {
  8255. _iframe.contentWindow.document.body.appendChild(script1);
  8256. _iframe.contentWindow.document.body.appendChild(script2);
  8257. // _iframe.contentWindow.document.body.appendChild(script3);
  8258. _iframe.contentWindow.document.body.appendChild(script4);
  8259. };
  8260. }
  8261. _jie.onclick = async () => {
  8262. let text = ''
  8263. if (aTool == 1) {
  8264. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8265. } else if (aTool == 6) {
  8266. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8267. } else if (aTool == 3) {
  8268. text = await U.MD.D.I.getEditorContent(_iframe);
  8269. }
  8270. _loading.style.display = 'flex'
  8271. console.log(_loading);
  8272. var _ajs = _iframe.contentWindow.document.createElement("script");
  8273. _ajs.type = "text/javascript";
  8274. _ajs.innerHTML =
  8275. // 'console.log(' + _loading + ');\n' +
  8276. 'var _js = document.createElement("script");\n' +
  8277. '_js.type="text/javascript";\n' +
  8278. '_js.charset="UTF-8";\n' +
  8279. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8280. "_js.onload = function(){\n" +
  8281. ' var a = document.getElementsByTagName("img")\n' +
  8282. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8283. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8284. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8285. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8286. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8287. "beforeUpload_shishi(file," +
  8288. "'" +
  8289. _userid +
  8290. "'" +
  8291. ", " +
  8292. "'" +
  8293. _cid +
  8294. "'" +
  8295. ", " +
  8296. "'" +
  8297. _stage +
  8298. "'" +
  8299. ", " +
  8300. "'" +
  8301. _task +
  8302. "'" +
  8303. ", " +
  8304. "'" +
  8305. _tool +
  8306. "'" +
  8307. ", " +
  8308. "'" +
  8309. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8310. "'" +
  8311. ", " +
  8312. "'" +
  8313. aTool +
  8314. "'" +
  8315. ", " +
  8316. "`" +
  8317. text +
  8318. "`" +
  8319. ")\n" +
  8320. " });\n" +
  8321. "}\n" +
  8322. "document.head.appendChild(_js);\n";
  8323. _iframe.contentWindow.document.head.appendChild(_ajs);
  8324. }
  8325. }
  8326. //U.MD.D.I.openClick(str);
  8327. //如果有任务栏信息
  8328. // if (_taskbar) {
  8329. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8330. // }
  8331. }
  8332. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8333. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8334. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8335. _userinfo = US.userInfo, //登录用户信息
  8336. _userid = US.userInfo.userid //登录用户id
  8337. let _iframe;
  8338. let _cid = cid,
  8339. _stage = stage,
  8340. _task = task,
  8341. _tool = tool;
  8342. var _jie = $$("div", {
  8343. "style": {
  8344. "position": "absolute",
  8345. "bottom": "50px",
  8346. "right": "50px",
  8347. "zIndex": "9999",
  8348. "backgroundColor": "#2268bc",
  8349. "color": "#fff",
  8350. "padding": "12px 20px",
  8351. "cursor": "pointer",
  8352. "borderRadius": "4px",
  8353. },
  8354. "innerHTML": "提交作业"
  8355. })
  8356. let aTool = ''
  8357. let _loading = document.createElement('div')
  8358. _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;"
  8359. // _loading.id = "";
  8360. let _lchild = document.createElement('div')
  8361. let _limg = document.createElement('img')
  8362. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8363. _limg.style = "width: 26px;margin-right: 10px;"
  8364. _lchild.appendChild(_limg)
  8365. let _lspan = document.createElement('span')
  8366. _lspan.innerHTML = "上传中..."
  8367. _lchild.appendChild(_lspan)
  8368. _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%);"
  8369. _loading.appendChild(_lchild)
  8370. let _box = $$('div', {
  8371. "style": {
  8372. "position": "relative",
  8373. "width": "100%",
  8374. "height": "100%",
  8375. },
  8376. })
  8377. _box.appendChild(_loading)
  8378. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8379. switch (str) {
  8380. case "whiteboard":
  8381. aTool = 1;
  8382. _iframe = $$("iframe", {
  8383. "frameborder": "no",
  8384. "border": "0",
  8385. "scrolling ": "no",
  8386. "style": {
  8387. "cssText": "border:0;width:100%;height:100%"
  8388. },
  8389. "src": "https://beta.iwb.cocorobo.cn/"
  8390. })
  8391. _box.appendChild(_iframe);
  8392. _box.appendChild(_jie);
  8393. _formdiv = new U.UF.UI.form(
  8394. "电子白板",
  8395. _box, {
  8396. "id": "whiteboard" + cid + stage + task + tool,
  8397. "style": {
  8398. "width": "90%",
  8399. "height": "90%",
  8400. "overflow": 'hidden'
  8401. },
  8402. "onresize": function () { }
  8403. }, {
  8404. closecallback: function () { }
  8405. }, {
  8406. "style": {
  8407. "height": "36px"
  8408. }
  8409. }).form; //创建窗体
  8410. _taskbar = {
  8411. "id": str + _formdiv.id,
  8412. "style": {
  8413. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8414. },
  8415. "name": "电子白板",
  8416. "forms": _formdiv,
  8417. "click": function () {
  8418. U.MD.D.I.openApplication(str, obj, info);
  8419. }
  8420. }
  8421. break;
  8422. case "mind":
  8423. aTool = 3;
  8424. _iframe = $$("iframe", {
  8425. "frameborder": "no",
  8426. "border": "0",
  8427. "scrolling ": "no",
  8428. "style": {
  8429. "cssText": "border:0;width:100%;height:100%"
  8430. },
  8431. "src": "/kityminder-editor/dist/index.html"
  8432. })
  8433. _box.appendChild(_iframe);
  8434. _box.appendChild(_jie);
  8435. _formdiv = new U.UF.UI.form(
  8436. "思维导图",
  8437. _box, { //"/jsmind/example/demo.html"
  8438. "id": "mind" + cid + stage + task + tool,
  8439. "style": {
  8440. "width": "90%",
  8441. "height": "90%",
  8442. "overflow": 'hidden'
  8443. },
  8444. "onresize": function () { }
  8445. }, {
  8446. closecallback: function () { }
  8447. }, {
  8448. "style": {
  8449. "height": "36px"
  8450. }
  8451. }).form; //创建窗体
  8452. _taskbar = {
  8453. "id": str + _formdiv.id,
  8454. "style": {
  8455. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8456. },
  8457. "name": "思维导图",
  8458. "forms": _formdiv,
  8459. "click": function () {
  8460. U.MD.D.I.openApplication(str, obj, info);
  8461. }
  8462. }
  8463. break;
  8464. case "MindMap":
  8465. aTool = 3;
  8466. _iframe = $$("iframe", {
  8467. "frameborder": "no",
  8468. "border": "0",
  8469. "scrolling ": "no",
  8470. "style": {
  8471. "cssText": "border:0;width:100%;height:100%"
  8472. },
  8473. "src": "//cloud.cocorobo.cn/mind/"
  8474. })
  8475. _box.appendChild(_iframe);
  8476. _box.appendChild(_jie);
  8477. _formdiv = new U.UF.UI.form(
  8478. "思维导图",
  8479. _box, { //"/jsmind/example/demo.html"
  8480. "id": "mind" + cid + stage + task + tool,
  8481. "style": {
  8482. "width": "90%",
  8483. "height": "90%",
  8484. "overflow": 'hidden'
  8485. },
  8486. "onresize": function () { }
  8487. }, {
  8488. closecallback: function () { }
  8489. }, {
  8490. "style": {
  8491. "height": "36px"
  8492. }
  8493. }).form; //创建窗体
  8494. _taskbar = {
  8495. "id": str + _formdiv.id,
  8496. "style": {
  8497. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8498. },
  8499. "name": "思维导图",
  8500. "forms": _formdiv,
  8501. "click": function () {
  8502. U.MD.D.I.openApplication(str, obj, info);
  8503. }
  8504. }
  8505. break;
  8506. case "doc":
  8507. aTool = 6;
  8508. _iframe = $$("iframe", {
  8509. "frameborder": "no",
  8510. "border": "0",
  8511. "scrolling ": "no",
  8512. "style": {
  8513. "cssText": "border:0;width:100%;height:100%"
  8514. },
  8515. "src": "/Office/Word/WordEditArea.htm"
  8516. })
  8517. _box.appendChild(_iframe);
  8518. _box.appendChild(_jie);
  8519. _formdiv = new U.UF.UI.form(
  8520. "协同文档",
  8521. _box, {
  8522. "id": "doc" + cid + stage + task + tool,
  8523. "style": {
  8524. "width": "90%",
  8525. "height": "90%",
  8526. "overflow": 'hidden'
  8527. },
  8528. "onresize": function () { }
  8529. }, {
  8530. closecallback: function () { }
  8531. }, {
  8532. "style": {
  8533. "height": "36px"
  8534. }
  8535. }).form; //创建窗体
  8536. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8537. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8538. })
  8539. _taskbar = {
  8540. "id": str + _formdiv.id,
  8541. "style": {
  8542. "backgroundImage": "url(/img/icon/doc.png)"
  8543. },
  8544. "name": "协同文档",
  8545. "forms": _formdiv,
  8546. "click": function () {
  8547. U.MD.D.I.openApplication(str, obj, info);
  8548. }
  8549. }
  8550. break;
  8551. case "mindNetwork": //好友打开
  8552. aTool = 7;
  8553. _iframe = $$("iframe", {
  8554. "webkitallowfullscreen": "",
  8555. "mozallowfullscreen": "",
  8556. "allowfullscreen": "",
  8557. "frameborder": "no",
  8558. "border": "0",
  8559. "scrolling ": "no",
  8560. "style": {
  8561. "cssText": "border:0; width:100%; height:100%;"
  8562. },
  8563. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8564. })
  8565. _box.appendChild(_iframe);
  8566. _box.appendChild(_jie);
  8567. _formdiv = new U.UF.UI.form(
  8568. "思维网格",
  8569. _box, {
  8570. "id": "mindNetwork" + cid + stage + task + tool,
  8571. "style": {
  8572. "width": "90%",
  8573. "height": "90%",
  8574. "overflow": 'hidden'
  8575. },
  8576. "onresize": function () { }
  8577. }, {
  8578. closecallback: function () { }
  8579. }, {
  8580. "style": {
  8581. "height": "36px"
  8582. }
  8583. }).form; //创建窗体
  8584. _taskbar = {
  8585. "id": str + _formdiv.id,
  8586. "style": {
  8587. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8588. },
  8589. "name": "思维网格",
  8590. "forms": _formdiv,
  8591. "click": function () {
  8592. U.MD.D.I.openApplication(str, obj, info);
  8593. }
  8594. }
  8595. break;
  8596. case "courseDesign":
  8597. _iframe = $$("iframe", {
  8598. "webkitallowfullscreen": "",
  8599. "mozallowfullscreen": "",
  8600. "allowfullscreen": "",
  8601. "frameborder": "no",
  8602. "border": "0",
  8603. "scrolling ": "no",
  8604. "style": {
  8605. "cssText": "border:0; width:100%; height:100%;"
  8606. },
  8607. "src": "/course-design-vue"
  8608. })
  8609. _box.appendChild(_iframe);
  8610. _box.appendChild(_jie);
  8611. _formdiv = new U.UF.UI.form(
  8612. "项目设计",
  8613. _box, {
  8614. "id": "courseDesign" + cid + stage + task + tool,
  8615. "style": {
  8616. "width": "90%",
  8617. "height": "90%",
  8618. "overflow": 'hidden'
  8619. },
  8620. "onresize": function () { }
  8621. }, {
  8622. closecallback: function () { }
  8623. }, {
  8624. "style": {
  8625. "height": "36px"
  8626. }
  8627. }).form; //创建窗体
  8628. _taskbar = {
  8629. "id": str + _formdiv.id,
  8630. "style": {
  8631. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8632. },
  8633. "name": "项目设计",
  8634. "forms": _formdiv,
  8635. "click": function () {
  8636. U.MD.D.I.openApplication(str, obj, info);
  8637. }
  8638. }
  8639. break;
  8640. }
  8641. const script1 = document.createElement("script");
  8642. script1.type = "text/javascript";
  8643. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8644. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8645. const script2 = document.createElement("script");
  8646. script2.type = "text/javascript";
  8647. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8648. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8649. const script3 = document.createElement("script");
  8650. script3.type = "text/javascript";
  8651. script3.charset = "UTF-8";
  8652. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8653. const script4 = document.createElement("script");
  8654. script4.type = "text/javascript";
  8655. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8656. script4.src = window.origin + "/js/Common/jietu2E.js";
  8657. if (_iframe) {
  8658. if (str == 'doc') {
  8659. _iframe = _formdiv.querySelector('iframe')
  8660. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8661. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8662. _iframe.contentWindow.document.body.appendChild(script1);
  8663. _iframe.contentWindow.document.body.appendChild(script2);
  8664. // _iframe.contentWindow.document.body.appendChild(script3);
  8665. _iframe.contentWindow.document.body.appendChild(script4);
  8666. })
  8667. if (onloadListener) {
  8668. _iframe.contentDocument.location.reload()
  8669. } else {
  8670. _iframe.contentDocument.location.reload()
  8671. }
  8672. } else if (str == 'courseDesign') {
  8673. U.UF.DL.iframeLoad(_iframe, function () {
  8674. // _iframe.contentWindow.U.MD.O.W.load();
  8675. // _iframe.contentWindow.document.body.appendChild(script1);
  8676. _iframe.contentWindow.document.body.appendChild(script2);
  8677. _iframe.contentWindow.document.body.appendChild(script4);
  8678. })
  8679. } else if (str == 'mind') {
  8680. _iframe = _formdiv.querySelector('iframe')
  8681. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8682. //
  8683. _iframe.contentWindow.document.body.appendChild(script1);
  8684. _iframe.contentWindow.document.body.appendChild(script2);
  8685. _iframe.contentWindow.document.body.appendChild(script4);
  8686. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8687. })
  8688. if (onloadListener) {
  8689. _iframe.contentDocument.location.reload()
  8690. } else {
  8691. _iframe.contentDocument.location.reload()
  8692. }
  8693. } else if (str == 'whiteboard') {
  8694. _iframe = _formdiv.querySelector('iframe')
  8695. let onloadListener = _iframe.onload = () => {
  8696. _iframe.contentWindow.document.body.appendChild(script1);
  8697. _iframe.contentWindow.document.body.appendChild(script2);
  8698. _iframe.contentWindow.document.body.appendChild(script4);
  8699. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8700. };
  8701. // if (onloadListener) {
  8702. // try {
  8703. // _iframe.src += "?cocorobo="+new Date().getTime()
  8704. // _iframe.contentWindow.document.location.reload()
  8705. // } catch (error) {
  8706. // }
  8707. // } else {
  8708. // _iframe.contentDocument.location.reload()
  8709. // }
  8710. } else {
  8711. _iframe.onload = () => {
  8712. _iframe.contentWindow.document.body.appendChild(script1);
  8713. _iframe.contentWindow.document.body.appendChild(script2);
  8714. // _iframe.contentWindow.document.body.appendChild(script3);
  8715. _iframe.contentWindow.document.body.appendChild(script4);
  8716. };
  8717. }
  8718. _jie.onclick = async () => {
  8719. let text = ''
  8720. if (aTool == 1) {
  8721. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8722. } else if (aTool == 6) {
  8723. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8724. } else if (aTool == 3) {
  8725. text = await U.MD.D.I.getEditorContent(_iframe);
  8726. }
  8727. _loading.style.display = 'flex'
  8728. console.log(_loading);
  8729. var _ajs = _iframe.contentWindow.document.createElement("script");
  8730. _ajs.type = "text/javascript";
  8731. _ajs.innerHTML =
  8732. // 'console.log(' + _loading + ');\n' +
  8733. 'var _js = document.createElement("script");\n' +
  8734. '_js.type="text/javascript";\n' +
  8735. '_js.charset="UTF-8";\n' +
  8736. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8737. "_js.onload = function(){\n" +
  8738. ' var a = document.getElementsByTagName("img")\n' +
  8739. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8740. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8741. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8742. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8743. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8744. "beforeUpload_shishi(file," +
  8745. "'" +
  8746. _userid +
  8747. "'" +
  8748. ", " +
  8749. "'" +
  8750. _cid +
  8751. "'" +
  8752. ", " +
  8753. "'" +
  8754. _stage +
  8755. "'" +
  8756. ", " +
  8757. "'" +
  8758. _task +
  8759. "'" +
  8760. ", " +
  8761. "'" +
  8762. _tool +
  8763. "'" +
  8764. ", " +
  8765. "'" +
  8766. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8767. "'" +
  8768. ", " +
  8769. "'" +
  8770. aTool +
  8771. "'" +
  8772. ", " +
  8773. "`" +
  8774. text +
  8775. "`" +
  8776. ")\n" +
  8777. " });\n" +
  8778. "}\n" +
  8779. "document.head.appendChild(_js);\n";
  8780. _iframe.contentWindow.document.head.appendChild(_ajs);
  8781. }
  8782. }
  8783. //U.MD.D.I.openClick(str);
  8784. //如果有任务栏信息
  8785. // if (_taskbar) {
  8786. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8787. // }
  8788. }
  8789. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8790. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8791. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8792. _userid = student.userid, //登录用户id
  8793. _username = student.student //用户名字
  8794. let _iframe;
  8795. let _cid = cid,
  8796. _stage = stage,
  8797. _task = task,
  8798. _tool = tool;
  8799. var _jie = $$("div", {
  8800. "style": {
  8801. "position": "absolute",
  8802. "bottom": "50px",
  8803. "right": "50px",
  8804. "zIndex": "9999",
  8805. "backgroundColor": "#2268bc",
  8806. "color": "#fff",
  8807. "padding": "12px 20px",
  8808. "cursor": "pointer",
  8809. "borderRadius": "4px",
  8810. },
  8811. "innerHTML": "提交作业"
  8812. })
  8813. let aTool = ''
  8814. let _loading = document.createElement('div')
  8815. _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;"
  8816. // _loading.id = "";
  8817. let _lchild = document.createElement('div')
  8818. let _limg = document.createElement('img')
  8819. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8820. _limg.style = "width: 26px;margin-right: 10px;"
  8821. _lchild.appendChild(_limg)
  8822. let _lspan = document.createElement('span')
  8823. _lspan.innerHTML = "上传中..."
  8824. _lchild.appendChild(_lspan)
  8825. _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%);"
  8826. _loading.appendChild(_lchild)
  8827. var _box = $$('div', {
  8828. "style": {
  8829. "position": "relative",
  8830. "width": "100%",
  8831. "height": "100%",
  8832. },
  8833. })
  8834. _box.appendChild(_loading)
  8835. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8836. switch (str) {
  8837. case "whiteboard":
  8838. aTool = 1;
  8839. _iframe = $$("iframe", {
  8840. "frameborder": "no",
  8841. "border": "0",
  8842. "scrolling ": "no",
  8843. "style": {
  8844. "cssText": "border:0;width:100%;height:100%"
  8845. },
  8846. "src": "https://beta.iwb.cocorobo.cn/"
  8847. })
  8848. _box.appendChild(_iframe);
  8849. _box.appendChild(_jie);
  8850. _formdiv = new U.UF.UI.form(
  8851. "电子白板-" + _username,
  8852. _box, {
  8853. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8854. "style": {
  8855. "width": "90%",
  8856. "height": "90%",
  8857. "overflow": 'hidden'
  8858. },
  8859. "onresize": function () { }
  8860. }, {
  8861. closecallback: function () { }
  8862. }, {
  8863. "style": {
  8864. "height": "36px"
  8865. }
  8866. }).form; //创建窗体
  8867. _taskbar = {
  8868. "id": str + _formdiv.id,
  8869. "style": {
  8870. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8871. },
  8872. "name": "电子白板",
  8873. "forms": _formdiv,
  8874. "click": function () {
  8875. U.MD.D.I.openApplication(str, obj, info);
  8876. }
  8877. }
  8878. break;
  8879. case "mind":
  8880. aTool = 3;
  8881. _iframe = $$("iframe", {
  8882. "frameborder": "no",
  8883. "border": "0",
  8884. "scrolling ": "no",
  8885. "style": {
  8886. "cssText": "border:0;width:100%;height:100%"
  8887. },
  8888. "src": "/kityminder-editor/dist/index.html"
  8889. })
  8890. _box.appendChild(_iframe);
  8891. _box.appendChild(_jie);
  8892. _formdiv = new U.UF.UI.form(
  8893. "思维导图-" + _username,
  8894. _box, { //"/jsmind/example/demo.html"
  8895. "id": "mind" + cid + stage + task + tool + _userid,
  8896. "style": {
  8897. "width": "90%",
  8898. "height": "90%",
  8899. "overflow": 'hidden'
  8900. },
  8901. "onresize": function () { }
  8902. }, {
  8903. closecallback: function () { }
  8904. }, {
  8905. "style": {
  8906. "height": "36px"
  8907. }
  8908. }).form; //创建窗体
  8909. _taskbar = {
  8910. "id": str + _formdiv.id,
  8911. "style": {
  8912. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8913. },
  8914. "name": "思维导图",
  8915. "forms": _formdiv,
  8916. "click": function () {
  8917. U.MD.D.I.openApplication(str, obj, info);
  8918. }
  8919. }
  8920. break;
  8921. case "MindMap":
  8922. aTool = 3;
  8923. _iframe = $$("iframe", {
  8924. "frameborder": "no",
  8925. "border": "0",
  8926. "scrolling ": "no",
  8927. "style": {
  8928. "cssText": "border:0;width:100%;height:100%"
  8929. },
  8930. "src": "//cloud.cocorobo.cn/mind/"
  8931. })
  8932. _box.appendChild(_iframe);
  8933. _box.appendChild(_jie);
  8934. _formdiv = new U.UF.UI.form(
  8935. "思维导图-" + _username,
  8936. _box, { //"/jsmind/example/demo.html"
  8937. "id": "mind" + cid + stage + task + tool + _userid,
  8938. "style": {
  8939. "width": "90%",
  8940. "height": "90%",
  8941. "overflow": 'hidden'
  8942. },
  8943. "onresize": function () { }
  8944. }, {
  8945. closecallback: function () { }
  8946. }, {
  8947. "style": {
  8948. "height": "36px"
  8949. }
  8950. }).form; //创建窗体
  8951. _taskbar = {
  8952. "id": str + _formdiv.id,
  8953. "style": {
  8954. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8955. },
  8956. "name": "思维导图",
  8957. "forms": _formdiv,
  8958. "click": function () {
  8959. U.MD.D.I.openApplication(str, obj, info);
  8960. }
  8961. }
  8962. break;
  8963. case "doc":
  8964. aTool = 6;
  8965. _iframe = $$("iframe", {
  8966. "frameborder": "no",
  8967. "border": "0",
  8968. "scrolling ": "no",
  8969. "style": {
  8970. "cssText": "border:0;width:100%;height:100%"
  8971. },
  8972. "src": "/Office/Word/WordEditArea.htm"
  8973. })
  8974. _box.appendChild(_iframe);
  8975. _box.appendChild(_jie);
  8976. _formdiv = new U.UF.UI.form(
  8977. "协同文档-" + _username,
  8978. _box, {
  8979. "id": "doc" + cid + stage + task + tool + _userid,
  8980. "style": {
  8981. "width": "90%",
  8982. "height": "90%",
  8983. "overflow": 'hidden'
  8984. },
  8985. "onresize": function () { }
  8986. }, {
  8987. closecallback: function () { }
  8988. }, {
  8989. "style": {
  8990. "height": "36px"
  8991. }
  8992. }).form; //创建窗体
  8993. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8994. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8995. })
  8996. _taskbar = {
  8997. "id": str + _formdiv.id,
  8998. "style": {
  8999. "backgroundImage": "url(/img/icon/doc.png)"
  9000. },
  9001. "name": "协同文档",
  9002. "forms": _formdiv,
  9003. "click": function () {
  9004. U.MD.D.I.openApplication(str, obj, info);
  9005. }
  9006. }
  9007. break;
  9008. case "mindNetwork": //好友打开
  9009. aTool = 7;
  9010. _iframe = $$("iframe", {
  9011. "webkitallowfullscreen": "",
  9012. "mozallowfullscreen": "",
  9013. "allowfullscreen": "",
  9014. "frameborder": "no",
  9015. "border": "0",
  9016. "scrolling ": "no",
  9017. "style": {
  9018. "cssText": "border:0; width:100%; height:100%;"
  9019. },
  9020. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9021. })
  9022. _box.appendChild(_iframe);
  9023. _box.appendChild(_jie);
  9024. _formdiv = new U.UF.UI.form(
  9025. "思维网格-" + _username,
  9026. _box, {
  9027. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9028. "style": {
  9029. "width": "90%",
  9030. "height": "90%",
  9031. "overflow": 'hidden'
  9032. },
  9033. "onresize": function () { }
  9034. }, {
  9035. closecallback: function () { }
  9036. }, {
  9037. "style": {
  9038. "height": "36px"
  9039. }
  9040. }).form; //创建窗体
  9041. _taskbar = {
  9042. "id": str + _formdiv.id,
  9043. "style": {
  9044. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9045. },
  9046. "name": "思维网格",
  9047. "forms": _formdiv,
  9048. "click": function () {
  9049. U.MD.D.I.openApplication(str, obj, info);
  9050. }
  9051. }
  9052. break;
  9053. case "courseDesign":
  9054. _iframe = $$("iframe", {
  9055. "webkitallowfullscreen": "",
  9056. "mozallowfullscreen": "",
  9057. "allowfullscreen": "",
  9058. "frameborder": "no",
  9059. "border": "0",
  9060. "scrolling ": "no",
  9061. "style": {
  9062. "cssText": "border:0; width:100%; height:100%;"
  9063. },
  9064. "src": "/course-design-vue"
  9065. })
  9066. _box.appendChild(_iframe);
  9067. _box.appendChild(_jie);
  9068. _formdiv = new U.UF.UI.form(
  9069. "项目设计-" + _username,
  9070. _box, {
  9071. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9072. "style": {
  9073. "width": "90%",
  9074. "height": "90%",
  9075. "overflow": 'hidden'
  9076. },
  9077. "onresize": function () { }
  9078. }, {
  9079. closecallback: function () { }
  9080. }, {
  9081. "style": {
  9082. "height": "36px"
  9083. }
  9084. }).form; //创建窗体
  9085. _taskbar = {
  9086. "id": str + _formdiv.id,
  9087. "style": {
  9088. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9089. },
  9090. "name": "项目设计",
  9091. "forms": _formdiv,
  9092. "click": function () {
  9093. U.MD.D.I.openApplication(str, obj, info);
  9094. }
  9095. }
  9096. break;
  9097. }
  9098. const script1 = document.createElement("script");
  9099. script1.type = "text/javascript";
  9100. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9101. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9102. const script2 = document.createElement("script");
  9103. script2.type = "text/javascript";
  9104. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9105. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9106. const script3 = document.createElement("script");
  9107. script3.type = "text/javascript";
  9108. script3.charset = "UTF-8";
  9109. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9110. const script4 = document.createElement("script");
  9111. script4.type = "text/javascript";
  9112. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9113. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9114. if (_iframe) {
  9115. if (str == 'doc') {
  9116. _iframe = _formdiv.querySelector('iframe')
  9117. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9118. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9119. _iframe.contentWindow.document.body.appendChild(script1);
  9120. _iframe.contentWindow.document.body.appendChild(script2);
  9121. // _iframe.contentWindow.document.body.appendChild(script3);
  9122. _iframe.contentWindow.document.body.appendChild(script4);
  9123. })
  9124. if (onloadListener) {
  9125. _iframe.contentDocument.location.reload()
  9126. } else {
  9127. _iframe.contentDocument.location.reload()
  9128. }
  9129. } else if (str == 'courseDesign') {
  9130. U.UF.DL.iframeLoad(_iframe, function () {
  9131. // _iframe.contentWindow.U.MD.O.W.load();
  9132. // _iframe.contentWindow.document.body.appendChild(script1);
  9133. _iframe.contentWindow.document.body.appendChild(script2);
  9134. _iframe.contentWindow.document.body.appendChild(script4);
  9135. })
  9136. } else if (str == 'mind') {
  9137. _iframe = _formdiv.querySelector('iframe')
  9138. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9139. //
  9140. _iframe.contentWindow.document.body.appendChild(script1);
  9141. _iframe.contentWindow.document.body.appendChild(script2);
  9142. _iframe.contentWindow.document.body.appendChild(script4);
  9143. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9144. })
  9145. if (onloadListener) {
  9146. _iframe.contentDocument.location.reload()
  9147. } else {
  9148. _iframe.contentDocument.location.reload()
  9149. }
  9150. } else if (str == 'whiteboard') {
  9151. _iframe = _formdiv.querySelector('iframe')
  9152. let onloadListener = _iframe.onload = () => {
  9153. _iframe.contentWindow.document.body.appendChild(script1);
  9154. _iframe.contentWindow.document.body.appendChild(script2);
  9155. _iframe.contentWindow.document.body.appendChild(script4);
  9156. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9157. };
  9158. // if (onloadListener) {
  9159. // try {
  9160. // _iframe.src += "?cocorobo="+new Date().getTime()
  9161. // _iframe.contentWindow.document.location.reload()
  9162. // } catch (error) {
  9163. // }
  9164. // } else {
  9165. // _iframe.contentDocument.location.reload()
  9166. // }
  9167. } else {
  9168. _iframe.onload = () => {
  9169. _iframe.contentWindow.document.body.appendChild(script1);
  9170. _iframe.contentWindow.document.body.appendChild(script2);
  9171. // _iframe.contentWindow.document.body.appendChild(script3);
  9172. _iframe.contentWindow.document.body.appendChild(script4);
  9173. };
  9174. }
  9175. _jie.onclick = async () => {
  9176. let text = ''
  9177. if (aTool == 1) {
  9178. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9179. } else if (aTool == 6) {
  9180. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9181. } else if (aTool == 3) {
  9182. text = await U.MD.D.I.getEditorContent(_iframe);
  9183. }
  9184. _loading.style.display = 'flex'
  9185. console.log(_loading);
  9186. var _ajs = _iframe.contentWindow.document.createElement("script");
  9187. _ajs.type = "text/javascript";
  9188. _ajs.innerHTML =
  9189. // 'console.log(' + _loading + ');\n' +
  9190. 'var _js = document.createElement("script");\n' +
  9191. '_js.type="text/javascript";\n' +
  9192. '_js.charset="UTF-8";\n' +
  9193. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9194. "_js.onload = function(){\n" +
  9195. ' var a = document.getElementsByTagName("img")\n' +
  9196. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9197. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9198. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9199. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9200. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9201. "beforeUpload_shishi(file," +
  9202. "'" +
  9203. _userid +
  9204. "'" +
  9205. ", " +
  9206. "'" +
  9207. _cid +
  9208. "'" +
  9209. ", " +
  9210. "'" +
  9211. _stage +
  9212. "'" +
  9213. ", " +
  9214. "'" +
  9215. _task +
  9216. "'" +
  9217. ", " +
  9218. "'" +
  9219. _tool +
  9220. "'" +
  9221. ", " +
  9222. "'" +
  9223. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9224. "'" +
  9225. ", " +
  9226. "'" +
  9227. aTool +
  9228. "'" +
  9229. ", " +
  9230. "`" +
  9231. text +
  9232. "`" +
  9233. ")\n" +
  9234. " });\n" +
  9235. "}\n" +
  9236. "document.head.appendChild(_js);\n";
  9237. _iframe.contentWindow.document.head.appendChild(_ajs);
  9238. }
  9239. }
  9240. }
  9241. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9242. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9243. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9244. _userid = student.userid, //登录用户id
  9245. _username = student.student //用户名字
  9246. let _iframe;
  9247. let _cid = cid,
  9248. _stage = stage,
  9249. _task = task,
  9250. _tool = tool;
  9251. var _jie = $$("div", {
  9252. "style": {
  9253. "position": "absolute",
  9254. "bottom": "50px",
  9255. "right": "50px",
  9256. "zIndex": "9999",
  9257. "backgroundColor": "#2268bc",
  9258. "color": "#fff",
  9259. "padding": "12px 20px",
  9260. "cursor": "pointer",
  9261. "borderRadius": "4px",
  9262. },
  9263. "innerHTML": "提交作业"
  9264. })
  9265. let aTool = ''
  9266. let _loading = document.createElement('div')
  9267. _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;"
  9268. // _loading.id = "";
  9269. let _lchild = document.createElement('div')
  9270. let _limg = document.createElement('img')
  9271. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9272. _limg.style = "width: 26px;margin-right: 10px;"
  9273. _lchild.appendChild(_limg)
  9274. let _lspan = document.createElement('span')
  9275. _lspan.innerHTML = "上传中..."
  9276. _lchild.appendChild(_lspan)
  9277. _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%);"
  9278. _loading.appendChild(_lchild)
  9279. var _box = $$('div', {
  9280. "style": {
  9281. "position": "relative",
  9282. "width": "100%",
  9283. "height": "100%",
  9284. },
  9285. })
  9286. _box.appendChild(_loading)
  9287. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9288. switch (str) {
  9289. case "whiteboard":
  9290. aTool = 1;
  9291. _iframe = $$("iframe", {
  9292. "frameborder": "no",
  9293. "border": "0",
  9294. "scrolling ": "no",
  9295. "style": {
  9296. "cssText": "border:0;width:100%;height:100%"
  9297. },
  9298. "src": "https://beta.iwb.cocorobo.cn/"
  9299. })
  9300. _box.appendChild(_iframe);
  9301. _box.appendChild(_jie);
  9302. _formdiv = new U.UF.UI.form(
  9303. "电子白板-" + _username,
  9304. _box, {
  9305. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9306. "style": {
  9307. "width": "90%",
  9308. "height": "90%",
  9309. "overflow": 'hidden'
  9310. },
  9311. "onresize": function () { }
  9312. }, {
  9313. closecallback: function () { }
  9314. }, {
  9315. "style": {
  9316. "height": "36px"
  9317. }
  9318. }).form; //创建窗体
  9319. _taskbar = {
  9320. "id": str + _formdiv.id,
  9321. "style": {
  9322. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9323. },
  9324. "name": "电子白板",
  9325. "forms": _formdiv,
  9326. "click": function () {
  9327. U.MD.D.I.openApplication(str, obj, info);
  9328. }
  9329. }
  9330. break;
  9331. case "mind":
  9332. aTool = 3;
  9333. _iframe = $$("iframe", {
  9334. "frameborder": "no",
  9335. "border": "0",
  9336. "scrolling ": "no",
  9337. "style": {
  9338. "cssText": "border:0;width:100%;height:100%"
  9339. },
  9340. "src": "/kityminder-editor/dist/index.html"
  9341. })
  9342. _box.appendChild(_iframe);
  9343. _box.appendChild(_jie);
  9344. _formdiv = new U.UF.UI.form(
  9345. "思维导图-" + _username,
  9346. _box, { //"/jsmind/example/demo.html"
  9347. "id": "mind" + cid + stage + task + tool + _userid,
  9348. "style": {
  9349. "width": "90%",
  9350. "height": "90%",
  9351. "overflow": 'hidden'
  9352. },
  9353. "onresize": function () { }
  9354. }, {
  9355. closecallback: function () { }
  9356. }, {
  9357. "style": {
  9358. "height": "36px"
  9359. }
  9360. }).form; //创建窗体
  9361. _taskbar = {
  9362. "id": str + _formdiv.id,
  9363. "style": {
  9364. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9365. },
  9366. "name": "思维导图",
  9367. "forms": _formdiv,
  9368. "click": function () {
  9369. U.MD.D.I.openApplication(str, obj, info);
  9370. }
  9371. }
  9372. break;
  9373. case "MindMap":
  9374. aTool = 3;
  9375. _iframe = $$("iframe", {
  9376. "frameborder": "no",
  9377. "border": "0",
  9378. "scrolling ": "no",
  9379. "style": {
  9380. "cssText": "border:0;width:100%;height:100%"
  9381. },
  9382. "src": "//cloud.cocorobo.cn/mind/"
  9383. })
  9384. _box.appendChild(_iframe);
  9385. _box.appendChild(_jie);
  9386. _formdiv = new U.UF.UI.form(
  9387. "思维导图-" + _username,
  9388. _box, { //"/jsmind/example/demo.html"
  9389. "id": "mind" + cid + stage + task + tool + _userid,
  9390. "style": {
  9391. "width": "90%",
  9392. "height": "90%",
  9393. "overflow": 'hidden'
  9394. },
  9395. "onresize": function () { }
  9396. }, {
  9397. closecallback: function () { }
  9398. }, {
  9399. "style": {
  9400. "height": "36px"
  9401. }
  9402. }).form; //创建窗体
  9403. _taskbar = {
  9404. "id": str + _formdiv.id,
  9405. "style": {
  9406. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9407. },
  9408. "name": "思维导图",
  9409. "forms": _formdiv,
  9410. "click": function () {
  9411. U.MD.D.I.openApplication(str, obj, info);
  9412. }
  9413. }
  9414. break;
  9415. case "doc":
  9416. aTool = 6;
  9417. _iframe = $$("iframe", {
  9418. "frameborder": "no",
  9419. "border": "0",
  9420. "scrolling ": "no",
  9421. "style": {
  9422. "cssText": "border:0;width:100%;height:100%"
  9423. },
  9424. "src": "/Office/Word/WordEditArea.htm"
  9425. })
  9426. _box.appendChild(_iframe);
  9427. _box.appendChild(_jie);
  9428. _formdiv = new U.UF.UI.form(
  9429. "协同文档-" + _username,
  9430. _box, {
  9431. "id": "doc" + cid + stage + task + tool + _userid,
  9432. "style": {
  9433. "width": "90%",
  9434. "height": "90%",
  9435. "overflow": 'hidden'
  9436. },
  9437. "onresize": function () { }
  9438. }, {
  9439. closecallback: function () { }
  9440. }, {
  9441. "style": {
  9442. "height": "36px"
  9443. }
  9444. }).form; //创建窗体
  9445. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9446. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9447. })
  9448. _taskbar = {
  9449. "id": str + _formdiv.id,
  9450. "style": {
  9451. "backgroundImage": "url(/img/icon/doc.png)"
  9452. },
  9453. "name": "协同文档",
  9454. "forms": _formdiv,
  9455. "click": function () {
  9456. U.MD.D.I.openApplication(str, obj, info);
  9457. }
  9458. }
  9459. break;
  9460. case "mindNetwork": //好友打开
  9461. aTool = 7;
  9462. _iframe = $$("iframe", {
  9463. "webkitallowfullscreen": "",
  9464. "mozallowfullscreen": "",
  9465. "allowfullscreen": "",
  9466. "frameborder": "no",
  9467. "border": "0",
  9468. "scrolling ": "no",
  9469. "style": {
  9470. "cssText": "border:0; width:100%; height:100%;"
  9471. },
  9472. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9473. })
  9474. _box.appendChild(_iframe);
  9475. _box.appendChild(_jie);
  9476. _formdiv = new U.UF.UI.form(
  9477. "思维网格-" + _username,
  9478. _box, {
  9479. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9480. "style": {
  9481. "width": "90%",
  9482. "height": "90%",
  9483. "overflow": 'hidden'
  9484. },
  9485. "onresize": function () { }
  9486. }, {
  9487. closecallback: function () { }
  9488. }, {
  9489. "style": {
  9490. "height": "36px"
  9491. }
  9492. }).form; //创建窗体
  9493. _taskbar = {
  9494. "id": str + _formdiv.id,
  9495. "style": {
  9496. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9497. },
  9498. "name": "思维网格",
  9499. "forms": _formdiv,
  9500. "click": function () {
  9501. U.MD.D.I.openApplication(str, obj, info);
  9502. }
  9503. }
  9504. break;
  9505. case "courseDesign":
  9506. _iframe = $$("iframe", {
  9507. "webkitallowfullscreen": "",
  9508. "mozallowfullscreen": "",
  9509. "allowfullscreen": "",
  9510. "frameborder": "no",
  9511. "border": "0",
  9512. "scrolling ": "no",
  9513. "style": {
  9514. "cssText": "border:0; width:100%; height:100%;"
  9515. },
  9516. "src": "/course-design-vue"
  9517. })
  9518. _box.appendChild(_iframe);
  9519. _box.appendChild(_jie);
  9520. _formdiv = new U.UF.UI.form(
  9521. "项目设计-" + _username,
  9522. _box, {
  9523. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9524. "style": {
  9525. "width": "90%",
  9526. "height": "90%",
  9527. "overflow": 'hidden'
  9528. },
  9529. "onresize": function () { }
  9530. }, {
  9531. closecallback: function () { }
  9532. }, {
  9533. "style": {
  9534. "height": "36px"
  9535. }
  9536. }).form; //创建窗体
  9537. _taskbar = {
  9538. "id": str + _formdiv.id,
  9539. "style": {
  9540. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9541. },
  9542. "name": "项目设计",
  9543. "forms": _formdiv,
  9544. "click": function () {
  9545. U.MD.D.I.openApplication(str, obj, info);
  9546. }
  9547. }
  9548. break;
  9549. }
  9550. const script1 = document.createElement("script");
  9551. script1.type = "text/javascript";
  9552. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9553. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9554. const script2 = document.createElement("script");
  9555. script2.type = "text/javascript";
  9556. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9557. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9558. const script3 = document.createElement("script");
  9559. script3.type = "text/javascript";
  9560. script3.charset = "UTF-8";
  9561. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9562. const script4 = document.createElement("script");
  9563. script4.type = "text/javascript";
  9564. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9565. script4.src = window.origin + "/js/Common/jietu2E.js";
  9566. if (_iframe) {
  9567. if (str == 'doc') {
  9568. _iframe = _formdiv.querySelector('iframe')
  9569. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9570. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9571. _iframe.contentWindow.document.body.appendChild(script1);
  9572. _iframe.contentWindow.document.body.appendChild(script2);
  9573. // _iframe.contentWindow.document.body.appendChild(script3);
  9574. _iframe.contentWindow.document.body.appendChild(script4);
  9575. })
  9576. if (onloadListener) {
  9577. _iframe.contentDocument.location.reload()
  9578. } else {
  9579. _iframe.contentDocument.location.reload()
  9580. }
  9581. } else if (str == 'courseDesign') {
  9582. U.UF.DL.iframeLoad(_iframe, function () {
  9583. // _iframe.contentWindow.U.MD.O.W.load();
  9584. // _iframe.contentWindow.document.body.appendChild(script1);
  9585. _iframe.contentWindow.document.body.appendChild(script2);
  9586. _iframe.contentWindow.document.body.appendChild(script4);
  9587. })
  9588. } else if (str == 'mind') {
  9589. _iframe = _formdiv.querySelector('iframe')
  9590. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9591. //
  9592. _iframe.contentWindow.document.body.appendChild(script1);
  9593. _iframe.contentWindow.document.body.appendChild(script2);
  9594. _iframe.contentWindow.document.body.appendChild(script4);
  9595. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9596. })
  9597. if (onloadListener) {
  9598. _iframe.contentDocument.location.reload()
  9599. } else {
  9600. _iframe.contentDocument.location.reload()
  9601. }
  9602. } else if (str == 'whiteboard') {
  9603. _iframe = _formdiv.querySelector('iframe')
  9604. let onloadListener = _iframe.onload = () => {
  9605. _iframe.contentWindow.document.body.appendChild(script1);
  9606. _iframe.contentWindow.document.body.appendChild(script2);
  9607. _iframe.contentWindow.document.body.appendChild(script4);
  9608. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9609. };
  9610. // if (onloadListener) {
  9611. // try {
  9612. // _iframe.src += "?cocorobo="+new Date().getTime()
  9613. // _iframe.contentWindow.document.location.reload()
  9614. // } catch (error) {
  9615. // }
  9616. // } else {
  9617. // _iframe.contentDocument.location.reload()
  9618. // }
  9619. } else {
  9620. _iframe.onload = () => {
  9621. _iframe.contentWindow.document.body.appendChild(script1);
  9622. _iframe.contentWindow.document.body.appendChild(script2);
  9623. // _iframe.contentWindow.document.body.appendChild(script3);
  9624. _iframe.contentWindow.document.body.appendChild(script4);
  9625. };
  9626. }
  9627. _jie.onclick = async () => {
  9628. let text = ''
  9629. if (aTool == 1) {
  9630. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9631. } else if (aTool == 6) {
  9632. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9633. } else if (aTool == 3) {
  9634. text = await U.MD.D.I.getEditorContent(_iframe);
  9635. }
  9636. _loading.style.display = 'flex'
  9637. console.log(_loading);
  9638. var _ajs = _iframe.contentWindow.document.createElement("script");
  9639. _ajs.type = "text/javascript";
  9640. _ajs.innerHTML =
  9641. // 'console.log(' + _loading + ');\n' +
  9642. 'var _js = document.createElement("script");\n' +
  9643. '_js.type="text/javascript";\n' +
  9644. '_js.charset="UTF-8";\n' +
  9645. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9646. "_js.onload = function(){\n" +
  9647. ' var a = document.getElementsByTagName("img")\n' +
  9648. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9649. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9650. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9651. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9652. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9653. "beforeUpload_shishi(file," +
  9654. "'" +
  9655. _userid +
  9656. "'" +
  9657. ", " +
  9658. "'" +
  9659. _cid +
  9660. "'" +
  9661. ", " +
  9662. "'" +
  9663. _stage +
  9664. "'" +
  9665. ", " +
  9666. "'" +
  9667. _task +
  9668. "'" +
  9669. ", " +
  9670. "'" +
  9671. _tool +
  9672. "'" +
  9673. ", " +
  9674. "'" +
  9675. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9676. "'" +
  9677. ", " +
  9678. "'" +
  9679. aTool +
  9680. "'" +
  9681. ", " +
  9682. "`" +
  9683. text +
  9684. "`" +
  9685. ")\n" +
  9686. " });\n" +
  9687. "}\n" +
  9688. "document.head.appendChild(_js);\n";
  9689. _iframe.contentWindow.document.head.appendChild(_ajs);
  9690. }
  9691. }
  9692. }
  9693. U.MD.D.I.getEditorContent = function (iframe) {
  9694. return new Promise((resolve, reject) => {
  9695. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9696. console.log(content);
  9697. resolve(content)
  9698. });
  9699. });
  9700. }
  9701. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9702. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9703. // if (res.value[0].length > 0) {
  9704. // // resolve(res.value[0][0].text);
  9705. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9706. // $(fileInput).val('');
  9707. // });
  9708. // }
  9709. // }, [], { "type": "GET", "withCredentials": true });
  9710. var xmlhttp;
  9711. var Mac, Sn, DeviceId
  9712. if (window.XMLHttpRequest) {
  9713. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9714. xmlhttp = new XMLHttpRequest();
  9715. } else {
  9716. // IE6, IE5 浏览器执行代码
  9717. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9718. }
  9719. xmlhttp.onreadystatechange = function () {
  9720. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9721. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9722. // resolve(res.value[0][0].text);
  9723. if (type == '2') {
  9724. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9725. } else if (type == '3') {
  9726. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9727. }
  9728. } else {
  9729. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9730. }
  9731. }
  9732. }
  9733. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9734. xmlhttp.send();
  9735. }
  9736. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9737. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9738. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9739. _userinfo = US.userInfo, //登录用户信息
  9740. _userid = US.userInfo.userid //登录用户id
  9741. let _iframe;
  9742. let _cid = cid,
  9743. _stage = stage,
  9744. _task = task,
  9745. _tool = tool;
  9746. var _jie = $$("div", {
  9747. "style": {
  9748. "position": "absolute",
  9749. "bottom": "50px",
  9750. "right": "50px",
  9751. "zIndex": "9999",
  9752. "backgroundColor": "#2268bc",
  9753. "color": "#fff",
  9754. "padding": "12px 20px",
  9755. "cursor": "pointer",
  9756. "borderRadius": "4px",
  9757. },
  9758. "innerHTML": "确认并提交"
  9759. })
  9760. let aTool = ''
  9761. let _loading = document.createElement('div')
  9762. _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;"
  9763. // _loading.id = "";
  9764. let _lchild = document.createElement('div')
  9765. let _limg = document.createElement('img')
  9766. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9767. _limg.style = "width: 26px;margin-right: 10px;"
  9768. _lchild.appendChild(_limg)
  9769. let _lspan = document.createElement('span')
  9770. _lspan.innerHTML = "上传中..."
  9771. _lchild.appendChild(_lspan)
  9772. _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%);"
  9773. _loading.appendChild(_lchild)
  9774. var _box = $$('div', {
  9775. "style": {
  9776. "position": "relative",
  9777. "width": "100%",
  9778. "height": "100%",
  9779. },
  9780. })
  9781. _box.appendChild(_loading)
  9782. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9783. switch (str) {
  9784. case "whiteboard":
  9785. aTool = 1;
  9786. _iframe = $$("iframe", {
  9787. "frameborder": "no",
  9788. "border": "0",
  9789. "scrolling ": "no",
  9790. "style": {
  9791. "cssText": "border:0;width:100%;height:100%"
  9792. },
  9793. "src": "https://beta.iwb.cocorobo.cn/"
  9794. })
  9795. _box.appendChild(_iframe);
  9796. _box.appendChild(_jie);
  9797. _formdiv = new U.UF.UI.form(
  9798. "电子白板",
  9799. _box, {
  9800. "id": "whiteboards" + cid + stage + task + tool,
  9801. "style": {
  9802. "width": "90%",
  9803. "height": "90%",
  9804. "overflow": 'hidden'
  9805. },
  9806. "onresize": function () { }
  9807. }, {
  9808. closecallback: function () { }
  9809. }, {
  9810. "style": {
  9811. "height": "36px"
  9812. }
  9813. }).form; //创建窗体
  9814. _taskbar = {
  9815. "id": str + _formdiv.id,
  9816. "style": {
  9817. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9818. },
  9819. "name": "电子白板",
  9820. "forms": _formdiv,
  9821. "click": function () {
  9822. U.MD.D.I.openApplication(str, obj, info);
  9823. }
  9824. }
  9825. break;
  9826. case "mind":
  9827. aTool = 3;
  9828. _iframe = $$("iframe", {
  9829. "frameborder": "no",
  9830. "border": "0",
  9831. "scrolling ": "no",
  9832. "style": {
  9833. "cssText": "border:0;width:100%;height:100%"
  9834. },
  9835. "src": "/kityminder-editor/dist/index.html"
  9836. });
  9837. _box.appendChild(_iframe);
  9838. _box.appendChild(_jie);
  9839. _formdiv = new U.UF.UI.form(
  9840. "思维导图",
  9841. _box, { //"/jsmind/example/demo.html"
  9842. "id": "minds" + cid + stage + task + tool,
  9843. "style": {
  9844. "width": "90%",
  9845. "height": "90%",
  9846. "overflow": 'hidden'
  9847. },
  9848. "onresize": function () { }
  9849. }, {
  9850. closecallback: function () { }
  9851. }, {
  9852. "style": {
  9853. "height": "36px"
  9854. }
  9855. }).form; //创建窗体
  9856. _taskbar = {
  9857. "id": str + _formdiv.id,
  9858. "style": {
  9859. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9860. },
  9861. "name": "思维导图",
  9862. "forms": _formdiv,
  9863. "click": function () {
  9864. U.MD.D.I.openApplication(str, obj, info);
  9865. }
  9866. }
  9867. break;
  9868. case "doc":
  9869. aTool = 6;
  9870. _iframe = $$("iframe", {
  9871. "frameborder": "no",
  9872. "border": "0",
  9873. "scrolling ": "no",
  9874. "style": {
  9875. "cssText": "border:0;width:100%;height:100%"
  9876. },
  9877. "src": "/Office/Word/WordEditArea.htm"
  9878. })
  9879. _box.appendChild(_iframe);
  9880. _box.appendChild(_jie);
  9881. _formdiv = new U.UF.UI.form(
  9882. "协同文档",
  9883. _box, {
  9884. "id": "docs" + cid + stage + task + tool,
  9885. "style": {
  9886. "width": "90%",
  9887. "height": "90%",
  9888. "overflow": 'hidden'
  9889. },
  9890. "onresize": function () { }
  9891. }, {
  9892. closecallback: function () { }
  9893. }, {
  9894. "style": {
  9895. "height": "36px"
  9896. }
  9897. }).form; //创建窗体
  9898. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9899. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9900. })
  9901. _taskbar = {
  9902. "id": str + _formdiv.id,
  9903. "style": {
  9904. "backgroundImage": "url(/img/icon/doc.png)"
  9905. },
  9906. "name": "协同文档",
  9907. "forms": _formdiv,
  9908. "click": function () {
  9909. U.MD.D.I.openApplication(str, obj, info);
  9910. }
  9911. }
  9912. break;
  9913. }
  9914. const script1 = document.createElement("script");
  9915. script1.type = "text/javascript";
  9916. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9917. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9918. const script2 = document.createElement("script");
  9919. script2.type = "text/javascript";
  9920. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9921. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9922. const script3 = document.createElement("script");
  9923. script3.type = "text/javascript";
  9924. script3.charset = "UTF-8";
  9925. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9926. const script4 = document.createElement("script");
  9927. script4.type = "text/javascript";
  9928. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9929. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9930. if (_iframe) {
  9931. if (str == 'doc') {
  9932. _iframe = _formdiv.querySelector('iframe')
  9933. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9934. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9935. _iframe.contentWindow.document.body.appendChild(script1);
  9936. _iframe.contentWindow.document.body.appendChild(script2);
  9937. // _iframe.contentWindow.document.body.appendChild(script3);
  9938. _iframe.contentWindow.document.body.appendChild(script4);
  9939. })
  9940. if (onloadListener) {
  9941. _iframe.contentDocument.location.reload()
  9942. } else {
  9943. _iframe.contentDocument.location.reload()
  9944. }
  9945. } else if (str == 'mind') {
  9946. _iframe = _formdiv.querySelector('iframe')
  9947. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9948. _iframe.contentWindow.document.body.appendChild(script1);
  9949. _iframe.contentWindow.document.body.appendChild(script2);
  9950. _iframe.contentWindow.document.body.appendChild(script4);
  9951. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9952. })
  9953. if (onloadListener) {
  9954. _iframe.contentDocument.location.reload()
  9955. } else {
  9956. _iframe.contentDocument.location.reload()
  9957. }
  9958. } else {
  9959. _iframe.onload = () => {
  9960. _iframe.contentWindow.document.body.appendChild(script1);
  9961. _iframe.contentWindow.document.body.appendChild(script2);
  9962. // _iframe.contentWindow.document.body.appendChild(script3);
  9963. _iframe.contentWindow.document.body.appendChild(script4);
  9964. };
  9965. }
  9966. _jie.onclick = async () => {
  9967. let text = ''
  9968. if (aTool == 6) {
  9969. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9970. } else if (aTool == 3) {
  9971. text = await U.MD.D.I.getEditorContent(_iframe);
  9972. }
  9973. _loading.style.display = 'flex'
  9974. console.log(_loading);
  9975. var _ajs = _iframe.contentWindow.document.createElement("script");
  9976. _ajs.type = "text/javascript";
  9977. _ajs.innerHTML =
  9978. // 'console.log(' + _loading + ');\n' +
  9979. 'var _js = document.createElement("script");\n' +
  9980. '_js.type="text/javascript";\n' +
  9981. '_js.charset="UTF-8";\n' +
  9982. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9983. "_js.onload = function(){\n" +
  9984. ' var a = document.getElementsByTagName("img")\n' +
  9985. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9986. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9987. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9988. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9989. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9990. "beforeUpload_shishi(file," +
  9991. "'" +
  9992. _userid +
  9993. "'" +
  9994. ", " +
  9995. "'" +
  9996. _cid +
  9997. "'" +
  9998. ", " +
  9999. "'" +
  10000. _stage +
  10001. "'" +
  10002. ", " +
  10003. "'" +
  10004. _task +
  10005. "'" +
  10006. ", " +
  10007. "'" +
  10008. _tool +
  10009. "'" +
  10010. ", " +
  10011. "'" +
  10012. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10013. "'" +
  10014. ", " +
  10015. "'" +
  10016. aTool +
  10017. "'" +
  10018. ", " +
  10019. "`" +
  10020. text +
  10021. "`" +
  10022. ")\n" +
  10023. " });\n" +
  10024. "}\n" +
  10025. "document.head.appendChild(_js);\n";
  10026. _iframe.contentWindow.document.head.appendChild(_ajs);
  10027. }
  10028. }
  10029. //U.MD.D.I.openClick(str);
  10030. //如果有任务栏信息
  10031. // if (_taskbar) {
  10032. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10033. // }
  10034. }
  10035. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10036. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10037. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10038. _userinfo = US.userInfo, //登录用户信息
  10039. _userid = US.userInfo.userid //登录用户id
  10040. let _iframe;
  10041. let _cid = cid,
  10042. _stage = stage,
  10043. _task = task,
  10044. _tool = tool;
  10045. var _jie = $$("div", {
  10046. "style": {
  10047. "position": "absolute",
  10048. "bottom": "50px",
  10049. "right": "50px",
  10050. "zIndex": "9999",
  10051. "backgroundColor": "#2268bc",
  10052. "color": "#fff",
  10053. "padding": "12px 20px",
  10054. "cursor": "pointer",
  10055. "borderRadius": "4px",
  10056. },
  10057. "innerHTML": "确认并提交"
  10058. })
  10059. let aTool = ''
  10060. let _loading = document.createElement('div')
  10061. _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;"
  10062. // _loading.id = "";
  10063. let _lchild = document.createElement('div')
  10064. let _limg = document.createElement('img')
  10065. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10066. _limg.style = "width: 26px;margin-right: 10px;"
  10067. _lchild.appendChild(_limg)
  10068. let _lspan = document.createElement('span')
  10069. _lspan.innerHTML = "上传中..."
  10070. _lchild.appendChild(_lspan)
  10071. _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%);"
  10072. _loading.appendChild(_lchild)
  10073. var _box = $$('div', {
  10074. "style": {
  10075. "position": "relative",
  10076. "width": "100%",
  10077. "height": "100%",
  10078. },
  10079. })
  10080. _box.appendChild(_loading)
  10081. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10082. switch (str) {
  10083. case "whiteboard":
  10084. aTool = 1;
  10085. _iframe = $$("iframe", {
  10086. "frameborder": "no",
  10087. "border": "0",
  10088. "scrolling ": "no",
  10089. "style": {
  10090. "cssText": "border:0;width:100%;height:100%"
  10091. },
  10092. "src": "https://beta.iwb.cocorobo.cn/"
  10093. })
  10094. _box.appendChild(_iframe);
  10095. _box.appendChild(_jie);
  10096. _formdiv = new U.UF.UI.form(
  10097. "电子白板",
  10098. _box, {
  10099. "id": "whiteboards" + cid + stage + task + tool,
  10100. "style": {
  10101. "width": "90%",
  10102. "height": "90%",
  10103. "overflow": 'hidden'
  10104. },
  10105. "onresize": function () { }
  10106. }, {
  10107. closecallback: function () { }
  10108. }, {
  10109. "style": {
  10110. "height": "36px"
  10111. }
  10112. }).form; //创建窗体
  10113. _taskbar = {
  10114. "id": str + _formdiv.id,
  10115. "style": {
  10116. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10117. },
  10118. "name": "电子白板",
  10119. "forms": _formdiv,
  10120. "click": function () {
  10121. U.MD.D.I.openApplication(str, obj, info);
  10122. }
  10123. }
  10124. break;
  10125. case "mind":
  10126. aTool = 3;
  10127. _iframe = $$("iframe", {
  10128. "frameborder": "no",
  10129. "border": "0",
  10130. "scrolling ": "no",
  10131. "style": {
  10132. "cssText": "border:0;width:100%;height:100%"
  10133. },
  10134. "src": "/kityminder-editor/dist/index.html"
  10135. });
  10136. _box.appendChild(_iframe);
  10137. _box.appendChild(_jie);
  10138. _formdiv = new U.UF.UI.form(
  10139. "思维导图",
  10140. _box, { //"/jsmind/example/demo.html"
  10141. "id": "minds" + cid + stage + task + tool,
  10142. "style": {
  10143. "width": "90%",
  10144. "height": "90%",
  10145. "overflow": 'hidden'
  10146. },
  10147. "onresize": function () { }
  10148. }, {
  10149. closecallback: function () { }
  10150. }, {
  10151. "style": {
  10152. "height": "36px"
  10153. }
  10154. }).form; //创建窗体
  10155. _taskbar = {
  10156. "id": str + _formdiv.id,
  10157. "style": {
  10158. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10159. },
  10160. "name": "思维导图",
  10161. "forms": _formdiv,
  10162. "click": function () {
  10163. U.MD.D.I.openApplication(str, obj, info);
  10164. }
  10165. }
  10166. break;
  10167. case "doc":
  10168. aTool = 6;
  10169. _iframe = $$("iframe", {
  10170. "frameborder": "no",
  10171. "border": "0",
  10172. "scrolling ": "no",
  10173. "style": {
  10174. "cssText": "border:0;width:100%;height:100%"
  10175. },
  10176. "src": "/Office/Word/WordEditArea.htm"
  10177. })
  10178. _box.appendChild(_iframe);
  10179. _box.appendChild(_jie);
  10180. _formdiv = new U.UF.UI.form(
  10181. "协同文档",
  10182. _box, {
  10183. "id": "docs" + cid + stage + task + tool,
  10184. "style": {
  10185. "width": "90%",
  10186. "height": "90%",
  10187. "overflow": 'hidden'
  10188. },
  10189. "onresize": function () { }
  10190. }, {
  10191. closecallback: function () { }
  10192. }, {
  10193. "style": {
  10194. "height": "36px"
  10195. }
  10196. }).form; //创建窗体
  10197. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10198. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10199. })
  10200. _taskbar = {
  10201. "id": str + _formdiv.id,
  10202. "style": {
  10203. "backgroundImage": "url(/img/icon/doc.png)"
  10204. },
  10205. "name": "协同文档",
  10206. "forms": _formdiv,
  10207. "click": function () {
  10208. U.MD.D.I.openApplication(str, obj, info);
  10209. }
  10210. }
  10211. break;
  10212. }
  10213. const script1 = document.createElement("script");
  10214. script1.type = "text/javascript";
  10215. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10216. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10217. const script2 = document.createElement("script");
  10218. script2.type = "text/javascript";
  10219. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10220. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10221. const script3 = document.createElement("script");
  10222. script3.type = "text/javascript";
  10223. script3.charset = "UTF-8";
  10224. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10225. const script4 = document.createElement("script");
  10226. script4.type = "text/javascript";
  10227. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10228. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10229. if (_iframe) {
  10230. if (str == 'doc') {
  10231. _iframe = _formdiv.querySelector('iframe')
  10232. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10233. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10234. _iframe.contentWindow.document.body.appendChild(script1);
  10235. _iframe.contentWindow.document.body.appendChild(script2);
  10236. // _iframe.contentWindow.document.body.appendChild(script3);
  10237. _iframe.contentWindow.document.body.appendChild(script4);
  10238. })
  10239. if (onloadListener) {
  10240. _iframe.contentDocument.location.reload()
  10241. } else {
  10242. _iframe.contentDocument.location.reload()
  10243. }
  10244. } else if (str == 'mind') {
  10245. _iframe = _formdiv.querySelector('iframe')
  10246. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10247. _iframe.contentWindow.document.body.appendChild(script1);
  10248. _iframe.contentWindow.document.body.appendChild(script2);
  10249. _iframe.contentWindow.document.body.appendChild(script4);
  10250. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10251. })
  10252. if (onloadListener) {
  10253. _iframe.contentDocument.location.reload()
  10254. } else {
  10255. _iframe.contentDocument.location.reload()
  10256. }
  10257. } else {
  10258. _iframe.onload = () => {
  10259. _iframe.contentWindow.document.body.appendChild(script1);
  10260. _iframe.contentWindow.document.body.appendChild(script2);
  10261. // _iframe.contentWindow.document.body.appendChild(script3);
  10262. _iframe.contentWindow.document.body.appendChild(script4);
  10263. };
  10264. }
  10265. _jie.onclick = async () => {
  10266. let text = ''
  10267. if (aTool == 6) {
  10268. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10269. } else if (aTool == 3) {
  10270. text = await U.MD.D.I.getEditorContent(_iframe);
  10271. }
  10272. _loading.style.display = 'flex'
  10273. console.log(_loading);
  10274. var _ajs = _iframe.contentWindow.document.createElement("script");
  10275. _ajs.type = "text/javascript";
  10276. _ajs.innerHTML =
  10277. // 'console.log(' + _loading + ');\n' +
  10278. 'var _js = document.createElement("script");\n' +
  10279. '_js.type="text/javascript";\n' +
  10280. '_js.charset="UTF-8";\n' +
  10281. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10282. "_js.onload = function(){\n" +
  10283. ' var a = document.getElementsByTagName("img")\n' +
  10284. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10285. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10286. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10287. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10288. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10289. "beforeUpload_shishi(file," +
  10290. "'" +
  10291. _userid +
  10292. "'" +
  10293. ", " +
  10294. "'" +
  10295. _cid +
  10296. "'" +
  10297. ", " +
  10298. "'" +
  10299. _stage +
  10300. "'" +
  10301. ", " +
  10302. "'" +
  10303. _task +
  10304. "'" +
  10305. ", " +
  10306. "'" +
  10307. _tool +
  10308. "'" +
  10309. ", " +
  10310. "'" +
  10311. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10312. "'" +
  10313. ", " +
  10314. "'" +
  10315. aTool +
  10316. "'" +
  10317. ", " +
  10318. "`" +
  10319. text +
  10320. "`" +
  10321. ")\n" +
  10322. " });\n" +
  10323. "}\n" +
  10324. "document.head.appendChild(_js);\n";
  10325. _iframe.contentWindow.document.head.appendChild(_ajs);
  10326. }
  10327. }
  10328. //U.MD.D.I.openClick(str);
  10329. //如果有任务栏信息
  10330. // if (_taskbar) {
  10331. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10332. // }
  10333. }
  10334. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10335. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10336. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10337. _userinfo = US.userInfo, //登录用户信息
  10338. _userid = US.userInfo.userid //登录用户id
  10339. let _iframe;
  10340. let _cid = cid,
  10341. _stage = stage,
  10342. _task = task,
  10343. _tool = tool;
  10344. var _jie = $$("div", {
  10345. "style": {
  10346. "position": "absolute",
  10347. "bottom": "50px",
  10348. "right": "50px",
  10349. "zIndex": "9999",
  10350. "backgroundColor": "#2268bc",
  10351. "color": "#fff",
  10352. "padding": "12px 20px",
  10353. "cursor": "pointer",
  10354. "borderRadius": "4px",
  10355. },
  10356. "innerHTML": "上传模板"
  10357. })
  10358. let aTool = ''
  10359. let _loading = document.createElement('div')
  10360. _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;"
  10361. // _loading.id = "";
  10362. let _lchild = document.createElement('div')
  10363. let _limg = document.createElement('img')
  10364. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10365. _limg.style = "width: 26px;margin-right: 10px;"
  10366. _lchild.appendChild(_limg)
  10367. let _lspan = document.createElement('span')
  10368. _lspan.innerHTML = "上传中..."
  10369. _lchild.appendChild(_lspan)
  10370. _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%);"
  10371. _loading.appendChild(_lchild)
  10372. var _box = $$('div', {
  10373. "style": {
  10374. "position": "relative",
  10375. "width": "100%",
  10376. "height": "100%",
  10377. },
  10378. })
  10379. _box.appendChild(_loading)
  10380. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10381. switch (str) {
  10382. case "whiteboard":
  10383. aTool = 1;
  10384. _iframe = $$("iframe", {
  10385. "frameborder": "no",
  10386. "border": "0",
  10387. "scrolling ": "no",
  10388. "style": {
  10389. "cssText": "border:0;width:100%;height:100%"
  10390. },
  10391. "src": "https://beta.iwb.cocorobo.cn/"
  10392. })
  10393. _box.appendChild(_iframe);
  10394. _box.appendChild(_jie);
  10395. _formdiv = new U.UF.UI.form(
  10396. "电子白板",
  10397. _box, {
  10398. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10399. "style": {
  10400. "width": "90%",
  10401. "height": "90%",
  10402. "overflow": 'hidden'
  10403. },
  10404. "onresize": function () { }
  10405. }, {
  10406. closecallback: function () { }
  10407. }, {
  10408. "style": {
  10409. "height": "36px"
  10410. }
  10411. }).form; //创建窗体
  10412. _taskbar = {
  10413. "id": str + _formdiv.id,
  10414. "style": {
  10415. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10416. },
  10417. "name": "电子白板",
  10418. "forms": _formdiv,
  10419. "click": function () {
  10420. U.MD.D.I.openApplication(str, obj, info);
  10421. }
  10422. }
  10423. break;
  10424. case "mind":
  10425. aTool = 3;
  10426. _iframe = $$("iframe", {
  10427. "frameborder": "no",
  10428. "border": "0",
  10429. "scrolling ": "no",
  10430. "style": {
  10431. "cssText": "border:0;width:100%;height:100%"
  10432. },
  10433. "src": "/kityminder-editor/dist/index.html"
  10434. });
  10435. _box.appendChild(_iframe);
  10436. _box.appendChild(_jie);
  10437. _formdiv = new U.UF.UI.form(
  10438. "思维导图",
  10439. _box, { //"/jsmind/example/demo.html"
  10440. "id": "minds_Yu" + cid + stage + task + tool,
  10441. "style": {
  10442. "width": "90%",
  10443. "height": "90%",
  10444. "overflow": 'hidden'
  10445. },
  10446. "onresize": function () { }
  10447. }, {
  10448. closecallback: function () { }
  10449. }, {
  10450. "style": {
  10451. "height": "36px"
  10452. }
  10453. }).form; //创建窗体
  10454. _taskbar = {
  10455. "id": str + _formdiv.id,
  10456. "style": {
  10457. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10458. },
  10459. "name": "思维导图",
  10460. "forms": _formdiv,
  10461. "click": function () {
  10462. U.MD.D.I.openApplication(str, obj, info);
  10463. }
  10464. }
  10465. break;
  10466. case "doc":
  10467. aTool = 6;
  10468. _iframe = $$("iframe", {
  10469. "frameborder": "no",
  10470. "border": "0",
  10471. "scrolling ": "no",
  10472. "style": {
  10473. "cssText": "border:0;width:100%;height:100%"
  10474. },
  10475. "src": "/Office/Word/WordEditArea.htm"
  10476. })
  10477. _box.appendChild(_iframe);
  10478. _box.appendChild(_jie);
  10479. _formdiv = new U.UF.UI.form(
  10480. "协同文档",
  10481. _box, {
  10482. "id": "docs_Yu" + cid + stage + task + tool,
  10483. "style": {
  10484. "width": "90%",
  10485. "height": "90%",
  10486. "overflow": 'hidden'
  10487. },
  10488. "onresize": function () { }
  10489. }, {
  10490. closecallback: function () { }
  10491. }, {
  10492. "style": {
  10493. "height": "36px"
  10494. }
  10495. }).form; //创建窗体
  10496. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10497. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10498. })
  10499. _taskbar = {
  10500. "id": str + _formdiv.id,
  10501. "style": {
  10502. "backgroundImage": "url(/img/icon/doc.png)"
  10503. },
  10504. "name": "协同文档",
  10505. "forms": _formdiv,
  10506. "click": function () {
  10507. U.MD.D.I.openApplication(str, obj, info);
  10508. }
  10509. }
  10510. break;
  10511. case "CocoPi":
  10512. aTool = 57;
  10513. _iframe = $$("iframe", {
  10514. "allowpaymentrequest": "allowpaymentrequest",
  10515. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10516. "webkitallowfullscreen": "",
  10517. "mozallowfullscreen": "",
  10518. "frameborder": "no",
  10519. "border": "0",
  10520. "scrolling ": "no",
  10521. "style": {
  10522. "cssText": "border:0;width:100%;height:100%"
  10523. },
  10524. "src": "https://pi.cocorobo.cn/"
  10525. })
  10526. _box.appendChild(_iframe);
  10527. _box.appendChild(_jie);
  10528. _formdiv = new U.UF.UI.form(
  10529. "CocoPi",
  10530. _box, {
  10531. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10532. "style": {
  10533. "width": "90%",
  10534. "height": "90%",
  10535. "overflow": 'hidden'
  10536. },
  10537. "onresize": function () { }
  10538. }, {
  10539. closecallback: function () { }
  10540. }, {
  10541. "style": {
  10542. "height": "36px"
  10543. }
  10544. }).form; //创建窗体
  10545. _taskbar = {
  10546. "id": str + _formdiv.id,
  10547. "style": {
  10548. "backgroundImage": "url(/img/icon/cocopi.png)"
  10549. },
  10550. "name": "CocoPi",
  10551. "forms": _formdiv,
  10552. "click": function () {
  10553. U.MD.D.I.openApplication(str, obj, info);
  10554. }
  10555. }
  10556. break;
  10557. }
  10558. if (_iframe) {
  10559. if (str == 'doc') {
  10560. _iframe = _formdiv.querySelector('iframe')
  10561. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10562. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10563. })
  10564. if (onloadListener) {
  10565. _iframe.contentDocument.location.reload()
  10566. } else {
  10567. _iframe.contentDocument.location.reload()
  10568. }
  10569. } else if (str == 'mind') {
  10570. _iframe = _formdiv.querySelector('iframe')
  10571. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10572. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10573. })
  10574. if (onloadListener) {
  10575. _iframe.contentDocument.location.reload()
  10576. } else {
  10577. _iframe.contentDocument.location.reload()
  10578. }
  10579. } else if (str == 'whiteboard') {
  10580. _iframe = _formdiv.querySelector('iframe')
  10581. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10582. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10583. })
  10584. // if (onloadListener) {
  10585. // try {
  10586. // _iframe.src += "?cocorobo="+new Date().getTime()
  10587. // _iframe.contentWindow.document.location.reload()
  10588. // } catch (error) {
  10589. // }
  10590. // } else {
  10591. // _iframe.contentDocument.location.reload()
  10592. // }
  10593. } else if (str == 'CocoPi') {
  10594. _iframe = _formdiv.querySelector('iframe')
  10595. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10596. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10597. })
  10598. if (onloadListener) {
  10599. _iframe.contentDocument.location.reload()
  10600. } else {
  10601. _iframe.contentDocument.location.reload()
  10602. }
  10603. } else {
  10604. _iframe.onload = () => { };
  10605. }
  10606. _jie.onclick = async () => {
  10607. let text = ''
  10608. let type = '2'
  10609. if (aTool == 1) {
  10610. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10611. type = '3'
  10612. } else if (aTool == 6) {
  10613. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10614. type = '1'
  10615. } else if (aTool == 3) {
  10616. text = await U.MD.D.I.getEditorContent(_iframe);
  10617. type = '2'
  10618. } else if (aTool == 57) {
  10619. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10620. type = '4'
  10621. }
  10622. _loading.style.display = 'flex'
  10623. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10624. }
  10625. }
  10626. //U.MD.D.I.openClick(str);
  10627. //如果有任务栏信息
  10628. // if (_taskbar) {
  10629. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10630. // }
  10631. }
  10632. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10633. var xmlhttp;
  10634. var Mac, Sn, DeviceId
  10635. if (window.XMLHttpRequest) {
  10636. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10637. xmlhttp = new XMLHttpRequest();
  10638. } else {
  10639. // IE6, IE5 浏览器执行代码
  10640. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10641. }
  10642. xmlhttp.onreadystatechange = function () {
  10643. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10644. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10645. // resolve(res.value[0][0].text);
  10646. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10647. }
  10648. }
  10649. }
  10650. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10651. xmlhttp.send();
  10652. }
  10653. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10654. var xmlhttp;
  10655. var Mac, Sn, DeviceId
  10656. if (window.XMLHttpRequest) {
  10657. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10658. xmlhttp = new XMLHttpRequest();
  10659. } else {
  10660. // IE6, IE5 浏览器执行代码
  10661. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10662. }
  10663. xmlhttp.onreadystatechange = function () {
  10664. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10665. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10666. // resolve(res.value[0][0].text);
  10667. if (type == '2') {
  10668. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10669. } else if (type == '3') {
  10670. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10671. } else if (type == '4') {
  10672. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10673. }
  10674. } else {
  10675. if (type == '2') {
  10676. iframe.contentWindow.editor.minder.importData('json', '')
  10677. } else if (type == '3') {
  10678. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10679. } else if (type == '4') {
  10680. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10681. }
  10682. }
  10683. }
  10684. }
  10685. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10686. xmlhttp.send();
  10687. }
  10688. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10689. var xmlhttp;
  10690. var Mac, Sn, DeviceId
  10691. if (window.XMLHttpRequest) {
  10692. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10693. xmlhttp = new XMLHttpRequest();
  10694. } else {
  10695. // IE6, IE5 浏览器执行代码
  10696. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10697. }
  10698. xmlhttp.onreadystatechange = function () {
  10699. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10700. if (xmlhttp.response) {
  10701. // resolve(res.value[0][0].text);
  10702. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10703. // $(fileInput).val('');
  10704. // });
  10705. span.innerHTML = '上传成功'
  10706. setTimeout(() => {
  10707. loading.style.display = 'none'
  10708. }, 1000);
  10709. }
  10710. }
  10711. }
  10712. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10713. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10714. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10715. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10716. // 设置请求头,表示请求体的编码格式
  10717. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10718. // 设置请求体,使用url-encoded格式的数据
  10719. }
  10720. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10721. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10722. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10723. _userinfo = US.userInfo, //登录用户信息
  10724. _userid = US.userInfo.userid //登录用户id
  10725. let _iframe;
  10726. let _cid = cid,
  10727. _stage = stage,
  10728. _task = task,
  10729. _tool = tool;
  10730. var _jie = $$("div", {
  10731. "style": {
  10732. "position": "absolute",
  10733. "bottom": "50px",
  10734. "right": "50px",
  10735. "zIndex": "9999",
  10736. "backgroundColor": "#2268bc",
  10737. "color": "#fff",
  10738. "padding": "12px 20px",
  10739. "cursor": "pointer",
  10740. "borderRadius": "4px",
  10741. },
  10742. "innerHTML": "提交作业"
  10743. })
  10744. let aTool = ''
  10745. let _loading = document.createElement('div')
  10746. _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;"
  10747. // _loading.id = "";
  10748. let _lchild = document.createElement('div')
  10749. let _limg = document.createElement('img')
  10750. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10751. _limg.style = "width: 26px;margin-right: 10px;"
  10752. _lchild.appendChild(_limg)
  10753. let _lspan = document.createElement('span')
  10754. _lspan.innerHTML = "上传中..."
  10755. _lchild.appendChild(_lspan)
  10756. _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%);"
  10757. _loading.appendChild(_lchild)
  10758. var _box = $$('div', {
  10759. "style": {
  10760. "position": "relative",
  10761. "width": "100%",
  10762. "height": "100%",
  10763. },
  10764. })
  10765. _box.appendChild(_loading)
  10766. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10767. switch (str) {
  10768. case "CocoPi":
  10769. aTool = 57;
  10770. _iframe = $$("iframe", {
  10771. "allowpaymentrequest": "allowpaymentrequest",
  10772. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10773. "webkitallowfullscreen": "",
  10774. "mozallowfullscreen": "",
  10775. "frameborder": "no",
  10776. "border": "0",
  10777. "scrolling ": "no",
  10778. "style": {
  10779. "cssText": "border:0;width:100%;height:100%"
  10780. },
  10781. "src": "https://pi.cocorobo.cn/"
  10782. })
  10783. _box.appendChild(_iframe);
  10784. _box.appendChild(_jie);
  10785. _formdiv = new U.UF.UI.form(
  10786. "CocoPi",
  10787. _box, {
  10788. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10789. "style": {
  10790. "width": "90%",
  10791. "height": "90%",
  10792. "overflow": 'hidden'
  10793. },
  10794. "onresize": function () { }
  10795. }, {
  10796. closecallback: function () { }
  10797. }, {
  10798. "style": {
  10799. "height": "36px"
  10800. }
  10801. }).form; //创建窗体
  10802. _taskbar = {
  10803. "id": str + _formdiv.id,
  10804. "style": {
  10805. "backgroundImage": "url(/img/icon/cocopi.png)"
  10806. },
  10807. "name": "CocoPi",
  10808. "forms": _formdiv,
  10809. "click": function () {
  10810. U.MD.D.I.openApplication(str, obj, info);
  10811. }
  10812. }
  10813. break;
  10814. }
  10815. if (_iframe) {
  10816. if (str == 'CocoPi') {
  10817. _iframe = _formdiv.querySelector('iframe')
  10818. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10819. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10820. })
  10821. if (onloadListener) {
  10822. _iframe.contentDocument.location.reload()
  10823. } else {
  10824. _iframe.contentDocument.location.reload()
  10825. }
  10826. }
  10827. _jie.onclick = async () => {
  10828. let text = ''
  10829. if (aTool == 57) {
  10830. text = _iframe.contentWindow.getLoadXmlStr()
  10831. }
  10832. _loading.style.display = 'flex'
  10833. console.log(_loading);
  10834. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10835. _loading.style.display = 'none'
  10836. let _div = document.createElement('div')
  10837. _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;"
  10838. let _inner = document.createElement('div')
  10839. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10840. _inner.innerHTML = "上传成功"
  10841. _div.appendChild(_inner)
  10842. _iframe.contentWindow.window.document.body.appendChild(_div)
  10843. _div.onclick = () => {
  10844. _iframe.contentWindow.window.document.body.removeChild(_div)
  10845. }
  10846. setTimeout(() => {
  10847. _iframe.contentWindow.window.document.body.removeChild(_div)
  10848. }, 1000);
  10849. }, [], { "type": "POST", "withCredentials": true });
  10850. }
  10851. }
  10852. }
  10853. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10854. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10855. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10856. _userid = student.userid, //登录用户id
  10857. _username = student.student //用户名字
  10858. let _iframe;
  10859. let _cid = cid,
  10860. _stage = stage,
  10861. _task = task,
  10862. _tool = tool;
  10863. var _jie = $$("div", {
  10864. "style": {
  10865. "position": "absolute",
  10866. "bottom": "50px",
  10867. "right": "50px",
  10868. "zIndex": "9999",
  10869. "backgroundColor": "#2268bc",
  10870. "color": "#fff",
  10871. "padding": "12px 20px",
  10872. "cursor": "pointer",
  10873. "borderRadius": "4px",
  10874. },
  10875. "innerHTML": "提交作业"
  10876. })
  10877. let aTool = ''
  10878. let _loading = document.createElement('div')
  10879. _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;"
  10880. // _loading.id = "";
  10881. let _lchild = document.createElement('div')
  10882. let _limg = document.createElement('img')
  10883. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10884. _limg.style = "width: 26px;margin-right: 10px;"
  10885. _lchild.appendChild(_limg)
  10886. let _lspan = document.createElement('span')
  10887. _lspan.innerHTML = "上传中..."
  10888. _lchild.appendChild(_lspan)
  10889. _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%);"
  10890. _loading.appendChild(_lchild)
  10891. var _box = $$('div', {
  10892. "style": {
  10893. "position": "relative",
  10894. "width": "100%",
  10895. "height": "100%",
  10896. },
  10897. })
  10898. _box.appendChild(_loading)
  10899. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10900. switch (str) {
  10901. case "CocoPi":
  10902. aTool = 57;
  10903. _iframe = $$("iframe", {
  10904. "allowpaymentrequest": "allowpaymentrequest",
  10905. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10906. "webkitallowfullscreen": "",
  10907. "mozallowfullscreen": "",
  10908. "frameborder": "no",
  10909. "border": "0",
  10910. "scrolling ": "no",
  10911. "style": {
  10912. "cssText": "border:0;width:100%;height:100%"
  10913. },
  10914. "src": "https://pi.cocorobo.cn/"
  10915. })
  10916. _box.appendChild(_iframe);
  10917. _box.appendChild(_jie);
  10918. _formdiv = new U.UF.UI.form(
  10919. "CocoPi-" + _username,
  10920. _box, {
  10921. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10922. "style": {
  10923. "width": "90%",
  10924. "height": "90%",
  10925. "overflow": 'hidden'
  10926. },
  10927. "onresize": function () { }
  10928. }, {
  10929. closecallback: function () { }
  10930. }, {
  10931. "style": {
  10932. "height": "36px"
  10933. }
  10934. }).form; //创建窗体
  10935. _taskbar = {
  10936. "id": str + _formdiv.id,
  10937. "style": {
  10938. "backgroundImage": "url(/img/icon/cocopi.png)"
  10939. },
  10940. "name": "CocoPi",
  10941. "forms": _formdiv,
  10942. "click": function () {
  10943. U.MD.D.I.openApplication(str, obj, info);
  10944. }
  10945. }
  10946. break;
  10947. }
  10948. if (_iframe) {
  10949. if (str == 'CocoPi') {
  10950. _iframe = _formdiv.querySelector('iframe')
  10951. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10952. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10953. })
  10954. if (onloadListener) {
  10955. _iframe.contentDocument.location.reload()
  10956. } else {
  10957. _iframe.contentDocument.location.reload()
  10958. }
  10959. }
  10960. _jie.onclick = async () => {
  10961. let text = ''
  10962. if (aTool == 57) {
  10963. text = _iframe.contentWindow.getLoadXmlStr()
  10964. }
  10965. _loading.style.display = 'flex'
  10966. console.log(_loading);
  10967. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10968. _loading.style.display = 'none'
  10969. let _div = document.createElement('div')
  10970. _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;"
  10971. let _inner = document.createElement('div')
  10972. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10973. _inner.innerHTML = "上传成功"
  10974. _div.appendChild(_inner)
  10975. _iframe.contentWindow.window.document.body.appendChild(_div)
  10976. _div.onclick = () => {
  10977. _iframe.contentWindow.window.document.body.removeChild(_div)
  10978. }
  10979. setTimeout(() => {
  10980. _iframe.contentWindow.window.document.body.removeChild(_div)
  10981. }, 1000);
  10982. }, [], { "type": "POST", "withCredentials": true });
  10983. }
  10984. }
  10985. }
  10986. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10987. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10988. if (res.value[0].length > 0) {
  10989. if (atool == 57) {
  10990. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10991. }
  10992. } else {
  10993. if (atool == 57) {
  10994. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10995. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10996. }
  10997. }
  10998. }, [], { "type": "POST", "withCredentials": true });
  10999. }
  11000. U.MD.D.addOp = function(text,type,time){
  11001. var userInfo = US.userInfo;
  11002. if(Object.keys(userInfo).length !== 0){
  11003. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11004. }, [], { "type": "POST", "withCredentials": true });
  11005. }
  11006. }