DeskTop.js 713 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325
  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.hkaceteacherDeskIcon = [
  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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  751. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  752. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  753. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  754. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  755. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  756. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  757. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  758. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  761. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  762. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  763. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  764. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceStudentDeskIcon = [
  769. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  772. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  773. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  774. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  775. ];
  776. //香海正覺蓮社佛教正覺中學
  777. U.MD.D.I.hkZJLSteacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  781. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  782. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  783. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  784. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  785. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  786. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  787. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  788. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  789. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  790. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //香海正覺蓮社佛教正覺中學
  796. U.MD.D.I.hkZJLSStudentDeskIcon = [
  797. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  798. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  799. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  800. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  801. ];
  802. //云海
  803. U.MD.D.I.yunhaiTeacherDeskIcon = [
  804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  806. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  807. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  808. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  809. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  814. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  815. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  816. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  817. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  818. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  819. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //福田
  824. U.MD.D.I.heyuanTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  828. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  829. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  830. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  831. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  832. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  833. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  834. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  836. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  837. ];
  838. //福田
  839. U.MD.D.I.heyuanAdminDeskIcon = [
  840. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  841. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  842. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  843. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  844. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  845. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  846. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  847. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  848. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  849. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  850. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  851. ];
  852. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  853. U.MD.D.I.szherTeacherDeskIcon = [
  854. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  855. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  856. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  857. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  858. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  859. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  862. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  864. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  865. ];
  866. //dsei
  867. U.MD.D.I.dseiTeacherDeskIcon = [
  868. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  869. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  870. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  871. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  872. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  873. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  874. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  875. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  876. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  877. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  878. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  879. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  880. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  881. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  882. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  883. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  884. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  885. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  886. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  887. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  888. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  889. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  890. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  891. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  892. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  893. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  894. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  895. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  896. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  897. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  898. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  899. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  900. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  901. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  902. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  903. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  904. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  905. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  907. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  908. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  909. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  910. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  911. ];
  912. //dsei
  913. U.MD.D.I.dseiAdminDeskIcon = [
  914. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  915. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  916. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  917. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  921. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  922. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  923. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  924. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  925. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  926. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  927. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  928. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  929. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  930. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  931. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  932. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  933. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  934. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  935. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  936. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  937. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  938. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  939. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  940. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  941. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  942. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  943. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  944. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  945. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  946. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  947. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  948. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  949. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  950. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  951. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  952. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  953. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  954. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  955. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  956. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  957. ];
  958. //dsei
  959. U.MD.D.I.dseiStudentDeskIcon = [
  960. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  961. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  962. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  963. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  964. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  965. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  966. ];
  967. //未来教育基地
  968. U.MD.D.I.szjkyTeacherDeskIcon = [
  969. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  970. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  971. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  972. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  973. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  974. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  975. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  976. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  977. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  978. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  979. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  980. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  981. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  982. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  983. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  984. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  985. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  986. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  987. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  988. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  989. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  990. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  991. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  992. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  993. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  994. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  995. ];
  996. //未来教育基地
  997. U.MD.D.I.szjkyAdminDeskIcon = [
  998. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  999. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1003. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1004. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1005. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1006. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1007. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1008. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1009. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1010. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1011. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1012. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1013. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1014. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1015. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1016. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1017. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1018. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1019. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1020. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1021. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1022. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1023. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1024. ];
  1025. //未来教育基地
  1026. U.MD.D.I.szjkyStudentDeskIcon = [
  1027. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1030. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1031. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1032. ];
  1033. //成华教育局
  1034. U.MD.D.I.chjyjTeacherDeskIcon = [
  1035. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1036. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1040. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1041. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1042. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1043. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1044. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1045. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1046. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1049. ];
  1050. //成华教育局chjyj
  1051. U.MD.D.I.chjyjAdminDeskIcon = [
  1052. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1053. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1054. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1055. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1056. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1057. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1058. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1059. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1060. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1061. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1062. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1063. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1064. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1065. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1066. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1067. ];
  1068. //成华教育局chjyj
  1069. U.MD.D.I.chjyjStudentDeskIcon = [
  1070. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1071. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1072. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1073. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1074. ];
  1075. //tpc
  1076. U.MD.D.I.tpcStudentDeskIcon = [
  1077. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1081. ];
  1082. //tpc
  1083. U.MD.D.I.tpcTeacherDeskIcon = [
  1084. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1085. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1086. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1087. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1088. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1089. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //tpc
  1093. U.MD.D.I.tpcAdminDeskIcon = [
  1094. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1095. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1100. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1101. ];
  1102. //THU-IOE
  1103. U.MD.D.I.thuioeTeacherDeskIcon = [
  1104. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1105. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1107. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1108. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1110. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1111. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1112. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1113. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1114. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1115. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1116. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1117. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1118. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1119. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1120. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1121. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1122. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1123. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1124. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1125. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1126. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1127. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1128. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1129. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1130. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1131. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1132. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1133. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1134. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1135. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1136. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1137. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1138. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1139. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1141. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1142. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1143. ];
  1144. //THU-IOE
  1145. U.MD.D.I.thuioeStudentDeskIcon = [
  1146. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1149. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1150. ];
  1151. //jccssyl
  1152. U.MD.D.I.jccssylTeacherDeskIcon = [
  1153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1155. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1157. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1158. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1159. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1160. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1161. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1162. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1163. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1164. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1165. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1166. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1167. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1168. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1169. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1170. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1171. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1172. ];
  1173. //jccssyl
  1174. U.MD.D.I.jccssylStudentDeskIcon = [
  1175. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1176. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1177. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1178. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1179. ];
  1180. //cale
  1181. U.MD.D.I.caleTeacherDeskIcon = [
  1182. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1183. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1184. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1185. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1186. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1187. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1188. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1189. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1190. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1191. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1192. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1193. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1194. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1195. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1196. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1197. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1198. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1199. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1200. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1201. ];
  1202. //cale
  1203. U.MD.D.I.caleStudentDeskIcon = [
  1204. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1205. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1206. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1207. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1208. ];
  1209. //lqwmsgzs
  1210. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1211. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1212. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1214. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1215. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1216. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1217. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1218. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1219. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1221. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1222. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1223. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1224. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1225. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1226. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1227. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1228. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1229. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1230. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1231. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1232. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1233. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1234. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1235. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1236. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1237. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1238. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1239. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1240. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1241. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1242. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1243. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1244. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1245. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1246. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1247. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1248. ];
  1249. //lqwmsgzs
  1250. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1251. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1252. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1253. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1254. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1255. ];
  1256. //盐田区幼儿园
  1257. U.MD.D.I.ytyTeacherDeskIcon = [
  1258. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1259. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1260. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1261. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1262. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1263. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1264. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1265. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1267. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1268. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1269. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1270. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1271. ];
  1272. //盐田区幼儿园
  1273. U.MD.D.I.ytyStudentDeskIcon = [
  1274. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  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. ];
  1278. //scnuai
  1279. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1280. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1281. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1282. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1283. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1284. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1285. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1286. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1287. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1288. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1289. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1290. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1291. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1292. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1296. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1297. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1298. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1299. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1300. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1301. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1302. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1303. ];
  1304. //scnuai
  1305. U.MD.D.I.scnuaiAdminDeskIcon = [
  1306. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1307. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1308. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1309. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1310. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1311. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1312. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1313. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1314. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1315. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1316. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1317. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1318. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1320. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1321. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1322. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1323. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1324. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1325. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1326. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1327. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1328. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1329. ];
  1330. //scnuai
  1331. U.MD.D.I.scnuaiStudentDeskIcon = [
  1332. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1336. ];
  1337. //cocobiz
  1338. U.MD.D.I.cocobizteacherDeskIcon = [
  1339. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1340. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1341. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1342. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1343. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1345. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1346. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1347. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1348. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1349. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1350. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1351. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1352. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1354. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1355. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1356. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1357. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1358. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1359. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1360. ];
  1361. //cocobiz
  1362. U.MD.D.I.cocobizStudentDeskIcon = [
  1363. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1364. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1366. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1367. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1368. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1369. ];
  1370. //xxzjky
  1371. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1372. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1373. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1374. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1375. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1376. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1377. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1378. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1379. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1380. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1381. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1382. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1383. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1384. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1385. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1386. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1387. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1388. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1389. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1391. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1392. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1393. ];
  1394. //xxzjky
  1395. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1396. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1397. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1398. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1399. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1400. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1401. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1402. ];
  1403. //nsfx
  1404. U.MD.D.I.nsfxTeacherDeskIcon = [
  1405. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1406. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1407. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1408. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1409. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1410. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1411. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1412. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1413. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1414. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1415. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1416. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1417. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1418. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1419. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1420. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1421. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1422. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1423. ];
  1424. //nsfx
  1425. U.MD.D.I.nsfxStudentDeskIcon = [
  1426. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1427. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1428. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. ];
  1431. //stia
  1432. U.MD.D.I.stiaTeacherDeskIcon = [
  1433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1437. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1438. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1439. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.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": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1443. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1444. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1445. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1446. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1447. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1448. ];
  1449. //stia
  1450. U.MD.D.I.stiaStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. ];
  1456. //szdjg
  1457. U.MD.D.I.szdjgTeacherDeskIcon = [
  1458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. ];
  1461. //szdjg
  1462. U.MD.D.I.szdjgStudentDeskIcon = [
  1463. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. ];
  1468. //010607
  1469. U.MD.D.I.x010607TeacherDeskIcon = [
  1470. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1471. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1473. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1474. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1475. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1476. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1477. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1478. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1479. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1481. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1482. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1483. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1484. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1485. ];
  1486. //010607
  1487. U.MD.D.I.x010607StudentDeskIcon = [
  1488. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //010608
  1494. U.MD.D.I.x010608TeacherDeskIcon = [
  1495. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1505. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1506. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1507. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1508. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1509. ];
  1510. //010608
  1511. U.MD.D.I.x010608StudentDeskIcon = [
  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. //xhly
  1518. U.MD.D.I.xhlyTeacherDeskIcon = [
  1519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1520. ];
  1521. //010608
  1522. U.MD.D.I.xhlyStudentDeskIcon = [
  1523. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. ];
  1525. //北师大
  1526. U.MD.D.I.BSDNSteacherDeskIcon = [
  1527. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1528. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1529. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1530. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1531. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1534. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1535. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1536. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1537. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1538. ];
  1539. //北师大
  1540. U.MD.D.I.BSDNSstudentDeskIcon = [
  1541. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1542. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1543. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1544. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1545. ];
  1546. //CUHK_EDU
  1547. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1548. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1549. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1551. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1552. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1555. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1556. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1557. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1558. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1559. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1560. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1561. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1562. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1563. ];
  1564. //CUHK_EDU
  1565. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1566. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //010503
  1572. U.MD.D.I.x010503TeacherDeskIcon = [
  1573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1579. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1580. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1581. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1582. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1583. ];
  1584. //010503
  1585. U.MD.D.I.x010503StudentDeskIcon = [
  1586. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1587. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1588. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1589. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1590. ];
  1591. //SPROUT Lab
  1592. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1593. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1594. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1595. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1596. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1597. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1599. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1602. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1603. ];
  1604. //SPROUT Lab
  1605. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1606. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1609. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1610. ];
  1611. //010204
  1612. U.MD.D.I.x010204TeacherDeskIcon = [
  1613. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1614. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1615. ];
  1616. //010204
  1617. U.MD.D.I.x010204StudentDeskIcon = [
  1618. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1619. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1620. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1621. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1622. ];
  1623. //trail
  1624. U.MD.D.I.trailTeacherDeskIcon = [
  1625. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1626. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1627. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1628. ];
  1629. //trail
  1630. U.MD.D.I.trailStudentDeskIcon = [
  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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1635. ];
  1636. //trial
  1637. U.MD.D.I.trialTeacherDeskIcon = [
  1638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1641. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1642. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1643. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1644. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1645. ];
  1646. //trial
  1647. U.MD.D.I.trialStudentDeskIcon = [
  1648. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1649. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1650. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1651. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1652. ];
  1653. //010504
  1654. U.MD.D.I.x010504TeacherDeskIcon = [
  1655. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1656. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1657. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1658. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1659. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1660. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1661. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1664. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1665. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1666. ];
  1667. //010504
  1668. U.MD.D.I.x010504StudentDeskIcon = [
  1669. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1670. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1671. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1672. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1673. ];
  1674. //010505
  1675. U.MD.D.I.x010505TeacherDeskIcon = [
  1676. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1677. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1678. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1679. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1680. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1681. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1682. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1683. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1684. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1685. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1686. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1687. ];
  1688. //010505
  1689. U.MD.D.I.x010505StudentDeskIcon = [
  1690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1692. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1693. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1694. ];
  1695. //SCNUET
  1696. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1699. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1702. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1703. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1704. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1708. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1709. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1710. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1711. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1714. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1715. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1716. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1717. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1718. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1719. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1720. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1721. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1722. ];
  1723. //SCNUET
  1724. U.MD.D.I.SCNUETAdminDeskIcon = [
  1725. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1726. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1727. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1729. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1730. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1731. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1732. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1735. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1736. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1737. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1738. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1739. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1741. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1742. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1743. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1744. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1745. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1748. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1749. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1750. ];
  1751. //SCNUET
  1752. U.MD.D.I.SCNUETStudentDeskIcon = [
  1753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1754. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1757. ];
  1758. //x020201
  1759. U.MD.D.I.x020201TeacherDeskIcon = [
  1760. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1761. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1762. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1764. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1767. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1768. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1769. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1770. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1771. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1772. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1773. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1774. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1775. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1776. ];
  1777. //x020201
  1778. U.MD.D.I.x020201AdminDeskIcon = [
  1779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1783. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1784. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1785. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1786. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1787. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1790. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1791. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1792. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1793. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1794. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1795. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1796. ];
  1797. //020201
  1798. U.MD.D.I.x020201StudentDeskIcon = [
  1799. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1800. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1803. ];
  1804. //010611
  1805. U.MD.D.I.x010611TeacherDeskIcon = [
  1806. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1807. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1808. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1809. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1810. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1811. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1815. ];
  1816. //010611
  1817. U.MD.D.I.x010611StudentDeskIcon = [
  1818. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1819. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1820. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1821. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1822. ];
  1823. //010612
  1824. U.MD.D.I.x010612TeacherDeskIcon = [
  1825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1831. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1832. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1833. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1834. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1835. ];
  1836. //010612
  1837. U.MD.D.I.x010612StudentDeskIcon = [
  1838. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1839. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1840. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1841. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1842. ];
  1843. //tianyuan
  1844. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1845. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1846. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1847. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1848. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1849. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1850. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1851. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1852. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1853. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1854. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1855. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1856. ];
  1857. //010611
  1858. U.MD.D.I.tianyuanStudentDeskIcon = [
  1859. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1860. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1861. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1862. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1863. ];
  1864. //320101
  1865. U.MD.D.I.x320101TeacherDeskIcon = [
  1866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1872. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1873. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1874. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1875. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1876. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1877. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1878. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1879. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1880. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1881. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1882. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1883. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1884. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1885. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1886. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1887. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1888. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1889. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1890. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1891. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1892. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1893. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1894. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1895. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1896. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1897. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1898. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1899. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1900. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1901. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1902. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1903. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1904. ];
  1905. //320101
  1906. U.MD.D.I.x320101StudentDeskIcon = [
  1907. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1908. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1909. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1911. ];
  1912. //szsy
  1913. U.MD.D.I.szsyTeacherDeskIcon = [
  1914. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1915. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1916. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1917. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1918. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1919. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1920. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1921. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1922. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1923. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1924. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1926. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1927. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1928. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1930. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1931. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1932. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1933. ];
  1934. //szsy
  1935. U.MD.D.I.szsyStudentDeskIcon = [
  1936. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1937. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1938. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1939. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1940. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1941. ];
  1942. //010404
  1943. U.MD.D.I.x010404TeacherDeskIcon = [
  1944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.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": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1949. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1950. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1951. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1952. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1953. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1954. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1955. ];
  1956. //010404
  1957. U.MD.D.I.x010404StudentDeskIcon = [
  1958. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1959. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1960. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1961. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1962. ];
  1963. //#region 桌面初始化a
  1964. /**
  1965. * 初始化桌面的起始函数
  1966. *
  1967. */
  1968. U.MD.D.I.init = function () {
  1969. if ($("#U_MD_D_K")[0]) {
  1970. //初始化桌面图标
  1971. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1972. // var clickUrl = ':12588/requestIp.php';
  1973. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1974. // U.MD.D.I.Ip = data;
  1975. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1976. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1977. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1978. // })
  1979. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1980. // })
  1981. }
  1982. }
  1983. /**
  1984. * 模式切换
  1985. *
  1986. */
  1987. U.MD.D.I.ModeCheck = function (type) {
  1988. if (US.Config.type == type) {
  1989. return
  1990. }
  1991. US.Config.type = type
  1992. $('.U_PBL_Check .active')[0].className = ''
  1993. if (type == 1) {
  1994. $('.U_PBL_Check div')[0].className = 'active'
  1995. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1996. } else {
  1997. $('.U_PBL_Check div')[1].className = 'active'
  1998. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1999. }
  2000. //初始化桌面图标
  2001. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2002. if (type == 2) {
  2003. U.MD.D.I.openApplication("project")
  2004. }
  2005. }
  2006. /**
  2007. * 隐藏任务栏
  2008. *
  2009. * @param {element} 桌面元素
  2010. */
  2011. U.MD.D.I.hiddenTaskbar = function (el) {
  2012. //任务栏位置变小
  2013. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2014. //桌面的位置变大
  2015. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2016. }
  2017. /**
  2018. * 隐藏任务栏
  2019. *
  2020. * @param {element} 桌面元素
  2021. */
  2022. U.MD.D.I.hiddenTaskbarout = function (el) {
  2023. //任务栏位置变小
  2024. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2025. //任务栏位置变化
  2026. U.selectEl(el).css({ "bottom": "-60px" });
  2027. //桌面的位置变大
  2028. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2029. }
  2030. }
  2031. /**
  2032. * 初始化打印桌面图标
  2033. *
  2034. * @param {element} 桌面元素
  2035. */
  2036. U.MD.D.I.initDesktopIcons = function (el, type) {
  2037. var i, //用于循环
  2038. _content, //桌面图标元素
  2039. _iconcontent, //桌面图标元素
  2040. _frag = $$("frag"), //定义一个碎片元素
  2041. _type = US.userInfo.type,
  2042. _org = US.userInfo.org,
  2043. _oid = US.userInfo.organizeid,
  2044. _role = US.userInfo.role,
  2045. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2046. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2047. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2048. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2049. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2050. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2051. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2052. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2053. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2054. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2055. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2056. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2057. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2058. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2059. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2060. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2061. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2062. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2063. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2064. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2065. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2066. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2067. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2068. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2069. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2070. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2071. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2072. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2073. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2074. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2075. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2076. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2077. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2078. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2079. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2080. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2081. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2082. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2083. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2084. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2085. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2086. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2087. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2088. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2089. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2090. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2091. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2092. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2093. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2094. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2095. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2096. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2097. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2098. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2099. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2100. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2101. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2102. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2103. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2104. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2105. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2106. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2107. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2108. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2109. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2110. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2111. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2112. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2113. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2114. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2115. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2116. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2117. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2118. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2119. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2120. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2121. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2122. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2123. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2124. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2125. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2126. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2127. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2128. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2129. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2130. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2131. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2132. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2133. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2134. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2135. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2136. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2137. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2138. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2139. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2140. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2141. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2142. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2143. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2144. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2145. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2146. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2147. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2148. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2149. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2150. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2151. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2152. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2153. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2154. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2155. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2156. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2157. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2158. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2159. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2160. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2161. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2162. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2163. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2164. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2165. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2166. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2167. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2168. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2169. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2170. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2171. 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'];
  2172. 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'];
  2173. 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",]
  2174. //清楚桌面图标
  2175. el.innerHTML = "";
  2176. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2177. _teacherDesktopIconInfo.push(
  2178. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2179. { "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)" } },
  2180. )
  2181. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2182. }
  2183. 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') {
  2184. _teacherDesktopIconInfo.push(
  2185. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2186. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2187. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2188. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2189. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2190. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2191. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2192. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2193. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2194. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2195. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2197. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2198. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2199. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2200. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2201. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2202. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2203. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2204. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2205. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2206. )
  2207. }
  2208. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2209. _teacherDesktopIconInfo.push(
  2210. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2211. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2212. )
  2213. }
  2214. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2215. _nsfxTeacherDeskIconInfo.push(
  2216. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2217. )
  2218. }
  2219. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2220. // _teacherDesktopIconInfo.push(
  2221. // )
  2222. // }
  2223. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2224. _teacherDesktopIconInfo.push(
  2225. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2226. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2227. )
  2228. }
  2229. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2230. _teacherDesktopIconInfo.push(
  2231. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2233. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2234. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2235. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2236. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2237. )
  2238. _studentDesktopIconInfo.push(
  2239. )
  2240. }
  2241. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2242. _teacherDesktopIconInfo.push(
  2243. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2244. )
  2245. _studentDesktopIconInfo.push(
  2246. )
  2247. }
  2248. //010606 组织
  2249. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2250. _teacherDesktopIconInfo.push(
  2251. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2252. )
  2253. _studentDesktopIconInfo.push(
  2254. )
  2255. }
  2256. //麒麟二中 和 民新小学
  2257. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2258. _teacherDesktopIconInfo.push(
  2259. )
  2260. }
  2261. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2262. _teacherDesktopIconInfo.push(
  2263. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2264. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2265. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2266. )
  2267. }
  2268. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2269. _hkTeacherDeskIconInfo.push(
  2270. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2271. )
  2272. }
  2273. //北师大附中(010601)
  2274. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2275. // _teacherDesktopIconInfo.push(
  2276. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2277. // )
  2278. // _studentDesktopIconInfo.push(
  2279. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2280. // )
  2281. // }
  2282. //樂善堂余近卿中學
  2283. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2284. _teacherDesktopIconInfo.push(
  2285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2286. )
  2287. }
  2288. // Education Artificial Intelligence
  2289. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2290. _teacherDesktopIconInfo.push(
  2291. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2292. )
  2293. }
  2294. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2295. _teacherDesktopIconInfo.push(
  2296. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2297. )
  2298. }
  2299. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2300. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2301. _teacherDesktopIconInfo.push(
  2302. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2303. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2304. )
  2305. }
  2306. //麒麟二中
  2307. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2308. _studentDesktopIconInfo.push(
  2309. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2310. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2311. )
  2312. }
  2313. //万科双语
  2314. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2315. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2316. if (el.Name == '项目管理') {
  2317. el.Name = 'PBL项目'
  2318. }
  2319. return el
  2320. })
  2321. _studentDesktopIconInfo3.push(
  2322. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2323. )
  2324. }
  2325. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2326. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2327. return el.Name != '魔盒识字' && el.Name != '24点'
  2328. })
  2329. }
  2330. 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) {
  2331. _studentDesktopIconInfo.push(
  2332. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2333. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2334. )
  2335. }
  2336. //循环创建桌面图标
  2337. if (type == 1) {
  2338. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2339. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2340. _content = $$("div", {
  2341. className: "U_MD_D_KO",
  2342. "onmousedown": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_studentDesktopIconInfo[i]]),
  2346. "onclick": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_studentDesktopIconInfo[i]])
  2350. }, _frag); //
  2351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2354. }
  2355. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2356. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2357. _content = $$("div", {
  2358. className: "U_MD_D_KO",
  2359. "onmousedown": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2363. "onclick": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_hkZJLSStudentDeskIconInfo[i]])
  2367. }, _frag); //
  2368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2371. } //
  2372. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2373. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2374. _content = $$("div", {
  2375. className: "U_MD_D_KO",
  2376. "onmousedown": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_ytyStudentDeskIconInfo[i]]),
  2380. "onclick": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_ytyStudentDeskIconInfo[i]])
  2384. }, _frag); //
  2385. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2386. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2387. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2388. } //
  2389. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2390. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2391. _content = $$("div", {
  2392. className: "U_MD_D_KO",
  2393. "onmousedown": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_jccssylStudentDeskIconInfo[i]]),
  2397. "onclick": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_jccssylStudentDeskIconInfo[i]])
  2401. }, _frag); //
  2402. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2403. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2404. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2405. }
  2406. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2407. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2408. _content = $$("div", {
  2409. className: "U_MD_D_KO",
  2410. "onmousedown": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_scnuaiStudentDeskIconInfo[i]]),
  2414. "onclick": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_scnuaiStudentDeskIconInfo[i]])
  2418. }, _frag); //
  2419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2422. }
  2423. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2424. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2425. _content = $$("div", {
  2426. className: "U_MD_D_KO",
  2427. "onmousedown": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_caleStudentDeskIconInfo[i]]),
  2431. "onclick": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_caleStudentDeskIconInfo[i]])
  2435. }, _frag); //
  2436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2439. }
  2440. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2441. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2442. _content = $$("div", {
  2443. className: "U_MD_D_KO",
  2444. "onmousedown": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_thuioeStudentDeskIconInfo[i]]),
  2448. "onclick": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_thuioeStudentDeskIconInfo[i]])
  2452. }, _frag); //
  2453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2456. }
  2457. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2458. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2459. _content = $$("div", {
  2460. className: "U_MD_D_KO",
  2461. "onmousedown": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_tpcStudentDeskIconInfo[i]]),
  2465. "onclick": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_tpcStudentDeskIconInfo[i]])
  2469. }, _frag); //
  2470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2473. } //
  2474. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2475. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2476. _content = $$("div", {
  2477. className: "U_MD_D_KO",
  2478. "onmousedown": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_chjyjStudentDeskIconInfo[i]]),
  2482. "onclick": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_chjyjStudentDeskIconInfo[i]])
  2486. }, _frag); //
  2487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2490. }
  2491. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2492. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2493. _content = $$("div", {
  2494. className: "U_MD_D_KO",
  2495. "onmousedown": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_szjkyStudentDeskIconInfo[i]]),
  2499. "onclick": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_szjkyStudentDeskIconInfo[i]])
  2503. }, _frag); //
  2504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2507. }
  2508. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2509. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2510. _content = $$("div", {
  2511. className: "U_MD_D_KO",
  2512. "onmousedown": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_x020201StudentDeskIconInfo[i]]),
  2516. "onclick": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_x020201StudentDeskIconInfo[i]])
  2520. }, _frag); //
  2521. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2522. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2523. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2524. }
  2525. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2526. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2527. _content = $$("div", {
  2528. className: "U_MD_D_KO",
  2529. "onmousedown": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_SCNUETStudentDeskIconInfo[i]]),
  2533. "onclick": U.UF.C.closure(function (obj) {
  2534. //防止拖动图标即打开了桌面应用
  2535. U.MD.D.click(this, obj);
  2536. }, [_SCNUETStudentDeskIconInfo[i]])
  2537. }, _frag); //
  2538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2541. }
  2542. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2543. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2544. _content = $$("div", {
  2545. className: "U_MD_D_KO",
  2546. "onmousedown": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_dseiStudentDeskIconInfo[i]]),
  2550. "onclick": U.UF.C.closure(function (obj) {
  2551. //防止拖动图标即打开了桌面应用
  2552. U.MD.D.click(this, obj);
  2553. }, [_dseiStudentDeskIconInfo[i]])
  2554. }, _frag); //
  2555. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2556. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2557. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2558. }
  2559. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2560. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2561. _content = $$("div", {
  2562. className: "U_MD_D_KO",
  2563. "onmousedown": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2567. "onclick": U.UF.C.closure(function (obj) {
  2568. //防止拖动图标即打开了桌面应用
  2569. U.MD.D.click(this, obj);
  2570. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2571. }, _frag); //
  2572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2575. }
  2576. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2577. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2578. _content = $$("div", {
  2579. className: "U_MD_D_KO",
  2580. "onmousedown": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_nsfxStudentDeskIconInfo[i]]),
  2584. "onclick": U.UF.C.closure(function (obj) {
  2585. //防止拖动图标即打开了桌面应用
  2586. U.MD.D.click(this, obj);
  2587. }, [_nsfxStudentDeskIconInfo[i]])
  2588. }, _frag); //
  2589. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2590. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2591. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2592. }
  2593. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2594. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2595. _content = $$("div", {
  2596. className: "U_MD_D_KO",
  2597. "onmousedown": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_stiaStudentDeskIconInfo[i]]),
  2601. "onclick": U.UF.C.closure(function (obj) {
  2602. //防止拖动图标即打开了桌面应用
  2603. U.MD.D.click(this, obj);
  2604. }, [_stiaStudentDeskIconInfo[i]])
  2605. }, _frag); //
  2606. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2607. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2608. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2609. }
  2610. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2611. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2612. _content = $$("div", {
  2613. className: "U_MD_D_KO",
  2614. "onmousedown": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_szdjgStudentDeskIconInfo[i]]),
  2618. "onclick": U.UF.C.closure(function (obj) {
  2619. //防止拖动图标即打开了桌面应用
  2620. U.MD.D.click(this, obj);
  2621. }, [_szdjgStudentDeskIconInfo[i]])
  2622. }, _frag); //
  2623. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2624. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2625. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2626. }
  2627. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2628. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2629. _content = $$("div", {
  2630. className: "U_MD_D_KO",
  2631. "onmousedown": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_x010607StudentDeskIconInfo[i]]),
  2635. "onclick": U.UF.C.closure(function (obj) {
  2636. //防止拖动图标即打开了桌面应用
  2637. U.MD.D.click(this, obj);
  2638. }, [_x010607StudentDeskIconInfo[i]])
  2639. }, _frag); //
  2640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2643. }
  2644. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2645. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2646. _content = $$("div", {
  2647. className: "U_MD_D_KO",
  2648. "onmousedown": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_xhlyStudentDeskIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_xhlyStudentDeskIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2660. }
  2661. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2662. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2663. _content = $$("div", {
  2664. className: "U_MD_D_KO",
  2665. "onmousedown": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2669. "onclick": U.UF.C.closure(function (obj) {
  2670. //防止拖动图标即打开了桌面应用
  2671. U.MD.D.click(this, obj);
  2672. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2673. }, _frag); //
  2674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2677. }
  2678. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2679. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2680. _content = $$("div", {
  2681. className: "U_MD_D_KO",
  2682. "onmousedown": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_x010503StudentDeskIconInfo[i]]),
  2686. "onclick": U.UF.C.closure(function (obj) {
  2687. //防止拖动图标即打开了桌面应用
  2688. U.MD.D.click(this, obj);
  2689. }, [_x010503StudentDeskIconInfo[i]])
  2690. }, _frag); //
  2691. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2692. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2693. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2694. }
  2695. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2696. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2697. _content = $$("div", {
  2698. className: "U_MD_D_KO",
  2699. "onmousedown": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_x010504StudentDeskIconInfo[i]]),
  2703. "onclick": U.UF.C.closure(function (obj) {
  2704. //防止拖动图标即打开了桌面应用
  2705. U.MD.D.click(this, obj);
  2706. }, [_x010504StudentDeskIconInfo[i]])
  2707. }, _frag); //
  2708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2711. }
  2712. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2713. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2714. _content = $$("div", {
  2715. className: "U_MD_D_KO",
  2716. "onmousedown": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_x010505StudentDeskIconInfo[i]]),
  2720. "onclick": U.UF.C.closure(function (obj) {
  2721. //防止拖动图标即打开了桌面应用
  2722. U.MD.D.click(this, obj);
  2723. }, [_x010505StudentDeskIconInfo[i]])
  2724. }, _frag); //
  2725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2728. }
  2729. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2730. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2731. _content = $$("div", {
  2732. className: "U_MD_D_KO",
  2733. "onmousedown": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_x010404StudentDeskIconInfo[i]]),
  2737. "onclick": U.UF.C.closure(function (obj) {
  2738. //防止拖动图标即打开了桌面应用
  2739. U.MD.D.click(this, obj);
  2740. }, [_x010404StudentDeskIconInfo[i]])
  2741. }, _frag); //
  2742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2745. }
  2746. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2747. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2748. _content = $$("div", {
  2749. className: "U_MD_D_KO",
  2750. "onmousedown": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_x010204StudentDeskIconInfo[i]]),
  2754. "onclick": U.UF.C.closure(function (obj) {
  2755. //防止拖动图标即打开了桌面应用
  2756. U.MD.D.click(this, obj);
  2757. }, [_x010204StudentDeskIconInfo[i]])
  2758. }, _frag); //
  2759. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2760. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2761. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2762. }
  2763. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2764. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_x320101StudentDeskIconInfo[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_x320101StudentDeskIconInfo[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2779. }
  2780. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2781. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2782. _content = $$("div", {
  2783. className: "U_MD_D_KO",
  2784. "onmousedown": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_trailStudentDeskIconInfo[i]]),
  2788. "onclick": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_trailStudentDeskIconInfo[i]])
  2792. }, _frag); //
  2793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2796. }
  2797. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2798. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2799. _content = $$("div", {
  2800. className: "U_MD_D_KO",
  2801. "onmousedown": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_trialStudentDeskIconInfo[i]]),
  2805. "onclick": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_trialStudentDeskIconInfo[i]])
  2809. }, _frag); //
  2810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2813. }
  2814. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2815. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2816. _content = $$("div", {
  2817. className: "U_MD_D_KO",
  2818. "onmousedown": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2822. "onclick": U.UF.C.closure(function (obj) {
  2823. //防止拖动图标即打开了桌面应用
  2824. U.MD.D.click(this, obj);
  2825. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2826. }, _frag); //
  2827. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2828. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2829. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2830. }
  2831. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2832. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2833. _content = $$("div", {
  2834. className: "U_MD_D_KO",
  2835. "onmousedown": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_szsyStudentDeskIconInfo[i]]),
  2839. "onclick": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_szsyStudentDeskIconInfo[i]])
  2843. }, _frag); //
  2844. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2845. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2846. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2847. }
  2848. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2849. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2850. _content = $$("div", {
  2851. className: "U_MD_D_KO",
  2852. "onmousedown": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_x010608StudentDeskIconInfo[i]]),
  2856. "onclick": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_x010608StudentDeskIconInfo[i]])
  2860. }, _frag); //
  2861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2864. }
  2865. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2866. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2867. _content = $$("div", {
  2868. className: "U_MD_D_KO",
  2869. "onmousedown": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_x010611StudentDeskIconInfo[i]]),
  2873. "onclick": U.UF.C.closure(function (obj) {
  2874. //防止拖动图标即打开了桌面应用
  2875. U.MD.D.click(this, obj);
  2876. }, [_x010611StudentDeskIconInfo[i]])
  2877. }, _frag); //
  2878. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2879. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2880. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2881. }
  2882. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2883. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2884. _content = $$("div", {
  2885. className: "U_MD_D_KO",
  2886. "onmousedown": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_x010612StudentDeskIconInfo[i]]),
  2890. "onclick": U.UF.C.closure(function (obj) {
  2891. //防止拖动图标即打开了桌面应用
  2892. U.MD.D.click(this, obj);
  2893. }, [_x010612StudentDeskIconInfo[i]])
  2894. }, _frag); //
  2895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2898. }
  2899. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2900. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2901. _content = $$("div", {
  2902. className: "U_MD_D_KO",
  2903. "onmousedown": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_tianyuantudentDeskIconInfo[i]]),
  2907. "onclick": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_tianyuantudentDeskIconInfo[i]])
  2911. }, _frag); //
  2912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2915. }
  2916. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2917. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2918. _content = $$("div", {
  2919. className: "U_MD_D_KO",
  2920. "onmousedown": U.UF.C.closure(function (obj) {
  2921. //防止拖动图标即打开了桌面应用
  2922. U.MD.D.click(this, obj);
  2923. }, [_siesStudentDeskIconInfo[i]]),
  2924. "onclick": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_siesStudentDeskIconInfo[i]])
  2928. }, _frag); //
  2929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2932. }
  2933. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2934. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2935. _content = $$("div", {
  2936. className: "U_MD_D_KO",
  2937. "onmousedown": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_guzmsStudentDeskIconInfo[i]]),
  2941. "onclick": U.UF.C.closure(function (obj) {
  2942. //防止拖动图标即打开了桌面应用
  2943. U.MD.D.click(this, obj);
  2944. }, [_guzmsStudentDeskIconInfo[i]])
  2945. }, _frag); //
  2946. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2947. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2948. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2949. }
  2950. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2951. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2952. _content = $$("div", {
  2953. className: "U_MD_D_KO",
  2954. "onmousedown": U.UF.C.closure(function (obj) {
  2955. //防止拖动图标即打开了桌面应用
  2956. U.MD.D.click(this, obj);
  2957. }, [_hkStudentDeskIconInfo[i]]),
  2958. "onclick": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_hkStudentDeskIconInfo[i]])
  2962. }, _frag); //
  2963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2966. }
  2967. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  2968. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  2969. _content = $$("div", {
  2970. className: "U_MD_D_KO",
  2971. "onmousedown": U.UF.C.closure(function (obj) {
  2972. //防止拖动图标即打开了桌面应用
  2973. U.MD.D.click(this, obj);
  2974. }, [_tycyStudentDeskIconInfo[i]]),
  2975. "onclick": U.UF.C.closure(function (obj) {
  2976. //防止拖动图标即打开了桌面应用
  2977. U.MD.D.click(this, obj);
  2978. }, [_tycyStudentDeskIconInfo[i]])
  2979. }, _frag); //
  2980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  2982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  2983. }
  2984. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2985. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2986. _content = $$("div", {
  2987. className: "U_MD_D_KO",
  2988. "onmousedown": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_hkaceStudentDeskIconInfo[i]]),
  2992. "onclick": U.UF.C.closure(function (obj) {
  2993. //防止拖动图标即打开了桌面应用
  2994. U.MD.D.click(this, obj);
  2995. }, [_hkaceStudentDeskIconInfo[i]])
  2996. }, _frag); //
  2997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3000. }
  3001. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3002. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3003. _content = $$("div", {
  3004. className: "U_MD_D_KO",
  3005. "onmousedown": U.UF.C.closure(function (obj) {
  3006. //防止拖动图标即打开了桌面应用
  3007. U.MD.D.click(this, obj);
  3008. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3009. "onclick": U.UF.C.closure(function (obj) {
  3010. //防止拖动图标即打开了桌面应用
  3011. U.MD.D.click(this, obj);
  3012. }, [_BSDNSstudentDesktopIconInfo[i]])
  3013. }, _frag); //
  3014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3017. }
  3018. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3019. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3020. _content = $$("div", {
  3021. className: "U_MD_D_KO",
  3022. "onmousedown": U.UF.C.closure(function (obj) {
  3023. //防止拖动图标即打开了桌面应用
  3024. U.MD.D.click(this, obj);
  3025. }, [_cocobizStudentDeskIconInfo[i]]),
  3026. "onclick": U.UF.C.closure(function (obj) {
  3027. //防止拖动图标即打开了桌面应用
  3028. U.MD.D.click(this, obj);
  3029. }, [_cocobizStudentDeskIconInfo[i]])
  3030. }, _frag); //
  3031. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3032. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3033. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3034. }
  3035. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3036. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3037. _content = $$("div", {
  3038. className: "U_MD_D_KO",
  3039. "onmousedown": U.UF.C.closure(function (obj) {
  3040. //防止拖动图标即打开了桌面应用
  3041. U.MD.D.click(this, obj);
  3042. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3043. "onclick": U.UF.C.closure(function (obj) {
  3044. //防止拖动图标即打开了桌面应用
  3045. U.MD.D.click(this, obj);
  3046. }, [_xxzjkyStudentDeskIconInfo[i]])
  3047. }, _frag); //
  3048. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3049. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3050. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3051. }
  3052. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3053. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3054. _content = $$("div", {
  3055. className: "U_MD_D_KO",
  3056. "onmousedown": U.UF.C.closure(function (obj) {
  3057. //防止拖动图标即打开了桌面应用
  3058. U.MD.D.click(this, obj);
  3059. }, [_studentDesktopIconInfo[i]]),
  3060. "onclick": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_studentDesktopIconInfo[i]])
  3064. }, _frag); //
  3065. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3066. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3067. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3068. }
  3069. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3070. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3071. _content = $$("div", {
  3072. className: "U_MD_D_KO",
  3073. "onmousedown": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_tcStudentDeskIconInfo[i]]),
  3077. "onclick": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_tcStudentDeskIconInfo[i]])
  3081. }, _frag); //
  3082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3085. }
  3086. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3087. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3088. _content = $$("div", {
  3089. className: "U_MD_D_KO",
  3090. "onmousedown": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_szscStudentDeskIconInfo[i]]),
  3094. "onclick": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_szscStudentDeskIconInfo[i]])
  3098. }, _frag); //
  3099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3102. }
  3103. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3104. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3105. _content = $$("div", {
  3106. className: "U_MD_D_KO",
  3107. "onmousedown": U.UF.C.closure(function (obj) {
  3108. //防止拖动图标即打开了桌面应用
  3109. U.MD.D.click(this, obj);
  3110. }, [_studentDesktopIconInfo3[i]]),
  3111. "onclick": U.UF.C.closure(function (obj) {
  3112. //防止拖动图标即打开了桌面应用
  3113. U.MD.D.click(this, obj);
  3114. }, [_studentDesktopIconInfo3[i]])
  3115. }, _frag); //
  3116. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3117. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3118. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3119. }
  3120. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3121. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3122. _content = $$("div", {
  3123. className: "U_MD_D_KO",
  3124. "onmousedown": U.UF.C.closure(function (obj) {
  3125. //防止拖动图标即打开了桌面应用
  3126. U.MD.D.click(this, obj);
  3127. }, [_studentDesktopIconInfo2[i]]),
  3128. "onclick": U.UF.C.closure(function (obj) {
  3129. //防止拖动图标即打开了桌面应用
  3130. U.MD.D.click(this, obj);
  3131. }, [_studentDesktopIconInfo2[i]])
  3132. }, _frag); //
  3133. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3134. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3135. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3136. }
  3137. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3138. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3139. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3140. continue
  3141. }
  3142. _content = $$("div", {
  3143. className: "U_MD_D_KO",
  3144. "onmousedown": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_wanketeacherDesktopIconInfo[i]]),
  3148. "onclick": U.UF.C.closure(function (obj) {
  3149. //防止拖动图标即打开了桌面应用
  3150. U.MD.D.click(this, obj);
  3151. }, [_wanketeacherDesktopIconInfo[i]])
  3152. }, _frag); //
  3153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3156. }
  3157. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3158. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3159. _content = $$("div", {
  3160. className: "U_MD_D_KO",
  3161. "onmousedown": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_wankeAdminDesktopIconInfo[i]]),
  3165. "onclick": U.UF.C.closure(function (obj) {
  3166. //防止拖动图标即打开了桌面应用
  3167. U.MD.D.click(this, obj);
  3168. }, [_wankeAdminDesktopIconInfo[i]])
  3169. }, _frag); //
  3170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3173. }
  3174. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3175. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3176. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3177. continue
  3178. }
  3179. _content = $$("div", {
  3180. className: "U_MD_D_KO",
  3181. "onmousedown": U.UF.C.closure(function (obj) {
  3182. //防止拖动图标即打开了桌面应用
  3183. U.MD.D.click(this, obj);
  3184. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3185. "onclick": U.UF.C.closure(function (obj) {
  3186. //防止拖动图标即打开了桌面应用
  3187. U.MD.D.click(this, obj);
  3188. }, [_scnuaiTeacherDeskIconInfo[i]])
  3189. }, _frag); //
  3190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3193. }
  3194. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3195. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3196. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3197. continue
  3198. }
  3199. _content = $$("div", {
  3200. className: "U_MD_D_KO",
  3201. "onmousedown": U.UF.C.closure(function (obj) {
  3202. //防止拖动图标即打开了桌面应用
  3203. U.MD.D.click(this, obj);
  3204. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3205. "onclick": U.UF.C.closure(function (obj) {
  3206. //防止拖动图标即打开了桌面应用
  3207. U.MD.D.click(this, obj);
  3208. }, [_BSDNSteacherDesktopIconInfo[i]])
  3209. }, _frag); //
  3210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3213. }
  3214. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3215. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3216. _content = $$("div", {
  3217. className: "U_MD_D_KO",
  3218. "onmousedown": U.UF.C.closure(function (obj) {
  3219. //防止拖动图标即打开了桌面应用
  3220. U.MD.D.click(this, obj);
  3221. }, [_scnuaiAdminDeskIconInfo[i]]),
  3222. "onclick": U.UF.C.closure(function (obj) {
  3223. //防止拖动图标即打开了桌面应用
  3224. U.MD.D.click(this, obj);
  3225. }, [_scnuaiAdminDeskIconInfo[i]])
  3226. }, _frag); //
  3227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3230. }
  3231. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3232. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3233. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3234. continue
  3235. }
  3236. _content = $$("div", {
  3237. className: "U_MD_D_KO",
  3238. "onmousedown": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_jccssylTeacherDeskIconInfo[i]]),
  3242. "onclick": U.UF.C.closure(function (obj) {
  3243. //防止拖动图标即打开了桌面应用
  3244. U.MD.D.click(this, obj);
  3245. }, [_jccssylTeacherDeskIconInfo[i]])
  3246. }, _frag); //
  3247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3250. }
  3251. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3252. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3253. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3254. continue
  3255. }
  3256. _content = $$("div", {
  3257. className: "U_MD_D_KO",
  3258. "onmousedown": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_caleTeacherDeskIconInfo[i]]),
  3262. "onclick": U.UF.C.closure(function (obj) {
  3263. //防止拖动图标即打开了桌面应用
  3264. U.MD.D.click(this, obj);
  3265. }, [_caleTeacherDeskIconInfo[i]])
  3266. }, _frag); //
  3267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3270. }
  3271. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3272. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3273. _content = $$("div", {
  3274. className: "U_MD_D_KO",
  3275. "onmousedown": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_tpcOrganizerDeskIconInfo[i]]),
  3279. "onclick": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_tpcOrganizerDeskIconInfo[i]])
  3283. }, _frag); //
  3284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3287. }
  3288. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3289. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3290. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3291. continue
  3292. }
  3293. _content = $$("div", {
  3294. className: "U_MD_D_KO",
  3295. "onmousedown": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_tpcTeacherDeskIconInfo[i]]),
  3299. "onclick": U.UF.C.closure(function (obj) {
  3300. //防止拖动图标即打开了桌面应用
  3301. U.MD.D.click(this, obj);
  3302. }, [_tpcTeacherDeskIconInfo[i]])
  3303. }, _frag); //
  3304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3307. }
  3308. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3309. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3310. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3311. continue
  3312. }
  3313. _content = $$("div", {
  3314. className: "U_MD_D_KO",
  3315. "onmousedown": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_teacherDesktopIconInfo2[i]]),
  3319. "onclick": U.UF.C.closure(function (obj) {
  3320. //防止拖动图标即打开了桌面应用
  3321. U.MD.D.click(this, obj);
  3322. }, [_teacherDesktopIconInfo2[i]])
  3323. }, _frag); //
  3324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3327. }
  3328. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3329. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3330. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3331. continue
  3332. }
  3333. _content = $$("div", {
  3334. className: "U_MD_D_KO",
  3335. "onmousedown": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_thuioeTeacherDeskIconInfo[i]]),
  3339. "onclick": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_thuioeTeacherDeskIconInfo[i]])
  3343. }, _frag); //
  3344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3347. }
  3348. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3349. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3350. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3351. continue
  3352. }
  3353. _content = $$("div", {
  3354. className: "U_MD_D_KO",
  3355. "onmousedown": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_lotechTeacherDeskIconInfo[i]]),
  3359. "onclick": U.UF.C.closure(function (obj) {
  3360. //防止拖动图标即打开了桌面应用
  3361. U.MD.D.click(this, obj);
  3362. }, [_lotechTeacherDeskIconInfo[i]])
  3363. }, _frag); //
  3364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3367. }//
  3368. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3369. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3370. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3371. continue
  3372. }
  3373. _content = $$("div", {
  3374. className: "U_MD_D_KO",
  3375. "onmousedown": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3379. "onclick": U.UF.C.closure(function (obj) {
  3380. //防止拖动图标即打开了桌面应用
  3381. U.MD.D.click(this, obj);
  3382. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3383. }, _frag); //
  3384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3387. }
  3388. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3389. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3390. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3391. continue
  3392. }
  3393. _content = $$("div", {
  3394. className: "U_MD_D_KO",
  3395. "onmousedown": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_siesTeacherDeskIconInfo[i]]),
  3399. "onclick": U.UF.C.closure(function (obj) {
  3400. //防止拖动图标即打开了桌面应用
  3401. U.MD.D.click(this, obj);
  3402. }, [_siesTeacherDeskIconInfo[i]])
  3403. }, _frag); //
  3404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3407. }
  3408. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3409. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3410. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3411. continue
  3412. }
  3413. _content = $$("div", {
  3414. className: "U_MD_D_KO",
  3415. "onmousedown": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_guzmsTeacherDeskIconInfo[i]]),
  3419. "onclick": U.UF.C.closure(function (obj) {
  3420. //防止拖动图标即打开了桌面应用
  3421. U.MD.D.click(this, obj);
  3422. }, [_guzmsTeacherDeskIconInfo[i]])
  3423. }, _frag); //
  3424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3427. }
  3428. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3429. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3430. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3431. continue
  3432. }
  3433. _content = $$("div", {
  3434. className: "U_MD_D_KO",
  3435. "onmousedown": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_longhuaTeacherDeskIconInfo[i]]),
  3439. "onclick": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_longhuaTeacherDeskIconInfo[i]])
  3443. }, _frag); //
  3444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3447. }
  3448. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3449. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3450. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3451. continue
  3452. }
  3453. _content = $$("div", {
  3454. className: "U_MD_D_KO",
  3455. "onmousedown": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_ytyTeacherDeskIconInfo[i]]),
  3459. "onclick": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_ytyTeacherDeskIconInfo[i]])
  3463. }, _frag); //
  3464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3467. }
  3468. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3469. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3470. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3471. continue
  3472. }
  3473. _content = $$("div", {
  3474. className: "U_MD_D_KO",
  3475. "onmousedown": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3479. "onclick": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_yunhaiTeacherDeskIconInfo[i]])
  3483. }, _frag); //
  3484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3487. } //_hkStudentDeskIconInfo
  3488. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3489. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3490. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3491. continue
  3492. }
  3493. _content = $$("div", {
  3494. className: "U_MD_D_KO",
  3495. "onmousedown": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3499. "onclick": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3503. }, _frag); //
  3504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3507. }
  3508. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3509. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3510. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3511. continue
  3512. }
  3513. _content = $$("div", {
  3514. className: "U_MD_D_KO",
  3515. "onmousedown": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_ricohTeacherDeskIconInfo[i]]),
  3519. "onclick": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_ricohTeacherDeskIconInfo[i]])
  3523. }, _frag); //
  3524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3527. }
  3528. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3529. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3530. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3531. continue
  3532. }
  3533. _content = $$("div", {
  3534. className: "U_MD_D_KO",
  3535. "onmousedown": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_hkTeacherDeskIconInfo[i]]),
  3539. "onclick": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_hkTeacherDeskIconInfo[i]])
  3543. }, _frag); //
  3544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3547. }
  3548. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3549. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3550. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3551. continue
  3552. }
  3553. _content = $$("div", {
  3554. className: "U_MD_D_KO",
  3555. "onmousedown": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_tycyTeacherDeskIconInfo[i]]),
  3559. "onclick": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_tycyTeacherDeskIconInfo[i]])
  3563. }, _frag); //
  3564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3567. }
  3568. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3569. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3570. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3571. continue
  3572. }
  3573. _content = $$("div", {
  3574. className: "U_MD_D_KO",
  3575. "onmousedown": U.UF.C.closure(function (obj) {
  3576. //防止拖动图标即打开了桌面应用
  3577. U.MD.D.click(this, obj);
  3578. }, [_hkaceTeacherDeskIconInfo[i]]),
  3579. "onclick": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_hkaceTeacherDeskIconInfo[i]])
  3583. }, _frag); //
  3584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3587. }
  3588. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3589. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3590. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3591. continue
  3592. }
  3593. _content = $$("div", {
  3594. className: "U_MD_D_KO",
  3595. "onmousedown": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_cocobizTeacherDeskIconInfo[i]]),
  3599. "onclick": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_cocobizTeacherDeskIconInfo[i]])
  3603. }, _frag); //
  3604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3607. }
  3608. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3609. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3610. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3611. continue
  3612. }
  3613. _content = $$("div", {
  3614. className: "U_MD_D_KO",
  3615. "onmousedown": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3619. "onclick": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3623. }, _frag); //
  3624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3627. }
  3628. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3629. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3630. _content = $$("div", {
  3631. className: "U_MD_D_KO",
  3632. "onmousedown": U.UF.C.closure(function (obj) {
  3633. //防止拖动图标即打开了桌面应用
  3634. U.MD.D.click(this, obj);
  3635. }, [_gdjgAdminDeskIconInfo[i]]),
  3636. "onclick": U.UF.C.closure(function (obj) {
  3637. //防止拖动图标即打开了桌面应用
  3638. U.MD.D.click(this, obj);
  3639. }, [_gdjgAdminDeskIconInfo[i]])
  3640. }, _frag); //
  3641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3644. }
  3645. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3646. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3647. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3648. continue
  3649. }
  3650. _content = $$("div", {
  3651. className: "U_MD_D_KO",
  3652. "onmousedown": U.UF.C.closure(function (obj) {
  3653. //防止拖动图标即打开了桌面应用
  3654. U.MD.D.click(this, obj);
  3655. }, [_gdjgTeacherDeskIconInfo[i]]),
  3656. "onclick": U.UF.C.closure(function (obj) {
  3657. //防止拖动图标即打开了桌面应用
  3658. U.MD.D.click(this, obj);
  3659. }, [_gdjgTeacherDeskIconInfo[i]])
  3660. }, _frag); //
  3661. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3662. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3663. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3664. }
  3665. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3666. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3667. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3668. continue
  3669. }
  3670. _content = $$("div", {
  3671. className: "U_MD_D_KO",
  3672. "onmousedown": U.UF.C.closure(function (obj) {
  3673. //防止拖动图标即打开了桌面应用
  3674. U.MD.D.click(this, obj);
  3675. }, [_szherTeacherDeskIconInfo[i]]),
  3676. "onclick": U.UF.C.closure(function (obj) {
  3677. //防止拖动图标即打开了桌面应用
  3678. U.MD.D.click(this, obj);
  3679. }, [_szherTeacherDeskIconInfo[i]])
  3680. }, _frag); //
  3681. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3682. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3683. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3684. }
  3685. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3686. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3687. _content = $$("div", {
  3688. className: "U_MD_D_KO",
  3689. "onmousedown": U.UF.C.closure(function (obj) {
  3690. //防止拖动图标即打开了桌面应用
  3691. U.MD.D.click(this, obj);
  3692. }, [_heyuannAdminDeskIconInfo[i]]),
  3693. "onclick": U.UF.C.closure(function (obj) {
  3694. //防止拖动图标即打开了桌面应用
  3695. U.MD.D.click(this, obj);
  3696. }, [_heyuannAdminDeskIconInfo[i]])
  3697. }, _frag); //
  3698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3701. }
  3702. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3703. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3704. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3705. continue
  3706. }
  3707. _content = $$("div", {
  3708. className: "U_MD_D_KO",
  3709. "onmousedown": U.UF.C.closure(function (obj) {
  3710. //防止拖动图标即打开了桌面应用
  3711. U.MD.D.click(this, obj);
  3712. }, [_heyuanTeacherDeskIconInfo[i]]),
  3713. "onclick": U.UF.C.closure(function (obj) {
  3714. //防止拖动图标即打开了桌面应用
  3715. U.MD.D.click(this, obj);
  3716. }, [_heyuanTeacherDeskIconInfo[i]])
  3717. }, _frag); //
  3718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3721. } //
  3722. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3723. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3724. _content = $$("div", {
  3725. className: "U_MD_D_KO",
  3726. "onmousedown": U.UF.C.closure(function (obj) {
  3727. //防止拖动图标即打开了桌面应用
  3728. U.MD.D.click(this, obj);
  3729. }, [_dseiAdminDeskIconInfo[i]]),
  3730. "onclick": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_dseiAdminDeskIconInfo[i]])
  3734. }, _frag); //
  3735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3738. }
  3739. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3740. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3741. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3742. continue
  3743. }
  3744. _content = $$("div", {
  3745. className: "U_MD_D_KO",
  3746. "onmousedown": U.UF.C.closure(function (obj) {
  3747. //防止拖动图标即打开了桌面应用
  3748. U.MD.D.click(this, obj);
  3749. }, [_dseiTeacherDeskIconInfo[i]]),
  3750. "onclick": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_dseiTeacherDeskIconInfo[i]])
  3754. }, _frag); //
  3755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3758. } //
  3759. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3760. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3761. _content = $$("div", {
  3762. className: "U_MD_D_KO",
  3763. "onmousedown": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_chjyjAdminDeskIconInfo[i]]),
  3767. "onclick": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_chjyjAdminDeskIconInfo[i]])
  3771. }, _frag); //
  3772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3775. }//
  3776. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3777. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3778. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3779. continue
  3780. }
  3781. _content = $$("div", {
  3782. className: "U_MD_D_KO",
  3783. "onmousedown": U.UF.C.closure(function (obj) {
  3784. //防止拖动图标即打开了桌面应用
  3785. U.MD.D.click(this, obj);
  3786. }, [_chjyjTeacherDeskIconInfo[i]]),
  3787. "onclick": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_chjyjTeacherDeskIconInfo[i]])
  3791. }, _frag); //
  3792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3795. }
  3796. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3797. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3798. _content = $$("div", {
  3799. className: "U_MD_D_KO",
  3800. "onmousedown": U.UF.C.closure(function (obj) {
  3801. //防止拖动图标即打开了桌面应用
  3802. U.MD.D.click(this, obj);
  3803. }, [_szjkyAdminDeskIconInfo[i]]),
  3804. "onclick": U.UF.C.closure(function (obj) {
  3805. //防止拖动图标即打开了桌面应用
  3806. U.MD.D.click(this, obj);
  3807. }, [_szjkyAdminDeskIconInfo[i]])
  3808. }, _frag); //
  3809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3812. }//
  3813. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3814. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3815. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3816. continue
  3817. }
  3818. _content = $$("div", {
  3819. className: "U_MD_D_KO",
  3820. "onmousedown": U.UF.C.closure(function (obj) {
  3821. //防止拖动图标即打开了桌面应用
  3822. U.MD.D.click(this, obj);
  3823. }, [_szjkyTeacherDeskIconInfo[i]]),
  3824. "onclick": U.UF.C.closure(function (obj) {
  3825. //防止拖动图标即打开了桌面应用
  3826. U.MD.D.click(this, obj);
  3827. }, [_szjkyTeacherDeskIconInfo[i]])
  3828. }, _frag); //
  3829. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3830. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3831. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3832. }
  3833. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3834. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3835. _content = $$("div", {
  3836. className: "U_MD_D_KO",
  3837. "onmousedown": U.UF.C.closure(function (obj) {
  3838. //防止拖动图标即打开了桌面应用
  3839. U.MD.D.click(this, obj);
  3840. }, [_x020201AdminDeskIconInfo[i]]),
  3841. "onclick": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_x020201AdminDeskIconInfo[i]])
  3845. }, _frag); //
  3846. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3847. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3848. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3849. }//
  3850. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3851. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3852. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3853. continue
  3854. }
  3855. _content = $$("div", {
  3856. className: "U_MD_D_KO",
  3857. "onmousedown": U.UF.C.closure(function (obj) {
  3858. //防止拖动图标即打开了桌面应用
  3859. U.MD.D.click(this, obj);
  3860. }, [_x020201TeacherDeskIconInfo[i]]),
  3861. "onclick": U.UF.C.closure(function (obj) {
  3862. //防止拖动图标即打开了桌面应用
  3863. U.MD.D.click(this, obj);
  3864. }, [_x020201TeacherDeskIconInfo[i]])
  3865. }, _frag); //
  3866. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3867. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3868. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3869. }
  3870. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3871. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3872. _content = $$("div", {
  3873. className: "U_MD_D_KO",
  3874. "onmousedown": U.UF.C.closure(function (obj) {
  3875. //防止拖动图标即打开了桌面应用
  3876. U.MD.D.click(this, obj);
  3877. }, [_SCNUETAdminDeskIconInfo[i]]),
  3878. "onclick": U.UF.C.closure(function (obj) {
  3879. //防止拖动图标即打开了桌面应用
  3880. U.MD.D.click(this, obj);
  3881. }, [_SCNUETAdminDeskIconInfo[i]])
  3882. }, _frag); //
  3883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3886. }//
  3887. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3888. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3889. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3890. continue
  3891. }
  3892. _content = $$("div", {
  3893. className: "U_MD_D_KO",
  3894. "onmousedown": U.UF.C.closure(function (obj) {
  3895. //防止拖动图标即打开了桌面应用
  3896. U.MD.D.click(this, obj);
  3897. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3898. "onclick": U.UF.C.closure(function (obj) {
  3899. //防止拖动图标即打开了桌面应用
  3900. U.MD.D.click(this, obj);
  3901. }, [_SCNUETTeacherDeskIconInfo[i]])
  3902. }, _frag); //
  3903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3906. }
  3907. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3908. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3909. _content = $$("div", {
  3910. className: "U_MD_D_KO",
  3911. "onmousedown": U.UF.C.closure(function (obj) {
  3912. //防止拖动图标即打开了桌面应用
  3913. U.MD.D.click(this, obj);
  3914. }, [_futianAdminDeskIconInfo[i]]),
  3915. "onclick": U.UF.C.closure(function (obj) {
  3916. //防止拖动图标即打开了桌面应用
  3917. U.MD.D.click(this, obj);
  3918. }, [_futianAdminDeskIconInfo[i]])
  3919. }, _frag); //
  3920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3923. }
  3924. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3925. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3926. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3927. continue
  3928. }
  3929. _content = $$("div", {
  3930. className: "U_MD_D_KO",
  3931. "onmousedown": U.UF.C.closure(function (obj) {
  3932. //防止拖动图标即打开了桌面应用
  3933. U.MD.D.click(this, obj);
  3934. }, [_futianTeacherDeskIconInfo[i]]),
  3935. "onclick": U.UF.C.closure(function (obj) {
  3936. //防止拖动图标即打开了桌面应用
  3937. U.MD.D.click(this, obj);
  3938. }, [_futianTeacherDeskIconInfo[i]])
  3939. }, _frag); //
  3940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3943. }
  3944. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3945. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3946. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3947. continue
  3948. }
  3949. _content = $$("div", {
  3950. className: "U_MD_D_KO",
  3951. "onmousedown": U.UF.C.closure(function (obj) {
  3952. //防止拖动图标即打开了桌面应用
  3953. U.MD.D.click(this, obj);
  3954. }, [_MingdeTeacherDeskIcon[i]]),
  3955. "onclick": U.UF.C.closure(function (obj) {
  3956. //防止拖动图标即打开了桌面应用
  3957. U.MD.D.click(this, obj);
  3958. }, [_MingdeTeacherDeskIcon[i]])
  3959. }, _frag); //
  3960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3963. }
  3964. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3965. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3966. _content = $$("div", {
  3967. className: "U_MD_D_KO",
  3968. "onmousedown": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_lhsAdminDesktopIconInfo[i]]),
  3972. "onclick": U.UF.C.closure(function (obj) {
  3973. //防止拖动图标即打开了桌面应用
  3974. U.MD.D.click(this, obj);
  3975. }, [_lhsAdminDesktopIconInfo[i]])
  3976. }, _frag); //
  3977. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3978. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3979. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3980. }
  3981. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3982. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3983. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3984. continue
  3985. }
  3986. _content = $$("div", {
  3987. className: "U_MD_D_KO",
  3988. "onmousedown": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_lhsteacherDesktopIconInfo[i]]),
  3992. "onclick": U.UF.C.closure(function (obj) {
  3993. //防止拖动图标即打开了桌面应用
  3994. U.MD.D.click(this, obj);
  3995. }, [_lhsteacherDesktopIconInfo[i]])
  3996. }, _frag); //
  3997. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3998. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3999. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4000. }
  4001. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4002. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4003. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4004. continue
  4005. }
  4006. _content = $$("div", {
  4007. className: "U_MD_D_KO",
  4008. "onmousedown": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4012. "onclick": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_zhoujiateacherDesktopIconInfo[i]])
  4016. }, _frag); //
  4017. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4018. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4019. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4020. }
  4021. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4022. for (i = 0; i < _hanDeskIcon.length; i++) {
  4023. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4024. continue
  4025. }
  4026. _content = $$("div", {
  4027. className: "U_MD_D_KO",
  4028. "onmousedown": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_hanDeskIcon[i]]),
  4032. "onclick": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_hanDeskIcon[i]])
  4036. }, _frag); //
  4037. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4038. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4039. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4040. }
  4041. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4042. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4043. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4044. continue
  4045. }
  4046. _content = $$("div", {
  4047. className: "U_MD_D_KO",
  4048. "onmousedown": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_orgStemDeskIcon[i]]),
  4052. "onclick": U.UF.C.closure(function (obj) {
  4053. //防止拖动图标即打开了桌面应用
  4054. U.MD.D.click(this, obj);
  4055. }, [_orgStemDeskIcon[i]])
  4056. }, _frag); //
  4057. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4058. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4059. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4060. }
  4061. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4062. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4063. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4064. continue
  4065. }
  4066. _content = $$("div", {
  4067. className: "U_MD_D_KO",
  4068. "onmousedown": U.UF.C.closure(function (obj) {
  4069. //防止拖动图标即打开了桌面应用
  4070. U.MD.D.click(this, obj);
  4071. }, [_szulsDeskIcon[i]]),
  4072. "onclick": U.UF.C.closure(function (obj) {
  4073. //防止拖动图标即打开了桌面应用
  4074. U.MD.D.click(this, obj);
  4075. }, [_szulsDeskIcon[i]])
  4076. }, _frag); //
  4077. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4078. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4079. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4080. }
  4081. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4082. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4083. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4084. continue
  4085. }
  4086. _content = $$("div", {
  4087. className: "U_MD_D_KO",
  4088. "onmousedown": U.UF.C.closure(function (obj) {
  4089. //防止拖动图标即打开了桌面应用
  4090. U.MD.D.click(this, obj);
  4091. }, [_orgDesktopIconInfo[i]]),
  4092. "onclick": U.UF.C.closure(function (obj) {
  4093. //防止拖动图标即打开了桌面应用
  4094. U.MD.D.click(this, obj);
  4095. }, [_orgDesktopIconInfo[i]])
  4096. }, _frag); //
  4097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4100. }
  4101. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4102. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4103. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4104. continue
  4105. }
  4106. _content = $$("div", {
  4107. className: "U_MD_D_KO",
  4108. "onmousedown": U.UF.C.closure(function (obj) {
  4109. //防止拖动图标即打开了桌面应用
  4110. U.MD.D.click(this, obj);
  4111. }, [_schoolDesktopIconInfo[i]]),
  4112. "onclick": U.UF.C.closure(function (obj) {
  4113. //防止拖动图标即打开了桌面应用
  4114. U.MD.D.click(this, obj);
  4115. }, [_schoolDesktopIconInfo[i]])
  4116. }, _frag); //
  4117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4120. }
  4121. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4122. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4123. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4124. continue
  4125. }
  4126. _content = $$("div", {
  4127. className: "U_MD_D_KO",
  4128. "onmousedown": U.UF.C.closure(function (obj) {
  4129. //防止拖动图标即打开了桌面应用
  4130. U.MD.D.click(this, obj);
  4131. }, [_GMteacherDesktopIconInfo[i]]),
  4132. "onclick": U.UF.C.closure(function (obj) {
  4133. //防止拖动图标即打开了桌面应用
  4134. U.MD.D.click(this, obj);
  4135. }, [_GMteacherDesktopIconInfo[i]])
  4136. }, _frag); //
  4137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4140. }
  4141. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4142. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4143. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4144. continue
  4145. }
  4146. _content = $$("div", {
  4147. className: "U_MD_D_KO",
  4148. "onmousedown": U.UF.C.closure(function (obj) {
  4149. //防止拖动图标即打开了桌面应用
  4150. U.MD.D.click(this, obj);
  4151. }, [_SONGteacherDesktopIconInfo[i]]),
  4152. "onclick": U.UF.C.closure(function (obj) {
  4153. //防止拖动图标即打开了桌面应用
  4154. U.MD.D.click(this, obj);
  4155. }, [_SONGteacherDesktopIconInfo[i]])
  4156. }, _frag); //
  4157. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4158. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4159. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4160. }
  4161. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4162. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4163. _content = $$("div", {
  4164. className: "U_MD_D_KO",
  4165. "onmousedown": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_GMstudentDesktopIconInfo[i]]),
  4169. "onclick": U.UF.C.closure(function (obj) {
  4170. //防止拖动图标即打开了桌面应用
  4171. U.MD.D.click(this, obj);
  4172. }, [_GMstudentDesktopIconInfo[i]])
  4173. }, _frag); //
  4174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4177. }
  4178. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4179. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4180. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4181. continue
  4182. }
  4183. _content = $$("div", {
  4184. className: "U_MD_D_KO",
  4185. "onmousedown": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_tcTeacherDeskIconInfo[i]]),
  4189. "onclick": U.UF.C.closure(function (obj) {
  4190. //防止拖动图标即打开了桌面应用
  4191. U.MD.D.click(this, obj);
  4192. }, [_tcTeacherDeskIconInfo[i]])
  4193. }, _frag); //
  4194. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4195. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4196. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4197. }
  4198. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4199. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4200. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4201. continue
  4202. }
  4203. _content = $$("div", {
  4204. className: "U_MD_D_KO",
  4205. "onmousedown": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_tcOrganizerDeskIconInfo[i]]),
  4209. "onclick": U.UF.C.closure(function (obj) {
  4210. //防止拖动图标即打开了桌面应用
  4211. U.MD.D.click(this, obj);
  4212. }, [_tcOrganizerDeskIconInfo[i]])
  4213. }, _frag); //
  4214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4217. }
  4218. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4219. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4220. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4221. continue
  4222. }
  4223. _content = $$("div", {
  4224. className: "U_MD_D_KO",
  4225. "onmousedown": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_szscTeacherDeskIconInfo[i]]),
  4229. "onclick": U.UF.C.closure(function (obj) {
  4230. //防止拖动图标即打开了桌面应用
  4231. U.MD.D.click(this, obj);
  4232. }, [_szscTeacherDeskIconInfo[i]])
  4233. }, _frag); //
  4234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4237. }
  4238. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4239. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4240. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4241. continue
  4242. }
  4243. _content = $$("div", {
  4244. className: "U_MD_D_KO",
  4245. "onmousedown": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_szscOrganizerDeskIconInfo[i]]),
  4249. "onclick": U.UF.C.closure(function (obj) {
  4250. //防止拖动图标即打开了桌面应用
  4251. U.MD.D.click(this, obj);
  4252. }, [_szscOrganizerDeskIconInfo[i]])
  4253. }, _frag); //
  4254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4257. }
  4258. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4259. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4260. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4261. continue
  4262. }
  4263. _content = $$("div", {
  4264. className: "U_MD_D_KO",
  4265. "onmousedown": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_nsfxTeacherDeskIconInfo[i]]),
  4269. "onclick": U.UF.C.closure(function (obj) {
  4270. //防止拖动图标即打开了桌面应用
  4271. U.MD.D.click(this, obj);
  4272. }, [_nsfxTeacherDeskIconInfo[i]])
  4273. }, _frag); //
  4274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4277. }
  4278. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4279. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4280. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4281. continue
  4282. }
  4283. _content = $$("div", {
  4284. className: "U_MD_D_KO",
  4285. "onmousedown": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_stiaTeacherDeskIconInfo[i]]),
  4289. "onclick": U.UF.C.closure(function (obj) {
  4290. //防止拖动图标即打开了桌面应用
  4291. U.MD.D.click(this, obj);
  4292. }, [_stiaTeacherDeskIconInfo[i]])
  4293. }, _frag); //
  4294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4297. }
  4298. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4299. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4300. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4301. continue
  4302. }
  4303. _content = $$("div", {
  4304. className: "U_MD_D_KO",
  4305. "onmousedown": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_szdjgTeacherDeskIconInfo[i]]),
  4309. "onclick": U.UF.C.closure(function (obj) {
  4310. //防止拖动图标即打开了桌面应用
  4311. U.MD.D.click(this, obj);
  4312. }, [_szdjgTeacherDeskIconInfo[i]])
  4313. }, _frag); //
  4314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4317. }
  4318. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4319. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4320. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4321. continue
  4322. }
  4323. _content = $$("div", {
  4324. className: "U_MD_D_KO",
  4325. "onmousedown": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_x010607TeacherDeskIconInfo[i]]),
  4329. "onclick": U.UF.C.closure(function (obj) {
  4330. //防止拖动图标即打开了桌面应用
  4331. U.MD.D.click(this, obj);
  4332. }, [_x010607TeacherDeskIconInfo[i]])
  4333. }, _frag); //
  4334. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4335. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4336. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4337. }
  4338. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4339. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4340. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4341. continue
  4342. }
  4343. _content = $$("div", {
  4344. className: "U_MD_D_KO",
  4345. "onmousedown": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_xhlyTeacherDeskIconInfo[i]]),
  4349. "onclick": U.UF.C.closure(function (obj) {
  4350. //防止拖动图标即打开了桌面应用
  4351. U.MD.D.click(this, obj);
  4352. }, [_xhlyTeacherDeskIconInfo[i]])
  4353. }, _frag); //
  4354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4357. }
  4358. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4359. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4360. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4361. continue
  4362. }
  4363. _content = $$("div", {
  4364. className: "U_MD_D_KO",
  4365. "onmousedown": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4369. "onclick": U.UF.C.closure(function (obj) {
  4370. //防止拖动图标即打开了桌面应用
  4371. U.MD.D.click(this, obj);
  4372. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4373. }, _frag); //
  4374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4377. }
  4378. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4379. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4380. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4381. continue
  4382. }
  4383. _content = $$("div", {
  4384. className: "U_MD_D_KO",
  4385. "onmousedown": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_x010503TeacherDeskIconInfo[i]]),
  4389. "onclick": U.UF.C.closure(function (obj) {
  4390. //防止拖动图标即打开了桌面应用
  4391. U.MD.D.click(this, obj);
  4392. }, [_x010503TeacherDeskIconInfo[i]])
  4393. }, _frag); //
  4394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4397. }
  4398. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4399. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4400. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4401. continue
  4402. }
  4403. _content = $$("div", {
  4404. className: "U_MD_D_KO",
  4405. "onmousedown": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_x010504TeacherDeskIconInfo[i]]),
  4409. "onclick": U.UF.C.closure(function (obj) {
  4410. //防止拖动图标即打开了桌面应用
  4411. U.MD.D.click(this, obj);
  4412. }, [_x010504TeacherDeskIconInfo[i]])
  4413. }, _frag); //
  4414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4417. }
  4418. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4419. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4420. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4421. continue
  4422. }
  4423. _content = $$("div", {
  4424. className: "U_MD_D_KO",
  4425. "onmousedown": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_x010505TeacherDeskIconInfo[i]]),
  4429. "onclick": U.UF.C.closure(function (obj) {
  4430. //防止拖动图标即打开了桌面应用
  4431. U.MD.D.click(this, obj);
  4432. }, [_x010505TeacherDeskIconInfo[i]])
  4433. }, _frag); //
  4434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4437. }
  4438. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4439. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4440. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4441. continue
  4442. }
  4443. _content = $$("div", {
  4444. className: "U_MD_D_KO",
  4445. "onmousedown": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_x010404TeacherDeskIconInfo[i]]),
  4449. "onclick": U.UF.C.closure(function (obj) {
  4450. //防止拖动图标即打开了桌面应用
  4451. U.MD.D.click(this, obj);
  4452. }, [_x010404TeacherDeskIconInfo[i]])
  4453. }, _frag); //
  4454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4457. }
  4458. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4459. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4460. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4461. continue
  4462. }
  4463. _content = $$("div", {
  4464. className: "U_MD_D_KO",
  4465. "onmousedown": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_x010204TeacherDeskIconInfo[i]]),
  4469. "onclick": U.UF.C.closure(function (obj) {
  4470. //防止拖动图标即打开了桌面应用
  4471. U.MD.D.click(this, obj);
  4472. }, [_x010204TeacherDeskIconInfo[i]])
  4473. }, _frag); //
  4474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4477. }
  4478. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4479. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4480. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4481. continue
  4482. }
  4483. _content = $$("div", {
  4484. className: "U_MD_D_KO",
  4485. "onmousedown": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_x320101TeacherDeskIconInfo[i]]),
  4489. "onclick": U.UF.C.closure(function (obj) {
  4490. //防止拖动图标即打开了桌面应用
  4491. U.MD.D.click(this, obj);
  4492. }, [_x320101TeacherDeskIconInfo[i]])
  4493. }, _frag); //
  4494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4497. }
  4498. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4499. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4500. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4501. continue
  4502. }
  4503. _content = $$("div", {
  4504. className: "U_MD_D_KO",
  4505. "onmousedown": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_trailTeacherDeskIconInfo[i]]),
  4509. "onclick": U.UF.C.closure(function (obj) {
  4510. //防止拖动图标即打开了桌面应用
  4511. U.MD.D.click(this, obj);
  4512. }, [_trailTeacherDeskIconInfo[i]])
  4513. }, _frag); //
  4514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4517. }
  4518. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4519. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4520. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4521. continue
  4522. }
  4523. _content = $$("div", {
  4524. className: "U_MD_D_KO",
  4525. "onmousedown": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_trialTeacherDeskIconInfo[i]]),
  4529. "onclick": U.UF.C.closure(function (obj) {
  4530. //防止拖动图标即打开了桌面应用
  4531. U.MD.D.click(this, obj);
  4532. }, [_trialTeacherDeskIconInfo[i]])
  4533. }, _frag); //
  4534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4537. }
  4538. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4539. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4540. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4541. continue
  4542. }
  4543. _content = $$("div", {
  4544. className: "U_MD_D_KO",
  4545. "onmousedown": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4549. "onclick": U.UF.C.closure(function (obj) {
  4550. //防止拖动图标即打开了桌面应用
  4551. U.MD.D.click(this, obj);
  4552. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4553. }, _frag); //
  4554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4557. }
  4558. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4559. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4560. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4561. continue
  4562. }
  4563. _content = $$("div", {
  4564. className: "U_MD_D_KO",
  4565. "onmousedown": U.UF.C.closure(function (obj) {
  4566. //防止拖动图标即打开了桌面应用
  4567. U.MD.D.click(this, obj);
  4568. }, [_szsyTeacherDeskIconInfo[i]]),
  4569. "onclick": U.UF.C.closure(function (obj) {
  4570. //防止拖动图标即打开了桌面应用
  4571. U.MD.D.click(this, obj);
  4572. }, [_szsyTeacherDeskIconInfo[i]])
  4573. }, _frag); //
  4574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4577. }
  4578. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4579. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4580. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4581. continue
  4582. }
  4583. _content = $$("div", {
  4584. className: "U_MD_D_KO",
  4585. "onmousedown": U.UF.C.closure(function (obj) {
  4586. //防止拖动图标即打开了桌面应用
  4587. U.MD.D.click(this, obj);
  4588. }, [_x010608TeacherDeskIconInfo[i]]),
  4589. "onclick": U.UF.C.closure(function (obj) {
  4590. //防止拖动图标即打开了桌面应用
  4591. U.MD.D.click(this, obj);
  4592. }, [_x010608TeacherDeskIconInfo[i]])
  4593. }, _frag); //
  4594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4597. }
  4598. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4599. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4600. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4601. continue
  4602. }
  4603. _content = $$("div", {
  4604. className: "U_MD_D_KO",
  4605. "onmousedown": U.UF.C.closure(function (obj) {
  4606. //防止拖动图标即打开了桌面应用
  4607. U.MD.D.click(this, obj);
  4608. }, [_x010611TeacherDeskIconInfo[i]]),
  4609. "onclick": U.UF.C.closure(function (obj) {
  4610. //防止拖动图标即打开了桌面应用
  4611. U.MD.D.click(this, obj);
  4612. }, [_x010611TeacherDeskIconInfo[i]])
  4613. }, _frag); //
  4614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4617. }
  4618. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4619. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4620. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4621. continue
  4622. }
  4623. _content = $$("div", {
  4624. className: "U_MD_D_KO",
  4625. "onmousedown": U.UF.C.closure(function (obj) {
  4626. //防止拖动图标即打开了桌面应用
  4627. U.MD.D.click(this, obj);
  4628. }, [_x010612TeacherDeskIconInfo[i]]),
  4629. "onclick": U.UF.C.closure(function (obj) {
  4630. //防止拖动图标即打开了桌面应用
  4631. U.MD.D.click(this, obj);
  4632. }, [_x010612TeacherDeskIconInfo[i]])
  4633. }, _frag); //
  4634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4637. }
  4638. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4639. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4640. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4641. continue
  4642. }
  4643. _content = $$("div", {
  4644. className: "U_MD_D_KO",
  4645. "onmousedown": U.UF.C.closure(function (obj) {
  4646. //防止拖动图标即打开了桌面应用
  4647. U.MD.D.click(this, obj);
  4648. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4649. "onclick": U.UF.C.closure(function (obj) {
  4650. //防止拖动图标即打开了桌面应用
  4651. U.MD.D.click(this, obj);
  4652. }, [_tianyuanTeacherDeskIconInfo[i]])
  4653. }, _frag); //
  4654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4657. }
  4658. } else {
  4659. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4660. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4661. continue
  4662. }
  4663. _content = $$("div", {
  4664. className: "U_MD_D_KO",
  4665. "onmousedown": U.UF.C.closure(function (obj) {
  4666. //防止拖动图标即打开了桌面应用
  4667. U.MD.D.click(this, obj);
  4668. }, [_teacherDesktopIconInfo[i]]),
  4669. "onclick": U.UF.C.closure(function (obj) {
  4670. //防止拖动图标即打开了桌面应用
  4671. U.MD.D.click(this, obj);
  4672. }, [_teacherDesktopIconInfo[i]])
  4673. }, _frag); //
  4674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4677. }
  4678. }
  4679. } else {
  4680. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4681. _content = $$("div", {
  4682. className: "U_MD_D_KO",
  4683. style: { 'width': '124px', 'height': '145px' },
  4684. "onmousedown": U.UF.C.closure(function (obj) {
  4685. //防止拖动图标即打开了桌面应用
  4686. U.MD.D.click(this, obj);
  4687. }, [_easyDesktopIconInfo[i]]),
  4688. "onclick": U.UF.C.closure(function (obj) {
  4689. //防止拖动图标即打开了桌面应用
  4690. U.MD.D.click(this, obj);
  4691. }, [_easyDesktopIconInfo[i]])
  4692. }, _frag); //
  4693. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4694. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4695. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4696. }
  4697. }
  4698. if (type == 1) {
  4699. //加载好后给图标定位
  4700. U.MD.D.iconPostion($(_frag).Child());
  4701. } else {
  4702. //加载好后给图标定位
  4703. U.MD.D.iconPostion2($(_frag).Child());
  4704. }
  4705. //把图标加载到页面
  4706. el.appendChild(_frag);
  4707. }
  4708. /**
  4709. * 显示任务栏
  4710. *
  4711. * @param {element} 桌面元素
  4712. */
  4713. U.MD.D.I.displayTaskbar = function (el) {
  4714. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4715. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4716. //任务栏位置变化
  4717. U.selectEl(el).css({ "bottom": "0px" });
  4718. //桌面位置变话
  4719. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4720. }
  4721. }
  4722. //#region 桌面图标拖动逻辑
  4723. /**
  4724. * 桌面排列图标
  4725. *
  4726. * @param {element} 桌面元素
  4727. * @param {object} 上下相距的距离
  4728. * @param {object} 左右相距的距离
  4729. * @return {object} 命名空间
  4730. */
  4731. U.MD.D.iconPostion = function (childs, top, left) {
  4732. var i; //用于循环处理
  4733. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4734. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4735. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4736. for (i = 0; i < childs.length; i++) {
  4737. //如果竖排top超过了范围处理
  4738. if (top + 95 > US.height - 10) {
  4739. //left超过了页面范围处理,则向上重叠打印处理
  4740. if ((left + 180) > US.width) {
  4741. top -= 110;
  4742. left -= 90;
  4743. }
  4744. //没有超过范围,那么left+90添加到下一个竖排打印
  4745. else {
  4746. left += 90;
  4747. top = 15;
  4748. };
  4749. }
  4750. //给图标的位置赋值
  4751. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4752. if (i < childs.length - 1) {
  4753. //页面图标每次向下加95
  4754. top += 95;
  4755. }
  4756. }
  4757. //返回最后调用的图标的位置
  4758. return [top, left];
  4759. }
  4760. /**
  4761. * 桌面排列图标
  4762. *
  4763. * @param {element} 桌面元素
  4764. * @param {object} 上下相距的距离
  4765. * @param {object} 左右相距的距离
  4766. * @return {object} 命名空间
  4767. */
  4768. U.MD.D.iconPostion2 = function (childs, top, left) {
  4769. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4770. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4771. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4772. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4773. for (i = 0; i < childs.length; i++) {
  4774. //如果竖排top超过了范围处理
  4775. if (left + 150 > US.width - 10) {
  4776. //left超过了页面范围处理,则向上重叠打印处理
  4777. if ((top + 180) > US.Height) {
  4778. top -= 150;
  4779. left -= 150;
  4780. }
  4781. //没有超过范围,那么left+90添加到下一个竖排打印
  4782. else {
  4783. top += 150;
  4784. left = ol;
  4785. };
  4786. }
  4787. //给图标的位置赋值
  4788. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4789. if (i < childs.length - 1) {
  4790. //页面图标每次向下加95
  4791. left += 150;
  4792. }
  4793. }
  4794. //返回最后调用的图标的位置
  4795. return [top, left];
  4796. }
  4797. /**
  4798. * 桌面点击事件逻辑
  4799. *
  4800. * @param {element} 桌面元素
  4801. * @param {object} 上下相距的距离
  4802. * @param {object} 左右相距的距离
  4803. * @return {object} 命名空间
  4804. */
  4805. U.MD.D.click = function (el, obj) {
  4806. var _buttonnumber = event.button; //点击的按钮的事件值
  4807. var _userinfo = US.userInfo;
  4808. U.UF.EV.stopBubble(); //阻止向上冒泡
  4809. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4810. if (_buttonnumber < 2) {
  4811. //如果是click事件的处理
  4812. if (event.type == "click") {
  4813. //如果元素在mousemove事件中没有移动则出发click事件
  4814. if (!U.MD.D.I.IsDrag) {
  4815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4816. U.alert("请先登录您的账号!");
  4817. setTimeout(() => {
  4818. U.MD.U.L.login();
  4819. }, 2000);
  4820. } else {
  4821. //打开应用处理
  4822. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4823. }
  4824. }
  4825. }
  4826. //如果是mouse事件的处理
  4827. else {
  4828. if (US.Config.type == '1') {
  4829. //拖动处理,添加拖动和拖动结束事件
  4830. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4831. }
  4832. }
  4833. U.MD.D.I.IsDrag = false;
  4834. }
  4835. }
  4836. /**
  4837. * 拖动的处理
  4838. *
  4839. */
  4840. U.MD.D.iconMove = function () {
  4841. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4842. U.MD.D.I.IsDrag = true;
  4843. }
  4844. /**
  4845. * 拖动结束后,这里是定位处理,以网状的形式定位
  4846. *
  4847. * @param {element} 拖动的元素
  4848. * @return {object} 命名空间
  4849. */
  4850. U.MD.D.iconUp = function (el) {
  4851. var _top = 15,
  4852. _left = 20,
  4853. _margin,
  4854. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4855. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4856. if (_positioninfo["OT"] > 15) {
  4857. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4858. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4859. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4860. }
  4861. if (_positioninfo["OL"] > 20) {
  4862. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4863. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4864. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4865. }
  4866. //while循环判断么一个重叠的元素
  4867. do {
  4868. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4869. _top = _positioninfo[0] + 95; //得到定位后的top
  4870. _left = _positioninfo[1]; //得到定位后的left
  4871. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4872. }
  4873. /**
  4874. * 判断拖动后图标是否重叠
  4875. *
  4876. * @param {element} 拖动的元素
  4877. * @param {element} 桌面所有的元素
  4878. * @param {array} 拖动元素的位置
  4879. ----------[0] 上 top
  4880. ----------[1] 左 left
  4881. * @return {object} 命名空间
  4882. */
  4883. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4884. //循环所有的图标
  4885. for (var i = 0; i < childs.length; i++) {
  4886. //判断有没有和该图标诶子重叠的元素
  4887. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4888. return childs[i]; //如果有返回
  4889. }
  4890. }
  4891. }
  4892. //#endregion
  4893. //#endregion
  4894. //#region 桌面应用
  4895. /**
  4896. * 打开应用
  4897. *
  4898. * @param {string} 类型
  4899. -----------------Disk 网盘系统
  4900. -----------------PDisk 学习系统网盘
  4901. -----------------Poto 图片
  4902. -----------------Video 视频
  4903. -----------------Music 音乐
  4904. -----------------Word word
  4905. -----------------Excel excel
  4906. -----------------Txt 记事本
  4907. -----------------PB 学习系统
  4908. -----------------Blog 朋友圈系统
  4909. -----------------FTP ftp系统
  4910. -----------------Group 好友群
  4911. -----------------SY 首页系统
  4912. -----------------Set 个人设置
  4913. -----------------XSet 系统设置
  4914. -----------------App 我们所有的app
  4915. -----------------BC c.1473.cn 平台
  4916. -----------------CWeb d.1473.cn 变成平台
  4917. -----------------其他的外联系统 我们统一用iframe打开
  4918. * @param {array} 类型
  4919. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4920. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4921. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4922. 如果第一个参数为其他,则无第二个参数
  4923. * @returns {array}
  4924. */
  4925. window.addEventListener('message', function (e) { // 监听 message 事件
  4926. // alert(e.data.type);
  4927. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4928. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4929. //3是展示全部阶段 2学生 1老师 4专家
  4930. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4931. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4932. //3是展示全部阶段 2学生 1老师 4专家
  4933. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4934. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4935. //3是展示全部阶段 2学生 1老师 4专家
  4936. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4937. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4938. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4939. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4940. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4941. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4942. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4943. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4944. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4945. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4946. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4947. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4948. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4949. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4950. //3是展示全部阶段 2学生 1老师 4专家
  4951. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4952. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4953. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4954. U.MD.D.I.selectUser();
  4955. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4956. var _formel = document.getElementById("study");
  4957. U.UF.F.windowZooming(_formel);
  4958. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4959. var _formel = document.getElementById("studyDetail");
  4960. U.UF.F.windowZooming(_formel);
  4961. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4962. var _formel = document.getElementById("studyDetail");
  4963. U.UF.F.windowZooming(_formel);
  4964. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4965. var _formel = document.getElementById("studentStudy");
  4966. U.UF.F.windowZooming(_formel);
  4967. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4968. // var _formel = document.getElementById("study");
  4969. //如果最大化了,那么就把他缩小
  4970. // if (_formel.ismaximize) {
  4971. // return;
  4972. // }
  4973. // U.UF.F.windowZooming(_formel);
  4974. // U.UF.F.topWindow(_formel);
  4975. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4976. // var _formel = document.getElementById("studyDetail");
  4977. //如果最大化了,那么就把他缩小
  4978. // if (_formel.ismaximize) {
  4979. // return;
  4980. // }
  4981. // U.UF.F.windowZooming(_formel);
  4982. // U.UF.F.topWindow(_formel);
  4983. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4984. // var _formel = document.getElementById("studentStudy");
  4985. // if (_formel.ismaximize) {
  4986. // return;
  4987. // }
  4988. // U.UF.F.windowZooming(_formel);
  4989. // U.UF.F.topWindow(_formel);
  4990. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4991. var _formel = document.getElementById("study");
  4992. // if (_formel.ismaximize) {
  4993. // return;
  4994. // }
  4995. // U.UF.F.windowZooming(_formel);
  4996. U.UF.F.topWindow(_formel);
  4997. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4998. var _formel = document.getElementById("studentIndex");
  4999. U.UF.F.windowZooming(_formel);
  5000. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5001. var _formel = document.getElementById("studyDetailS");
  5002. U.UF.F.windowZooming(_formel);
  5003. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5004. var _formel = document.getElementById("studioIndex");
  5005. U.UF.F.windowZooming(_formel);
  5006. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5007. var _formel = document.getElementById("studyDetailStudio");
  5008. U.UF.F.windowZooming(_formel);
  5009. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5010. var _formel = document.getElementById("studyDetailStudio");
  5011. U.UF.F.windowZooming(_formel);
  5012. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5013. var _formel = document.getElementById("studyDetailNT");
  5014. U.UF.F.windowZooming(_formel);
  5015. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5016. var _formel = document.getElementById("studyDetailS");
  5017. U.UF.F.windowZooming(_formel);
  5018. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5019. var _formel = document.getElementById("studyDetailS");
  5020. U.UF.F.topWindow(_formel);
  5021. } else if (e.data.tools && e.data.tools == "1") {
  5022. // U.MD.D.I.openApplication("whiteboard")
  5023. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5024. } else if (e.data.tools && e.data.tools == "2") {
  5025. U.MD.D.I.openApplication("note")
  5026. } else if (e.data.tools && e.data.tools == "3") {
  5027. // U.MD.D.I.openApplication("mind")
  5028. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5029. } else if (e.data.tools && e.data.tools == "4") {
  5030. U.MD.D.I.openApplication("investigation")
  5031. } else if (e.data.tools && e.data.tools == "6") {
  5032. // U.MD.D.I.openApplication("doc")
  5033. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5034. } else if (e.data.tools && e.data.tools == "7") {
  5035. // U.MD.D.I.openApplication("mindNetwork")
  5036. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5037. } else if (e.data.tools && e.data.tools == "8") {
  5038. U.MD.D.I.openApplication("library")
  5039. } else if (e.data.tools && e.data.tools == "17") {
  5040. U.MD.D.I.openApplication("stuLibrary")
  5041. } else if (e.data.tools && e.data.tools == "18") {
  5042. U.MD.D.I.openApplication("train")
  5043. } else if (e.data.tools && e.data.tools == "21") {
  5044. U.MD.D.I.openApplication("program")
  5045. } else if (e.data.tools && e.data.tools == "22") {
  5046. U.MD.D.I.openApplication("AIprogram2")
  5047. } else if (e.data.tools && e.data.tools == "23") {
  5048. U.MD.D.I.openApplication("Pythonprogram")
  5049. } else if (e.data.tools && e.data.tools == "24") {
  5050. U.MD.D.I.openApplication("AIprogram")
  5051. } else if (e.data.tools && e.data.tools == "25") {
  5052. U.MD.D.I.openApplication("sys")
  5053. } else if (e.data.tools && e.data.tools == "26") {
  5054. // U.MD.D.I.openApplication("courseDesign")
  5055. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5056. } else if (e.data.tools && e.data.tools == "31") {
  5057. U.MD.D.I.openApplication("netWorkPanel")
  5058. } else if (e.data.tools && e.data.tools == "32") {
  5059. U.MD.D.I.openApplication("codeEdit")
  5060. } else if (e.data.tools && e.data.tools == "57") {
  5061. U.MD.D.I.openApplication("CocoPi")
  5062. } else if (e.data.tools && e.data.tools == "63") {
  5063. U.MD.D.I.openApplication("Wood")
  5064. } else if (e.data.tools && e.data.tools == "58") {
  5065. U.MD.D.I.openApplication("car")
  5066. } else if (e.data.tools && e.data.tools == "59") {
  5067. U.MD.D.I.openApplication("lineSearch")
  5068. } else if (e.data.tools && e.data.tools == "60") {
  5069. U.MD.D.I.openApplication("deepLearning")
  5070. } else if (e.data.tools && e.data.tools == "61") {
  5071. U.MD.D.I.openApplication("allHistory")
  5072. } else if (e.data.tools && e.data.tools == "28") {
  5073. U.MD.D.I.openApplication("translation")
  5074. } else if (e.data.tools && e.data.tools == "37") {
  5075. U.MD.D.I.openApplication("mohe")
  5076. } else if (e.data.tools && e.data.tools == "38") {
  5077. U.MD.D.I.openApplication("24game")
  5078. } else if (e.data.tools && e.data.tools == "39") {
  5079. U.MD.D.I.openApplication("GeoGebra")
  5080. } else if (e.data.tools && e.data.tools == "43") {
  5081. U.MD.D.I.openApplication("studentEvaluate")
  5082. } else if (e.data.tools && e.data.tools == "44") {
  5083. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5084. } else if (e.data.tools && e.data.tools == "46") {
  5085. U.MD.D.I.openApplication("project")
  5086. } else if (e.data.tools && e.data.tools == "71") {
  5087. U.MD.D.I.openApplication("aigptCourse")
  5088. } else if (e.data.tools && e.data.tools == "72") {
  5089. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5090. } else if (e.data.tools && e.data.tools == "1s") {
  5091. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5092. } else if (e.data.tools && e.data.tools == "3s") {
  5093. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5094. } else if (e.data.tools && e.data.tools == "6s") {
  5095. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5096. } else if (e.data.tools && e.data.tools == "1studio") {
  5097. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5098. } else if (e.data.tools && e.data.tools == "3studio") {
  5099. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5100. } else if (e.data.tools && e.data.tools == "6studio") {
  5101. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5102. } else if (e.data.tools && e.data.tools == "3y") {
  5103. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5104. } else if (e.data.tools && e.data.tools == "1y") {
  5105. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5106. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5107. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5108. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5109. U.MD.D.I.openApplication("AIAnalyse")
  5110. } else if (e.data.tools && e.data.tools == "1teacher") {
  5111. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5112. } else if (e.data.tools && e.data.tools == "3teacher") {
  5113. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5114. } else if (e.data.tools && e.data.tools == "7teacher") {
  5115. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5116. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5117. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5118. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5119. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5120. } else if (e.data.tools && e.data.tools == "1E") {
  5121. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5122. } else if (e.data.tools && e.data.tools == "3E") {
  5123. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5124. } else if (e.data.tools && e.data.tools == "57y") {
  5125. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5126. } else if (e.data.tools && e.data.tools == "57u") {
  5127. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5128. } else if (e.data.tools && e.data.tools == "57teacher") {
  5129. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5130. } else if (e.data.tools && e.data.tools == "64") {
  5131. U.MD.D.I.openApplication("AIChat")
  5132. } else if (e.data.tools && e.data.tools == "66") {
  5133. U.MD.D.I.openApplication("formulaEdi")
  5134. } else if (e.data.tools && e.data.tools == "67") {
  5135. U.MD.D.I.openApplication("molStr")
  5136. } else if (e.data.tools && e.data.tools == "68") {
  5137. U.MD.D.I.openApplication("timeAxis")
  5138. } else if (e.data.tools && e.data.tools == "openCourse") {
  5139. let _data = {
  5140. typea: e.data.typea || '',
  5141. typeb: e.data.typeb || '',
  5142. typed: e.data.typed || '',
  5143. }
  5144. U.MD.D.I.openInApplication("index", _data)
  5145. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5146. let _data = {
  5147. classid: e.data.classid || '',
  5148. }
  5149. U.MD.D.I.openInApplication("dataClass", _data)
  5150. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5151. let _data = {
  5152. cid: e.data.cid || '',
  5153. gid: e.data.gid || '',
  5154. }
  5155. U.MD.D.I.openInApplication("opencCscl", _data)
  5156. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5157. U.MD.D.I.openApplication("dataBoardTest")
  5158. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5159. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5160. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5161. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5162. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5163. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5164. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5165. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5166. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5167. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5168. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5169. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5170. }else if (e.data.tools && e.data.tools == "loginSz") {
  5171. U.MD.D.I.openInApplication("loginSz")
  5172. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5173. if($('#classroom_observation_board')[0]){
  5174. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5175. }
  5176. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5177. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5178. if($('#classroom_observation_ob_comment')[0]){
  5179. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5180. }
  5181. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5182. }else if (e.data.tools && e.data.tools == "logout"){
  5183. U.MD.U.LO.logoutSystem()
  5184. }else if (e.data.tools && e.data.tools == "getLogin"){
  5185. let _iframe = $('#UI_Login')[0];
  5186. if (_iframe) {
  5187. var userInfo = US.userInfo;
  5188. var type = 2
  5189. if(userInfo && userInfo.userid){
  5190. type = 1
  5191. }
  5192. _contentWindow = _iframe.contentWindow;
  5193. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5194. }
  5195. }
  5196. });
  5197. U.MD.D.I.selectUser = function () {
  5198. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5199. if (res.value[0].length > 0) {
  5200. US.userInfo = res.value[0][0];
  5201. $(".userName")[0].innerHTML = US.userInfo.username;
  5202. }
  5203. }, [], { "type": "GET", "withCredentials": true });
  5204. }
  5205. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5206. var _userinfo = US.userInfo, //登录用户信息
  5207. _userid = US.userInfo.userid, //登录用户id
  5208. _oid = _userinfo.organizeid,
  5209. _type = US.userInfo.type,
  5210. _org = US.userInfo.org,
  5211. _role = US.userInfo.role,
  5212. _classId = US.userInfo.classid;
  5213. if (_type == 4) {
  5214. tType = 4
  5215. }
  5216. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5217. if(opArray.includes(str)){
  5218. let _str = str
  5219. if(str == 'appStore'){
  5220. _str = "cocoFlow"
  5221. }else if(str == "futureClass"){
  5222. _str = "cocoNote"
  5223. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5224. _str = "IntelligentForm"
  5225. }else if(str == "testStudent" || str == "testStudentSies"){
  5226. _str = "TeacherCenter"
  5227. }
  5228. try {
  5229. if (data) {
  5230. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5231. }else {
  5232. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5233. }
  5234. } catch (error) {
  5235. console.log(error);
  5236. }
  5237. }
  5238. switch (str) {
  5239. case "studyDetailNT": //无终端模式
  5240. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5241. setTimeout(() => {
  5242. U.MD.U.L.login();
  5243. }, 2000);
  5244. } else {
  5245. _formdiv = new U.UF.UI.form(
  5246. "课程详情",
  5247. $$("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 }), {
  5248. "id": "studyDetailNT",
  5249. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5250. "onresize": function () { }
  5251. }, {
  5252. closecallback: function () { }
  5253. }, { "style": { "height": "36px" } }).form; //创建窗体
  5254. _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); } }
  5255. break;
  5256. }
  5257. case "studyDetail":
  5258. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5259. setTimeout(() => {
  5260. U.MD.U.L.login();
  5261. }, 2000);
  5262. } else {
  5263. _formdiv = new U.UF.UI.form(
  5264. "课程详情",
  5265. $$("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 }), {
  5266. "id": "studyDetail",
  5267. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5268. "onresize": function () { }
  5269. }, {
  5270. closecallback: function () { }
  5271. }, { "style": { "height": "36px" } }).form; //创建窗体
  5272. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5273. break;
  5274. }
  5275. case "studyDetailTrain":
  5276. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5277. setTimeout(() => {
  5278. U.MD.U.L.login();
  5279. }, 2000);
  5280. } else {
  5281. _formdiv = new U.UF.UI.form(
  5282. "培训详情",
  5283. $$("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 }), {
  5284. "id": "studyDetailTrain",
  5285. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5286. "onresize": function () { }
  5287. }, {
  5288. closecallback: function () { }
  5289. }, { "style": { "height": "36px" } }).form; //创建窗体
  5290. _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); } }
  5291. break;
  5292. }
  5293. case "studyDetailS":
  5294. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5295. setTimeout(() => {
  5296. U.MD.U.L.login();
  5297. }, 2000);
  5298. } else {
  5299. _formdiv = new U.UF.UI.form(
  5300. "项目详情",
  5301. $$("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 }), {
  5302. "id": "studyDetailS",
  5303. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5304. "onresize": function () { }
  5305. }, {
  5306. closecallback: function () { }
  5307. }, { "style": { "height": "36px" } }).form; //创建窗体
  5308. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5309. break;
  5310. }
  5311. case "studyDetailStudio":
  5312. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5313. setTimeout(() => {
  5314. U.MD.U.L.login();
  5315. }, 2000);
  5316. } else {
  5317. _formdiv = new U.UF.UI.form(
  5318. "工作详情",
  5319. $$("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 }), {
  5320. "id": "studyDetailStudio",
  5321. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5322. "onresize": function () { }
  5323. }, {
  5324. closecallback: function () { }
  5325. }, { "style": { "height": "36px" } }).form; //创建窗体
  5326. _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); } }
  5327. break;
  5328. }
  5329. case "studyDetailS5":
  5330. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5331. setTimeout(() => {
  5332. U.MD.U.L.login();
  5333. }, 2000);
  5334. } else {
  5335. _formdiv = new U.UF.UI.form(
  5336. "项目详情",
  5337. $$("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 }), {
  5338. "id": "studyDetailS",
  5339. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5340. "onresize": function () { }
  5341. }, {
  5342. closecallback: function () { }
  5343. }, { "style": { "height": "36px" } }).form; //创建窗体
  5344. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5345. break;
  5346. }
  5347. case "studyDetailGM":
  5348. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5349. setTimeout(() => {
  5350. U.MD.U.L.login();
  5351. }, 2000);
  5352. } else {
  5353. _formdiv = new U.UF.UI.form(
  5354. "课程详情",
  5355. $$("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 }), {
  5356. "id": "studyDetail",
  5357. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5358. "onresize": function () { }
  5359. }, {
  5360. closecallback: function () { }
  5361. }, { "style": { "height": "36px" } }).form; //创建窗体
  5362. _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); } }
  5363. break;
  5364. }
  5365. case "hanUrl":
  5366. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5367. setTimeout(() => {
  5368. U.MD.U.L.login();
  5369. }, 2000);
  5370. } else {
  5371. _formdiv = new U.UF.UI.form(
  5372. "汉字宫",
  5373. $$("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" }), {
  5374. "id": "hanUrl",
  5375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5376. "onresize": function () { }
  5377. }, {
  5378. closecallback: function () { }
  5379. }, { "style": { "height": "36px" } }).form; //创建窗体
  5380. _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); } }
  5381. break;
  5382. }
  5383. case "index":
  5384. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5385. setTimeout(() => {
  5386. U.MD.U.L.login();
  5387. }, 2000);
  5388. } else {
  5389. _formdiv = new U.UF.UI.form(
  5390. "课程中心",
  5391. $$("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 }), {
  5392. "id": "study",
  5393. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5394. "onresize": function () { }
  5395. }, {
  5396. closecallback: function () { }
  5397. }, { "style": { "height": "36px" } }).form; //创建窗体
  5398. _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); } }
  5399. break;
  5400. }
  5401. case "dataClass":
  5402. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5403. setTimeout(() => {
  5404. U.MD.U.L.login();
  5405. }, 2000);
  5406. } else {
  5407. _formdiv = new U.UF.UI.form(
  5408. "数据报告",
  5409. $$("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 }), {
  5410. "id": "dataClass",
  5411. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5412. "onresize": function () { }
  5413. }, {
  5414. closecallback: function () { }
  5415. }, { "style": { "height": "36px" } }).form; //创建窗体
  5416. _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); } }
  5417. break;
  5418. }
  5419. case "opencCscl":
  5420. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5421. setTimeout(() => {
  5422. U.MD.U.L.login();
  5423. }, 2000);
  5424. } else {
  5425. _formdiv = new U.UF.UI.form(
  5426. "协同建构",
  5427. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5428. "id": "futureClass",
  5429. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5430. "onresize": function () { }
  5431. }, {
  5432. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5433. }, { "style": { "height": "36px" } }).form; //创建窗体
  5434. _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); } }
  5435. break;
  5436. }
  5437. case "openCourseUpdate":
  5438. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5439. setTimeout(() => {
  5440. U.MD.U.L.login();
  5441. }, 2000);
  5442. } else {
  5443. _formdiv = new U.UF.UI.form(
  5444. "课程管理",
  5445. $$("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 }), {
  5446. "id": "openCourseUpdate",
  5447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. break;
  5453. }
  5454. case "openNewCourseUpdate":
  5455. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5456. setTimeout(() => {
  5457. U.MD.U.L.login();
  5458. }, 2000);
  5459. } else {
  5460. _formdiv = new U.UF.UI.form(
  5461. "课程管理",
  5462. $$("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 }), {
  5463. "id": "openCourseUpdate",
  5464. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5465. "onresize": function () { }
  5466. }, {
  5467. closecallback: function () { }
  5468. }, { "style": { "height": "36px" } }).form; //创建窗体
  5469. break;
  5470. }
  5471. case "openCourseEUpdate":
  5472. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5473. setTimeout(() => {
  5474. U.MD.U.L.login();
  5475. }, 2000);
  5476. } else {
  5477. _formdiv = new U.UF.UI.form(
  5478. "课程管理",
  5479. $$("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 }), {
  5480. "id": "openCourseUpdate",
  5481. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5482. "onresize": function () { }
  5483. }, {
  5484. closecallback: function () { }
  5485. }, { "style": { "height": "36px" } }).form; //创建窗体
  5486. break;
  5487. }
  5488. case "openCourseAiUpdate":
  5489. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5490. setTimeout(() => {
  5491. U.MD.U.L.login();
  5492. }, 2000);
  5493. } else {
  5494. _formdiv = new U.UF.UI.form(
  5495. "课程管理",
  5496. $$("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 }), {
  5497. "id": "openCourseUpdate",
  5498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. break;
  5504. }
  5505. case "openCourseAiUpdate2":
  5506. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5507. setTimeout(() => {
  5508. U.MD.U.L.login();
  5509. }, 2000);
  5510. } else {
  5511. _formdiv = new U.UF.UI.form(
  5512. "课程管理",
  5513. $$("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 }), {
  5514. "id": "openCourseUpdate",
  5515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5516. "onresize": function () { }
  5517. }, {
  5518. closecallback: function () { }
  5519. }, { "style": { "height": "36px" } }).form; //创建窗体
  5520. break;
  5521. }
  5522. case "openCourseNewUpdate":
  5523. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5524. setTimeout(() => {
  5525. U.MD.U.L.login();
  5526. }, 2000);
  5527. } else {
  5528. _formdiv = new U.UF.UI.form(
  5529. "课程管理",
  5530. $$("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 }), {
  5531. "id": "openCourseUpdate",
  5532. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5533. "onresize": function () { }
  5534. }, {
  5535. closecallback: function () { }
  5536. }, { "style": { "height": "36px" } }).form; //创建窗体
  5537. break;
  5538. }
  5539. case "inviteLoginSz":
  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": "https://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5543. "id": "loginSz",
  5544. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. break;
  5550. case "loginSz":
  5551. _formdiv = new U.UF.UI.form(
  5552. "教师登录",
  5553. $$("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" }), {
  5554. "id": "loginSz",
  5555. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5556. "onresize": function () { }
  5557. }, {
  5558. closecallback: function () { }
  5559. }, { "style": { "height": "36px" } }).form; //创建窗体
  5560. break;
  5561. case "teacher":
  5562. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5563. setTimeout(() => {
  5564. U.MD.U.L.login();
  5565. }, 2000);
  5566. } else {
  5567. _formdiv = new U.UF.UI.form(
  5568. "教师管理",
  5569. $$("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 }), {
  5570. "id": "teacher",
  5571. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5572. "onresize": function () { }
  5573. }, {
  5574. closecallback: function () { }
  5575. }, { "style": { "height": "36px" } }).form; //创建窗体
  5576. break;
  5577. }
  5578. case "dataBoardSZArea":
  5579. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5580. setTimeout(() => {
  5581. U.MD.U.L.login();
  5582. }, 2000);
  5583. } else {
  5584. _formdiv = new U.UF.UI.form(
  5585. "综合数据看板",
  5586. $$("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 }), {
  5587. "id": "dataBoardSZArea",
  5588. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //创建窗体
  5593. break;
  5594. }
  5595. case "dataBoardSZCity":
  5596. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5597. setTimeout(() => {
  5598. U.MD.U.L.login();
  5599. }, 2000);
  5600. } else {
  5601. _formdiv = new U.UF.UI.form(
  5602. "综合数据看板",
  5603. $$("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 }), {
  5604. "id": "dataBoardSZCity",
  5605. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5606. "onresize": function () { }
  5607. }, {
  5608. closecallback: function () { }
  5609. }, { "style": { "height": "36px" } }).form; //创建窗体
  5610. break;
  5611. }
  5612. case "classroom_observation_board":
  5613. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5614. setTimeout(() => {
  5615. U.MD.U.L.login();
  5616. }, 2000);
  5617. } else {
  5618. _formdiv = new U.UF.UI.form(
  5619. "课堂观察",
  5620. $$("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 }), {
  5621. "id": "classroom_observation_board",
  5622. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5623. "onresize": function () { }
  5624. }, {
  5625. closecallback: function () { }
  5626. }, { "style": { "height": "36px" } }).form; //创建窗体
  5627. break;
  5628. }
  5629. case "classroom_observation_ob_comment":
  5630. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5631. setTimeout(() => {
  5632. U.MD.U.L.login();
  5633. }, 2000);
  5634. } else {
  5635. _formdiv = new U.UF.UI.form(
  5636. "课堂审核",
  5637. $$("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 }), {
  5638. "id": "classroom_observation_ob_comment",
  5639. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5640. "onresize": function () { }
  5641. }, {
  5642. closecallback: function () { }
  5643. }, { "style": { "height": "36px" } }).form; //创建窗体
  5644. break;
  5645. }
  5646. case "gptConfig":
  5647. _formdiv = new U.UF.UI.form(
  5648. data.name ? data.name : "应用中心",
  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": data.url }), {
  5650. "id": "gptConfig" + data.id,
  5651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. break;
  5657. }
  5658. }
  5659. U.MD.D.I.openApplication = function (str, obj, info) {
  5660. obj = obj || {};
  5661. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5662. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5663. _userinfo = US.userInfo, //登录用户信息
  5664. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5665. _oid = obj.organizeid || _userinfo.organizeid,
  5666. _type = US.userInfo.type,
  5667. _org = obj.org || US.userInfo.org,
  5668. _role = US.userInfo.role,
  5669. _classId = US.userInfo.classid,
  5670. _TscreenType = 1
  5671. _screenType = 2,
  5672. _SscreenType = 3;
  5673. let iframeBool = true
  5674. if(U.UF.UI.form.allForm[str]){
  5675. iframeBool = false
  5676. }
  5677. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5678. return;
  5679. }
  5680. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5681. if(opArray.includes(str)){
  5682. let _str = str
  5683. if(str == 'appStore'){
  5684. _str = "cocoFlow"
  5685. }else if(str == "futureClass"){
  5686. _str = "cocoNote"
  5687. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5688. _str = "IntelligentForm"
  5689. }else if(str == "testStudent" || str == "testStudentSies"){
  5690. _str = "TeacherCenter"
  5691. }
  5692. try {
  5693. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5694. } catch (error) {
  5695. console.log(error);
  5696. }
  5697. }
  5698. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5699. switch (str) {
  5700. case "studnetProject": //好友打开
  5701. _formdiv = new U.UF.UI.form(
  5702. "我的项目",
  5703. $$("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 }), {
  5704. "id": "studnetProject",
  5705. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5706. "onresize": function () { }
  5707. }, {
  5708. closecallback: function () { }
  5709. }, { "style": { "height": "36px" } }).form; //创建窗体
  5710. _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); } }
  5711. break;
  5712. case "studentEvaluate": //好友打开
  5713. _formdiv = new U.UF.UI.form(
  5714. "我的评价",
  5715. $$("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 }), {
  5716. "id": "studentEvaluate",
  5717. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5718. "onresize": function () { }
  5719. }, {
  5720. closecallback: function () { }
  5721. }, { "style": { "height": "36px" } }).form; //创建窗体
  5722. _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); } }
  5723. break;
  5724. case "my":
  5725. _formdiv = new U.UF.UI.form(
  5726. "我的资料",
  5727. $$("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 }), {
  5728. "id": "my",
  5729. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5730. "onresize": function () { }
  5731. }, {
  5732. closecallback: function () { }
  5733. }, { "style": { "height": "36px" } }).form; //创建窗体
  5734. _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); } }
  5735. break;
  5736. case "program":
  5737. _formdiv = new U.UF.UI.form(
  5738. "编程平台",
  5739. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5740. "id": "program",
  5741. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5742. "onresize": function () { }
  5743. }, {
  5744. closecallback: function () { }
  5745. }, { "style": { "height": "36px" } }).form; //创建窗体
  5746. _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); } }
  5747. break;
  5748. case "library":
  5749. _formdiv = new U.UF.UI.form(
  5750. "素材库",
  5751. $$("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 }), {
  5752. "id": "library",
  5753. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5754. "onresize": function () { }
  5755. }, {
  5756. closecallback: function () { }
  5757. }, { "style": { "height": "36px" } }).form; //创建窗体
  5758. _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); } }
  5759. break;
  5760. case "whiteboard":
  5761. _formdiv = new U.UF.UI.form(
  5762. "电子白板",
  5763. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5764. "id": "whiteboard",
  5765. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5766. "onresize": function () { }
  5767. }, {
  5768. closecallback: function () { }
  5769. }, { "style": { "height": "36px" } }).form; //创建窗体
  5770. _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); } }
  5771. break;
  5772. case "investigation":
  5773. _formdiv = new U.UF.UI.form(
  5774. "问卷调查",
  5775. $$("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 }), {
  5776. "id": "investigation",
  5777. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5778. "onresize": function () { }
  5779. }, {
  5780. closecallback: function () { }
  5781. }, { "style": { "height": "36px" } }).form; //创建窗体
  5782. _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); } }
  5783. break;
  5784. case "note":
  5785. _formdiv = new U.UF.UI.form(
  5786. "便签分类",
  5787. $$("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 }), {
  5788. "id": "note",
  5789. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5790. "onresize": function () { }
  5791. }, {
  5792. closecallback: function () { }
  5793. }, { "style": { "height": "36px" } }).form; //创建窗体
  5794. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5795. break;
  5796. // case "score":
  5797. // _formdiv = new U.UF.UI.form(
  5798. // "量规评分",
  5799. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5800. // "id": "score",
  5801. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5802. // "onresize": function() {}
  5803. // }, {
  5804. // closecallback: function() {}
  5805. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5806. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5807. // break;
  5808. case "mind":
  5809. _formdiv = new U.UF.UI.form(
  5810. "思维导图",
  5811. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5812. "id": "mind",
  5813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5814. "onresize": function () { }
  5815. }, {
  5816. closecallback: function () { }
  5817. }, { "style": { "height": "36px" } }).form; //创建窗体
  5818. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5819. break;
  5820. case "doc":
  5821. // U.MD.D.I.isRoom();
  5822. _formdiv = new U.UF.UI.form(
  5823. "协同文档",
  5824. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5825. "id": "doc",
  5826. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5827. "onresize": function () { }
  5828. }, {
  5829. closecallback: function () { }
  5830. }, { "style": { "height": "36px" } }).form; //创建窗体
  5831. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5832. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5833. // })
  5834. _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); } }
  5835. break;
  5836. case "studentStudy":
  5837. _formdiv = new U.UF.UI.form(
  5838. "课程中心",
  5839. $$("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
  5840. "id": "studentStudy",
  5841. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5842. "onresize": function () { }
  5843. }, {
  5844. closecallback: function () { }
  5845. }, { "style": { "height": "36px" } }).form; //创建窗体
  5846. _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); } }
  5847. break;
  5848. case "train": //好友打开
  5849. _formdiv = new U.UF.UI.form(
  5850. "训练平台",
  5851. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5852. "id": "train",
  5853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5854. "onresize": function () { }
  5855. }, {
  5856. closecallback: function () { }
  5857. }, { "style": { "height": "36px" } }).form; //创建窗体
  5858. _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); } }
  5859. break;
  5860. case "mindNetwork": //好友打开
  5861. _formdiv = new U.UF.UI.form(
  5862. "思维网格",
  5863. $$("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 }), {
  5864. "id": "mindNetwork",
  5865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5866. "onresize": function () { }
  5867. }, {
  5868. closecallback: function () { }
  5869. }, { "style": { "height": "36px" } }).form; //创建窗体
  5870. _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); } }
  5871. break;
  5872. case "studentClassRoom": //好友打开
  5873. _formdiv = new U.UF.UI.form(
  5874. "实时课堂",
  5875. $$("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 }), {
  5876. "id": "studentClassRoom",
  5877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5878. "onresize": function () { }
  5879. }, {
  5880. closecallback: function () { }
  5881. }, { "style": { "height": "36px" } }).form; //创建窗体
  5882. _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); } }
  5883. setTimeout(() => {
  5884. U.UF.F.windowZooming(_formdiv)
  5885. }, 0);
  5886. break;
  5887. }
  5888. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5889. switch (str) {
  5890. case "studnetProject": //好友打开
  5891. _formdiv = new U.UF.UI.form(
  5892. "我的项目",
  5893. $$("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 }), {
  5894. "id": "studnetProject",
  5895. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5896. "onresize": function () { }
  5897. }, {
  5898. closecallback: function () { }
  5899. }, { "style": { "height": "36px" } }).form; //创建窗体
  5900. _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); } }
  5901. break;
  5902. case "studentEvaluate": //好友打开
  5903. _formdiv = new U.UF.UI.form(
  5904. "我的评价",
  5905. $$("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 }), {
  5906. "id": "studentEvaluate",
  5907. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5908. "onresize": function () { }
  5909. }, {
  5910. closecallback: function () { }
  5911. }, { "style": { "height": "36px" } }).form; //创建窗体
  5912. _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); } }
  5913. break;
  5914. case "my":
  5915. _formdiv = new U.UF.UI.form(
  5916. "我的资料",
  5917. $$("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 }), {
  5918. "id": "my",
  5919. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5920. "onresize": function () { }
  5921. }, {
  5922. closecallback: function () { }
  5923. }, { "style": { "height": "36px" } }).form; //创建窗体
  5924. _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); } }
  5925. break;
  5926. case "program":
  5927. _formdiv = new U.UF.UI.form(
  5928. "编程平台",
  5929. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5930. "id": "program",
  5931. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5932. "onresize": function () { }
  5933. }, {
  5934. closecallback: function () { }
  5935. }, { "style": { "height": "36px" } }).form; //创建窗体
  5936. _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); } }
  5937. break;
  5938. case "library":
  5939. _formdiv = new U.UF.UI.form(
  5940. "素材库",
  5941. $$("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 }), {
  5942. "id": "library",
  5943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5944. "onresize": function () { }
  5945. }, {
  5946. closecallback: function () { }
  5947. }, { "style": { "height": "36px" } }).form; //创建窗体
  5948. _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); } }
  5949. break;
  5950. case "whiteboard":
  5951. _formdiv = new U.UF.UI.form(
  5952. "电子白板",
  5953. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5954. "id": "whiteboard",
  5955. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5956. "onresize": function () { }
  5957. }, {
  5958. closecallback: function () { }
  5959. }, { "style": { "height": "36px" } }).form; //创建窗体
  5960. _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); } }
  5961. break;
  5962. case "investigation":
  5963. _formdiv = new U.UF.UI.form(
  5964. "问卷调查",
  5965. $$("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 }), {
  5966. "id": "investigation",
  5967. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5968. "onresize": function () { }
  5969. }, {
  5970. closecallback: function () { }
  5971. }, { "style": { "height": "36px" } }).form; //创建窗体
  5972. _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); } }
  5973. break;
  5974. case "note":
  5975. _formdiv = new U.UF.UI.form(
  5976. "便签分类",
  5977. $$("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 }), {
  5978. "id": "note",
  5979. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5980. "onresize": function () { }
  5981. }, {
  5982. closecallback: function () { }
  5983. }, { "style": { "height": "36px" } }).form; //创建窗体
  5984. _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); } }
  5985. break;
  5986. // case "score":
  5987. // _formdiv = new U.UF.UI.form(
  5988. // "量规评分",
  5989. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5990. // "id": "score",
  5991. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5992. // "onresize": function() {}
  5993. // }, {
  5994. // closecallback: function() {}
  5995. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5996. // _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); } }
  5997. // break;
  5998. case "mind":
  5999. _formdiv = new U.UF.UI.form(
  6000. "思维导图",
  6001. $$("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"
  6002. "id": "mind",
  6003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6004. "onresize": function () { }
  6005. }, {
  6006. closecallback: function () { }
  6007. }, { "style": { "height": "36px" } }).form; //创建窗体
  6008. _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); } }
  6009. break;
  6010. case "doc":
  6011. // U.MD.D.I.isRoom();
  6012. _formdiv = new U.UF.UI.form(
  6013. "协同文档",
  6014. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6015. "id": "doc",
  6016. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6017. "onresize": function () { }
  6018. }, {
  6019. closecallback: function () { }
  6020. }, { "style": { "height": "36px" } }).form; //创建窗体
  6021. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6022. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6023. })
  6024. _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); } }
  6025. break;
  6026. case "train": //好友打开
  6027. _formdiv = new U.UF.UI.form(
  6028. "训练平台",
  6029. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6030. "id": "train",
  6031. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6032. "onresize": function () { }
  6033. }, {
  6034. closecallback: function () { }
  6035. }, { "style": { "height": "36px" } }).form; //创建窗体
  6036. _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); } }
  6037. break;
  6038. case "studentStudy":
  6039. _formdiv = new U.UF.UI.form(
  6040. "课程中心",
  6041. $$("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
  6042. "id": "studentStudy",
  6043. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6044. "onresize": function () { }
  6045. }, {
  6046. closecallback: function () { }
  6047. }, { "style": { "height": "36px" } }).form; //创建窗体
  6048. _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); } }
  6049. break;
  6050. case "mindNetwork": //好友打开
  6051. _formdiv = new U.UF.UI.form(
  6052. "思维网格",
  6053. $$("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 }), {
  6054. "id": "mindNetwork",
  6055. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6056. "onresize": function () { }
  6057. }, {
  6058. closecallback: function () { }
  6059. }, { "style": { "height": "36px" } }).form; //创建窗体
  6060. _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); } }
  6061. break;
  6062. case "studentClassRoom": //好友打开
  6063. _formdiv = new U.UF.UI.form(
  6064. "实时课堂",
  6065. $$("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 }), {
  6066. "id": "studentClassRoom",
  6067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6068. "onresize": function () { }
  6069. }, {
  6070. closecallback: function () { }
  6071. }, { "style": { "height": "36px" } }).form; //创建窗体
  6072. _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); } }
  6073. setTimeout(() => {
  6074. U.UF.F.windowZooming(_formdiv)
  6075. }, 0);
  6076. break;
  6077. }
  6078. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6079. //选择应用处理
  6080. switch (str) {
  6081. case "project": //好友打开
  6082. _formdiv = new U.UF.UI.form(
  6083. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6084. $$("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 }), {
  6085. "id": "project",
  6086. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6087. "onresize": function () { }
  6088. }, {
  6089. closecallback: function () { }
  6090. }, { "style": { "height": "36px" } }).form; //创建窗体
  6091. _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); } }
  6092. break;
  6093. case "student":
  6094. _formdiv = new U.UF.UI.form(
  6095. "学生管理",
  6096. $$("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 }), {
  6097. "id": "student",
  6098. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6099. "onresize": function () { }
  6100. }, {
  6101. closecallback: function () { }
  6102. }, { "style": { "height": "36px" } }).form; //创建窗体
  6103. _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); } }
  6104. break;
  6105. case "evaluate":
  6106. _formdiv = new U.UF.UI.form(
  6107. "学生评价",
  6108. $$("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 }), {
  6109. "id": "evaluate",
  6110. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6111. "onresize": function () { }
  6112. }, {
  6113. closecallback: function () { }
  6114. }, { "style": { "height": "36px" } }).form; //创建窗体
  6115. _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); } }
  6116. break;
  6117. case "sys":
  6118. _formdiv = new U.UF.UI.form(
  6119. "目标管理",
  6120. $$("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 }), {
  6121. "id": "sys",
  6122. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, { "style": { "height": "36px" } }).form; //创建窗体
  6127. _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); } }
  6128. break;
  6129. case "courseDesign":
  6130. _formdiv = new U.UF.UI.form(
  6131. "项目设计",
  6132. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6133. "id": "courseDesign",
  6134. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6135. "onresize": function () { }
  6136. }, {
  6137. closecallback: function () { }
  6138. }, { "style": { "height": "36px" } }).form; //创建窗体
  6139. _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); } }
  6140. break;
  6141. case "program":
  6142. _formdiv = new U.UF.UI.form(
  6143. "编程平台",
  6144. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6145. "id": "program",
  6146. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6147. "onresize": function () { }
  6148. }, {
  6149. closecallback: function () { }
  6150. }, { "style": { "height": "36px" } }).form; //创建窗体
  6151. _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); } }
  6152. break;
  6153. case "class":
  6154. _formdiv = new U.UF.UI.form(
  6155. "班级管理",
  6156. $$("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 }), {
  6157. "id": "class",
  6158. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6159. "onresize": function () { }
  6160. }, {
  6161. closecallback: function () { }
  6162. }, { "style": { "height": "36px" } }).form; //创建窗体
  6163. _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); } }
  6164. break;
  6165. case "Grade":
  6166. _formdiv = new U.UF.UI.form(
  6167. "年级管理",
  6168. $$("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 }), {
  6169. "id": "Grade",
  6170. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6171. "onresize": function () { }
  6172. }, {
  6173. closecallback: function () { }
  6174. }, { "style": { "height": "36px" } }).form; //创建窗体
  6175. _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); } }
  6176. break;
  6177. case "teacherOffice":
  6178. _formdiv = new U.UF.UI.form(
  6179. "教研室",
  6180. $$("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 }), {
  6181. "id": "teacherOffice",
  6182. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6183. "onresize": function () { }
  6184. }, {
  6185. closecallback: function () { }
  6186. }, { "style": { "height": "36px" } }).form; //创建窗体
  6187. _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); } }
  6188. break;
  6189. case "my":
  6190. _formdiv = new U.UF.UI.form(
  6191. "我的资料",
  6192. $$("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 }), {
  6193. "id": "my",
  6194. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6195. "onresize": function () { }
  6196. }, {
  6197. closecallback: function () { }
  6198. }, { "style": { "height": "36px" } }).form; //创建窗体
  6199. _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); } }
  6200. break;
  6201. case "notice":
  6202. _formdiv = new U.UF.UI.form(
  6203. "通知公告",
  6204. $$("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 }), {
  6205. "id": "notice",
  6206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6207. "onresize": function () { }
  6208. }, {
  6209. closecallback: function () { }
  6210. }, { "style": { "height": "36px" } }).form; //创建窗体
  6211. _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); } }
  6212. break;
  6213. case "library":
  6214. _formdiv = new U.UF.UI.form(
  6215. "素材库",
  6216. $$("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 }), {
  6217. "id": "library",
  6218. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //创建窗体
  6223. _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); } }
  6224. break;
  6225. case "whiteboard":
  6226. _formdiv = new U.UF.UI.form(
  6227. "电子白板",
  6228. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6229. "id": "whiteboard",
  6230. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6231. "onresize": function () { }
  6232. }, {
  6233. closecallback: function () { }
  6234. }, { "style": { "height": "36px" } }).form; //创建窗体
  6235. _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); } }
  6236. break;
  6237. case "investigation":
  6238. _formdiv = new U.UF.UI.form(
  6239. "问卷调查",
  6240. $$("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 }), {
  6241. "id": "investigation",
  6242. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6243. "onresize": function () { }
  6244. }, {
  6245. closecallback: function () { }
  6246. }, { "style": { "height": "36px" } }).form; //创建窗体
  6247. _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); } }
  6248. break;
  6249. case "note":
  6250. _formdiv = new U.UF.UI.form(
  6251. "便签分类",
  6252. $$("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 }), {
  6253. "id": "note",
  6254. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6255. "onresize": function () { }
  6256. }, {
  6257. closecallback: function () { }
  6258. }, { "style": { "height": "36px" } }).form; //创建窗体
  6259. _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); } }
  6260. break;
  6261. // case "score":
  6262. // _formdiv = new U.UF.UI.form(
  6263. // "量规评分",
  6264. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6265. // "id": "score",
  6266. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6267. // "onresize": function() {}
  6268. // }, {
  6269. // closecallback: function() {}
  6270. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6271. // _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); } }
  6272. // break;
  6273. case "mind":
  6274. _formdiv = new U.UF.UI.form(
  6275. "思维导图",
  6276. $$("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"
  6277. "id": "mind",
  6278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6279. "onresize": function () { }
  6280. }, {
  6281. closecallback: function () { }
  6282. }, { "style": { "height": "36px" } }).form; //创建窗体
  6283. _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); } }
  6284. break;
  6285. case "doc":
  6286. // U.MD.D.I.isRoom();
  6287. _formdiv = new U.UF.UI.form(
  6288. "协同文档",
  6289. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6290. "id": "doc",
  6291. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6297. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6298. })
  6299. _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); } }
  6300. break;
  6301. case "study":
  6302. _formdiv = new U.UF.UI.form(
  6303. "课程中心",
  6304. $$("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
  6305. "id": "study",
  6306. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6307. "onresize": function () { }
  6308. }, {
  6309. closecallback: function () { }
  6310. }, { "style": { "height": "36px" } }).form; //创建窗体
  6311. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6312. break;
  6313. case "mindNetwork": //好友打开
  6314. _formdiv = new U.UF.UI.form(
  6315. "思维网格",
  6316. $$("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 }), {
  6317. "id": "mindNetwork",
  6318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //创建窗体
  6323. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6324. break;
  6325. case "train": //好友打开
  6326. _formdiv = new U.UF.UI.form(
  6327. "训练平台",
  6328. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6329. "id": "mindNetwork",
  6330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6331. "onresize": function () { }
  6332. }, {
  6333. closecallback: function () { }
  6334. }, { "style": { "height": "36px" } }).form; //创建窗体
  6335. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6336. break;
  6337. case "teacherClassRoom": //好友打开
  6338. _formdiv = new U.UF.UI.form(
  6339. "实时课堂",
  6340. $$("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 }), {
  6341. "id": "teacherClassRoom",
  6342. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6343. "onresize": function () { }
  6344. }, {
  6345. closecallback: function () { }
  6346. }, { "style": { "height": "36px" } }).form; //创建窗体
  6347. _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); } }
  6348. setTimeout(() => {
  6349. U.UF.F.windowZooming(_formdiv)
  6350. }, 0);
  6351. break;
  6352. }
  6353. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6354. switch (str) {
  6355. case "project": //好友打开
  6356. _formdiv = new U.UF.UI.form(
  6357. "课程管理",
  6358. $$("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 }), {
  6359. "id": "project",
  6360. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, { "style": { "height": "36px" } }).form; //创建窗体
  6365. _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); } }
  6366. break;
  6367. case "evaluate":
  6368. _formdiv = new U.UF.UI.form(
  6369. "学生评价",
  6370. $$("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 }), {
  6371. "id": "evaluate",
  6372. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6373. "onresize": function () { }
  6374. }, {
  6375. closecallback: function () { }
  6376. }, { "style": { "height": "36px" } }).form; //创建窗体
  6377. _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); } }
  6378. break;
  6379. case "notice":
  6380. _formdiv = new U.UF.UI.form(
  6381. "通知公告",
  6382. $$("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 }), {
  6383. "id": "notice",
  6384. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6385. "onresize": function () { }
  6386. }, {
  6387. closecallback: function () { }
  6388. }, { "style": { "height": "36px" } }).form; //创建窗体
  6389. _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); } }
  6390. break;
  6391. case "stuLibrary":
  6392. _formdiv = new U.UF.UI.form(
  6393. "学习资料",
  6394. $$("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 }), {
  6395. "id": "stuLibrary",
  6396. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6397. "onresize": function () { }
  6398. }, {
  6399. closecallback: function () { }
  6400. }, { "style": { "height": "36px" } }).form; //创建窗体
  6401. _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); } }
  6402. break;
  6403. case "program":
  6404. _formdiv = new U.UF.UI.form(
  6405. "编程平台",
  6406. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6407. "id": "program",
  6408. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6409. "onresize": function () { }
  6410. }, {
  6411. closecallback: function () { }
  6412. }, { "style": { "height": "36px" } }).form; //创建窗体
  6413. _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); } }
  6414. break;
  6415. case "whiteboard":
  6416. _formdiv = new U.UF.UI.form(
  6417. "电子白板",
  6418. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6419. "id": "whiteboard",
  6420. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6421. "onresize": function () { }
  6422. }, {
  6423. closecallback: function () { }
  6424. }, { "style": { "height": "36px" } }).form; //创建窗体
  6425. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6426. break;
  6427. case "investigation":
  6428. _formdiv = new U.UF.UI.form(
  6429. "问卷调查",
  6430. $$("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 }), {
  6431. "id": "investigation",
  6432. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6433. "onresize": function () { }
  6434. }, {
  6435. closecallback: function () { }
  6436. }, { "style": { "height": "36px" } }).form; //创建窗体
  6437. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6438. break;
  6439. case "mind":
  6440. _formdiv = new U.UF.UI.form(
  6441. "思维导图",
  6442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6443. "id": "mind",
  6444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6445. "onresize": function () { }
  6446. }, {
  6447. closecallback: function () { }
  6448. }, { "style": { "height": "36px" } }).form; //创建窗体
  6449. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6450. break;
  6451. case "doc":
  6452. // U.MD.D.I.isRoom();
  6453. _formdiv = new U.UF.UI.form(
  6454. "协同文档",
  6455. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6456. "id": "doc",
  6457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6458. "onresize": function () { }
  6459. }, {
  6460. closecallback: function () { }
  6461. }, { "style": { "height": "36px" } }).form; //创建窗体
  6462. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6463. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6464. })
  6465. _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); } }
  6466. break;
  6467. case "study":
  6468. _formdiv = new U.UF.UI.form(
  6469. "课程中心",
  6470. $$("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
  6471. "id": "study",
  6472. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, { "style": { "height": "36px" } }).form; //创建窗体
  6477. _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); } }
  6478. break;
  6479. case "mindNetwork": //好友打开
  6480. _formdiv = new U.UF.UI.form(
  6481. "思维网格",
  6482. $$("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 }), {
  6483. "id": "mindNetwork",
  6484. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6485. "onresize": function () { }
  6486. }, {
  6487. closecallback: function () { }
  6488. }, { "style": { "height": "36px" } }).form; //创建窗体
  6489. _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); } }
  6490. break;
  6491. case "train": //好友打开
  6492. _formdiv = new U.UF.UI.form(
  6493. "训练平台",
  6494. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6495. "id": "train",
  6496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, { "style": { "height": "36px" } }).form; //创建窗体
  6501. _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); } }
  6502. break;
  6503. case "sys":
  6504. _formdiv = new U.UF.UI.form(
  6505. "目标管理",
  6506. $$("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 }), {
  6507. "id": "sys",
  6508. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //创建窗体
  6513. _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); } }
  6514. break;
  6515. case "courseDesign":
  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": "/course-design-vue" }), {
  6519. "id": "courseDesign",
  6520. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6521. "onresize": function () { }
  6522. }, {
  6523. closecallback: function () { }
  6524. }, { "style": { "height": "36px" } }).form; //创建窗体
  6525. _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); } }
  6526. break;
  6527. }
  6528. } else if (!_type) {
  6529. switch (str) {
  6530. case "my":
  6531. _formdiv = new U.UF.UI.form(
  6532. "我的资料",
  6533. $$("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 }), {
  6534. "id": "my",
  6535. "style": { "width": "42%", "height": "90%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6541. break;
  6542. }
  6543. }
  6544. switch (str) {
  6545. // AIprogram2 AI体验 aihub.cocorobo.cn
  6546. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6547. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6548. case "formulaEdi": //公式编辑
  6549. _formdiv = new U.UF.UI.form(
  6550. "公式编辑",
  6551. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6552. "id": "formulaEdi",
  6553. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6554. "onresize": function () { }
  6555. }, {
  6556. closecallback: function () { }
  6557. }, { "style": { "height": "36px" } }).form; //创建窗体
  6558. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6559. break;
  6560. case "molStr": //分子结构
  6561. _formdiv = new U.UF.UI.form(
  6562. "分子结构",
  6563. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6564. "id": "molStr",
  6565. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6566. "onresize": function () { }
  6567. }, {
  6568. closecallback: function () { }
  6569. }, { "style": { "height": "36px" } }).form; //创建窗体
  6570. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6571. break;
  6572. case "timeAxis": //时间轴
  6573. _formdiv = new U.UF.UI.form(
  6574. "时间轴",
  6575. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6576. "id": "timeAxis",
  6577. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6578. "onresize": function () { }
  6579. }, {
  6580. closecallback: function () { }
  6581. }, { "style": { "height": "36px" } }).form; //创建窗体
  6582. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6583. break;
  6584. case "AIprogram2": //AI体验
  6585. _formdiv = new U.UF.UI.form(
  6586. "AI体验",
  6587. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6588. "id": "AIprogram2",
  6589. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6590. "onresize": function () { }
  6591. }, {
  6592. closecallback: function () { }
  6593. }, { "style": { "height": "36px" } }).form; //创建窗体
  6594. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6595. break;
  6596. case "Pythonprogram": //python编程
  6597. _formdiv = new U.UF.UI.form(
  6598. "Python编程",
  6599. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6600. "id": "Pythonprogram",
  6601. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6602. "onresize": function () { }
  6603. }, {
  6604. closecallback: function () { }
  6605. }, { "style": { "height": "36px" } }).form; //创建窗体
  6606. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6607. break;
  6608. case "AIprogram": //ai编程
  6609. _formdiv = new U.UF.UI.form(
  6610. "AI编程平台",
  6611. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6612. "id": "AIprogram",
  6613. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6614. "onresize": function () { }
  6615. }, {
  6616. closecallback: function () { }
  6617. }, { "style": { "height": "36px" } }).form; //创建窗体
  6618. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6619. break;
  6620. case "CocoPi": //CocoPi
  6621. _formdiv = new U.UF.UI.form(
  6622. "CocoPi",
  6623. $$("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" }), {
  6624. "id": "CocoPi",
  6625. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6626. "onresize": function () { }
  6627. }, {
  6628. closecallback: function () { }
  6629. }, { "style": { "height": "36px" } }).form; //创建窗体
  6630. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6631. break;
  6632. case "Wood": //Wood
  6633. _formdiv = new U.UF.UI.form(
  6634. "海龟编程",
  6635. $$("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/" }), {
  6636. "id": "Wood",
  6637. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6638. "onresize": function () { }
  6639. }, {
  6640. closecallback: function () { }
  6641. }, { "style": { "height": "36px" } }).form; //创建窗体
  6642. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6643. break;
  6644. case "car": //模拟驾驶
  6645. _formdiv = new U.UF.UI.form(
  6646. "模拟驾驶",
  6647. $$("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/" }), {
  6648. "id": "car",
  6649. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6650. "onresize": function () { }
  6651. }, {
  6652. closecallback: function () { }
  6653. }, { "style": { "height": "36px" } }).form; //创建窗体
  6654. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6655. break;
  6656. case "lineSearch": //路径搜索
  6657. _formdiv = new U.UF.UI.form(
  6658. "路径搜索",
  6659. $$("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/" }), {
  6660. "id": "lineSearch",
  6661. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6662. "onresize": function () { }
  6663. }, {
  6664. closecallback: function () { }
  6665. }, { "style": { "height": "36px" } }).form; //创建窗体
  6666. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6667. break;
  6668. case "deepLearning": //深度学习
  6669. _formdiv = new U.UF.UI.form(
  6670. "深度学习",
  6671. $$("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/#" }), {
  6672. "id": "deepLearning",
  6673. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6674. "onresize": function () { }
  6675. }, {
  6676. closecallback: function () { }
  6677. }, { "style": { "height": "36px" } }).form; //创建窗体
  6678. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6679. break;
  6680. case "allHistory": //深度学习
  6681. _formdiv = new U.UF.UI.form(
  6682. "全历史",
  6683. $$("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/" }), {
  6684. "id": "allHistory",
  6685. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6686. "onresize": function () { }
  6687. }, {
  6688. closecallback: function () { }
  6689. }, { "style": { "height": "36px" } }).form; //创建窗体
  6690. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6691. break;
  6692. case "chatPDF": //ai编程
  6693. _formdiv = new U.UF.UI.form(
  6694. "chatPDF",
  6695. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6696. "id": "chatPDF",
  6697. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6698. "onresize": function () { }
  6699. }, {
  6700. closecallback: function () { }
  6701. }, { "style": { "height": "36px" } }).form; //创建窗体
  6702. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6703. break;
  6704. case "resources": //国家教育
  6705. _formdiv = new U.UF.UI.form(
  6706. "国家教育",
  6707. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6708. "id": "resources",
  6709. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6710. "onresize": function () { }
  6711. }, {
  6712. closecallback: function () { }
  6713. }, { "style": { "height": "36px" } }).form; //创建窗体
  6714. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6715. break;
  6716. case "codeEdit": //源码编辑
  6717. _formdiv = new U.UF.UI.form(
  6718. "源码编辑",
  6719. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6720. "id": "codeEdit",
  6721. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6722. "onresize": function () { }
  6723. }, {
  6724. closecallback: function () { }
  6725. }, { "style": { "height": "36px" } }).form; //创建窗体
  6726. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6727. break; //
  6728. case "MindMap": //MindMap
  6729. _formdiv = new U.UF.UI.form(
  6730. "MindMap",
  6731. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6732. "id": "MindMap",
  6733. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6734. "onresize": function () { }
  6735. }, {
  6736. closecallback: function () { }
  6737. }, { "style": { "height": "36px" } }).form; //创建窗体
  6738. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6739. break;
  6740. case "netWorkPanel": //netWorkPanel
  6741. _formdiv = new U.UF.UI.form(
  6742. "netWorkPanel",
  6743. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6744. "id": "netWorkPanel",
  6745. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6746. "onresize": function () { }
  6747. }, {
  6748. closecallback: function () { }
  6749. }, { "style": { "height": "36px" } }).form; //创建窗体
  6750. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6751. break;
  6752. case "GeoGebra": //GeoGebra
  6753. _formdiv = new U.UF.UI.form(
  6754. "GeoGebra",
  6755. $$("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" }), {
  6756. "id": "GeoGebra",
  6757. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6758. "onresize": function () { }
  6759. }, {
  6760. closecallback: function () { }
  6761. }, { "style": { "height": "36px" } }).form; //创建窗体
  6762. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6763. break;
  6764. case "translation": //翻译
  6765. _formdiv = new U.UF.UI.form(
  6766. "翻译",
  6767. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6768. "id": "translation",
  6769. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6770. "onresize": function () { }
  6771. }, {
  6772. closecallback: function () { }
  6773. }, { "style": { "height": "36px" } }).form; //创建窗体
  6774. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6775. break;
  6776. case "mohe": //魔盒
  6777. _formdiv = new U.UF.UI.form(
  6778. "魔盒识字",
  6779. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6780. "id": "mohe",
  6781. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6782. "onresize": function () { }
  6783. }, {
  6784. closecallback: function () { }
  6785. }, { "style": { "height": "36px" } }).form; //创建窗体
  6786. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6787. break;
  6788. case "24game": //24点
  6789. _formdiv = new U.UF.UI.form(
  6790. "24点",
  6791. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6792. "id": "24game",
  6793. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6794. "onresize": function () { }
  6795. }, {
  6796. closecallback: function () { }
  6797. }, { "style": { "height": "36px" } }).form; //创建窗体
  6798. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6799. break;
  6800. case "case":
  6801. _formdiv = new U.UF.UI.form(
  6802. "课程进展",
  6803. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6804. "id": "case",
  6805. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6806. "onresize": function () { }
  6807. }, {
  6808. closecallback: function () { }
  6809. }, { "style": { "height": "36px" } }).form; //创建窗体
  6810. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6811. break;
  6812. case "snf":
  6813. _formdiv = new U.UF.UI.form(
  6814. "赛诺梵",
  6815. $$("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" }), {
  6816. "id": "snf",
  6817. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6818. "onresize": function () { }
  6819. }, {
  6820. closecallback: function () { }
  6821. }, { "style": { "height": "36px" } }).form; //创建窗体
  6822. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6823. break;
  6824. case "hanFamily":
  6825. _formdiv = new U.UF.UI.form(
  6826. "汉字家族",
  6827. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6828. "id": "hanFamily",
  6829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6830. "onresize": function () { }
  6831. }, {
  6832. closecallback: function () { }
  6833. }, { "style": { "height": "36px" } }).form; //创建窗体
  6834. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6835. break;
  6836. case "hanClassics":
  6837. _formdiv = new U.UF.UI.form(
  6838. "国学经典",
  6839. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6840. "id": "hanClassics",
  6841. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6842. "onresize": function () { }
  6843. }, {
  6844. closecallback: function () { }
  6845. }, { "style": { "height": "36px" } }).form; //创建窗体
  6846. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6847. break;
  6848. case "hanTraining":
  6849. _formdiv = new U.UF.UI.form(
  6850. "笔画训练",
  6851. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6852. "id": "hanTraining",
  6853. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6854. "onresize": function () { }
  6855. }, {
  6856. closecallback: function () { }
  6857. }, { "style": { "height": "36px" } }).form; //创建窗体
  6858. _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); } }
  6859. break;
  6860. case "hanClass":
  6861. _formdiv = new U.UF.UI.form(
  6862. "书法课堂",
  6863. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6864. "id": "hanClass",
  6865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6866. "onresize": function () { }
  6867. }, {
  6868. closecallback: function () { }
  6869. }, { "style": { "height": "36px" } }).form; //创建窗体
  6870. _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); } }
  6871. break;
  6872. case "han":
  6873. _formdiv = new U.UF.UI.form(
  6874. "汉字宫",
  6875. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6876. "id": "han",
  6877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6878. "onresize": function () { }
  6879. }, {
  6880. closecallback: function () { }
  6881. }, { "style": { "height": "36px" } }).form; //创建窗体
  6882. _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); } }
  6883. break;
  6884. case "projectGM": //课程管理
  6885. _formdiv = new U.UF.UI.form(
  6886. "课程管理",
  6887. $$("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 }), {
  6888. "id": "projectGM",
  6889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6890. "onresize": function () { }
  6891. }, {
  6892. closecallback: function () { }
  6893. }, { "style": { "height": "36px" } }).form; //创建窗体
  6894. _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); } }
  6895. break;
  6896. case "studyGM": //课程中心
  6897. _formdiv = new U.UF.UI.form(
  6898. "课程中心",
  6899. $$("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
  6900. "id": "study",
  6901. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6902. "onresize": function () { }
  6903. }, {
  6904. closecallback: function () { }
  6905. }, { "style": { "height": "36px" } }).form; //创建窗体
  6906. _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); } }
  6907. break;
  6908. // studentGM
  6909. case "studentGM": //学生管理
  6910. _formdiv = new U.UF.UI.form(
  6911. "学生管理",
  6912. $$("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 }), {
  6913. "id": "studentGM",
  6914. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6915. "onresize": function () { }
  6916. }, {
  6917. closecallback: function () { }
  6918. }, { "style": { "height": "36px" } }).form; //创建窗体
  6919. _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); } }
  6920. break;
  6921. case "evaluateGM": //学生评价
  6922. _formdiv = new U.UF.UI.form(
  6923. "学生评价",
  6924. $$("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 }), {
  6925. "id": "evaluateGM",
  6926. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6927. "onresize": function () { }
  6928. }, {
  6929. closecallback: function () { }
  6930. }, { "style": { "height": "36px" } }).form; //创建窗体
  6931. _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); } }
  6932. break;
  6933. // classGM
  6934. case "classGM": //班级管理
  6935. _formdiv = new U.UF.UI.form(
  6936. "班级管理",
  6937. $$("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 }), {
  6938. "id": "classGM",
  6939. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6940. "onresize": function () { }
  6941. }, {
  6942. closecallback: function () { }
  6943. }, { "style": { "height": "36px" } }).form; //创建窗体
  6944. _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); } }
  6945. break;
  6946. // dataGM
  6947. case "dataGM":
  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/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6951. "id": "dataGM",
  6952. "style": { "width": "42%", "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/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6958. break;
  6959. // caseGM
  6960. case "caseGM": //课程进展
  6961. _formdiv = new U.UF.UI.form(
  6962. "课程进展",
  6963. $$("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 }), {
  6964. "id": "caseGM",
  6965. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6966. "onresize": function () { }
  6967. }, {
  6968. closecallback: function () { }
  6969. }, { "style": { "height": "36px" } }).form; //创建窗体
  6970. _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); } }
  6971. break;
  6972. // meterialGM
  6973. case "meterialGM": //素材库
  6974. _formdiv = new U.UF.UI.form(
  6975. "素材库",
  6976. $$("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 }), {
  6977. "id": "meterialGM",
  6978. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6979. "onresize": function () { }
  6980. }, {
  6981. closecallback: function () { }
  6982. }, { "style": { "height": "36px" } }).form; //创建窗体
  6983. _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); } }
  6984. break;
  6985. // evaluateSGM
  6986. case "evaluateSGM": //我的评价
  6987. _formdiv = new U.UF.UI.form(
  6988. "我的评价",
  6989. $$("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 }), {
  6990. "id": "evaluateSGM",
  6991. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6992. "onresize": function () { }
  6993. }, {
  6994. closecallback: function () { }
  6995. }, { "style": { "height": "36px" } }).form; //创建窗体
  6996. _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); } }
  6997. break;
  6998. case "jupyter": //jupyter
  6999. _formdiv = new U.UF.UI.form(
  7000. "jupyter",
  7001. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7002. "id": "jupyter",
  7003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7004. "onresize": function () { }
  7005. }, {
  7006. closecallback: function () { }
  7007. }, { "style": { "height": "36px" } }).form; //创建窗体
  7008. _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); } }
  7009. break;
  7010. case "number": //数字实验室
  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": "https://cocorobo.cn/cloud/iot/events" }), {
  7014. "id": "number",
  7015. "style": { "width": "90%", "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/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7021. break;
  7022. case "studentCourse": //项目管理 学生
  7023. _formdiv = new U.UF.UI.form(
  7024. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7025. $$("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 }), {
  7026. "id": "studentCourse",
  7027. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7028. "onresize": function () { }
  7029. }, {
  7030. closecallback: function () { }
  7031. }, { "style": { "height": "36px" } }).form; //创建窗体
  7032. _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); } }
  7033. break;
  7034. case "studentCourseS": //项目管理 老师
  7035. _formdiv = new U.UF.UI.form(
  7036. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7037. $$("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 }), {
  7038. "id": "studentCourseS",
  7039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7040. "onresize": function () { }
  7041. }, {
  7042. closecallback: function () { }
  7043. }, { "style": { "height": "36px" } }).form; //创建窗体
  7044. _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); } }
  7045. break;
  7046. case "studentIndex": //项目中心
  7047. _formdiv = new U.UF.UI.form(
  7048. "项目中心",
  7049. $$("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 }), {
  7050. "id": "studentIndex",
  7051. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7052. "onresize": function () { }
  7053. }, {
  7054. closecallback: function () { }
  7055. }, { "style": { "height": "36px" } }).form; //创建窗体
  7056. _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); } }
  7057. break;
  7058. case "CaseDesignS":
  7059. _formdiv = new U.UF.UI.form(
  7060. "项目进展",
  7061. $$("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 }), {
  7062. "id": "case",
  7063. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7064. "onresize": function () { }
  7065. }, {
  7066. closecallback: function () { }
  7067. }, { "style": { "height": "36px" } }).form; //创建窗体
  7068. _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); } }
  7069. break;
  7070. case "tcStudent": //腾讯学生管理
  7071. _formdiv = new U.UF.UI.form(
  7072. "学生管理",
  7073. $$("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 }), {
  7074. "id": "tcStudent",
  7075. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7076. "onresize": function () { }
  7077. }, {
  7078. closecallback: function () { }
  7079. }, { "style": { "height": "36px" } }).form; //创建窗体
  7080. _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); } }
  7081. break;
  7082. case "tcSchool": //腾讯学校管理
  7083. _formdiv = new U.UF.UI.form(
  7084. "学校管理",
  7085. $$("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 }), {
  7086. "id": "tcSchool",
  7087. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7088. "onresize": function () { }
  7089. }, {
  7090. closecallback: function () { }
  7091. }, { "style": { "height": "36px" } }).form; //创建窗体
  7092. _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); } }
  7093. break;
  7094. case "tcTeacher": //腾讯学校管理
  7095. _formdiv = new U.UF.UI.form(
  7096. "教师管理",
  7097. $$("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 }), {
  7098. "id": "tcTeacher",
  7099. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7100. "onresize": function () { }
  7101. }, {
  7102. closecallback: function () { }
  7103. }, { "style": { "height": "36px" } }).form; //创建窗体
  7104. _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); } }
  7105. break;
  7106. case "teacher":
  7107. _formdiv = new U.UF.UI.form(
  7108. "教师管理",
  7109. $$("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 }), {
  7110. "id": "teacher",
  7111. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7112. "onresize": function () { }
  7113. }, {
  7114. closecallback: function () { }
  7115. }, { "style": { "height": "36px" } }).form; //创建窗体
  7116. _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); } }
  7117. break;
  7118. case "tcData": //腾讯我的资料
  7119. _formdiv = new U.UF.UI.form(
  7120. "我的资料",
  7121. $$("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 }), {
  7122. "id": "tcData",
  7123. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7124. "onresize": function () { }
  7125. }, {
  7126. closecallback: function () { }
  7127. }, { "style": { "height": "36px" } }).form; //创建窗体
  7128. _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); } }
  7129. break;
  7130. case "tcNotice": //腾讯消息通知
  7131. _formdiv = new U.UF.UI.form(
  7132. "消息通知",
  7133. $$("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 }), {
  7134. "id": "tcNotice",
  7135. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7136. "onresize": function () { }
  7137. }, {
  7138. closecallback: function () { }
  7139. }, { "style": { "height": "36px" } }).form; //创建窗体
  7140. _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); } }
  7141. break;
  7142. case "myReport": //好友打开
  7143. _formdiv = new U.UF.UI.form(
  7144. "我的评价",
  7145. $$("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 }), {
  7146. "id": "myReport",
  7147. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7148. "onresize": function () { }
  7149. }, {
  7150. closecallback: function () { }
  7151. }, { "style": { "height": "36px" } }).form; //创建窗体
  7152. _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); } }
  7153. break;
  7154. case "learnAna": //好友打开
  7155. _formdiv = new U.UF.UI.form(
  7156. "学习分析",
  7157. $$("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 }), {
  7158. "id": "learnAna",
  7159. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7160. "onresize": function () { }
  7161. }, {
  7162. closecallback: function () { }
  7163. }, { "style": { "height": "36px" } }).form; //创建窗体
  7164. _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); } }
  7165. break;
  7166. case "AIChat": //AI共创
  7167. _formdiv = new U.UF.UI.form(
  7168. "AI共创",
  7169. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7170. "id": "AIChat",
  7171. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7172. "onresize": function () { }
  7173. }, {
  7174. istop: true,
  7175. closecallback: function () { $("#aichat_icon").remove(); },
  7176. narrowcallback: function () {
  7177. if (!$("#aichat_icon")[0]) {
  7178. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7179. }
  7180. },
  7181. }, { "style": { "height": "36px" } }).form; //创建窗体
  7182. _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); } }
  7183. break;
  7184. case "ainew": //AI共创
  7185. _formdiv = new U.UF.UI.form(
  7186. "AI协同",
  7187. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7188. "id": "ainew",
  7189. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7190. "onresize": function () { }
  7191. }, {
  7192. closecallback: function () { }
  7193. }, { "style": { "height": "36px" } }).form; //创建窗体
  7194. _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); } }
  7195. break;
  7196. case "gpt4": //gpt4
  7197. _formdiv = new U.UF.UI.form(
  7198. "AI助手",
  7199. $$("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 }), {
  7200. "id": "gpt4",
  7201. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7202. "onresize": function () { }
  7203. }, {
  7204. closecallback: function () { }
  7205. }, { "style": { "height": "36px" } }).form; //创建窗体
  7206. _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); } }
  7207. break;
  7208. case "aigpt": //gpt4
  7209. _formdiv = new U.UF.UI.form(
  7210. "AI助手+",
  7211. $$("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 }), {
  7212. "id": "aigpt",
  7213. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7214. "onresize": function () { }
  7215. }, {
  7216. closecallback: function () {
  7217. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7218. }
  7219. }, { "style": { "height": "36px" } }).form; //创建窗体
  7220. _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); } }
  7221. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7222. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7223. })
  7224. break;
  7225. case "aiKnowledge": //aiKnowledge
  7226. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7227. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7228. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7229. }
  7230. _formdiv = new U.UF.UI.form(
  7231. "知识建构",
  7232. $$("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 }), {
  7233. "id": "aiKnowledge",
  7234. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7235. "onresize": function () { }
  7236. }, {
  7237. closecallback: function () { }
  7238. }, { "style": { "height": "36px" } }).form; //创建窗体
  7239. _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); } }
  7240. break;
  7241. case "futureClass": //AI共创
  7242. _formdiv = new U.UF.UI.form(
  7243. "协同建构",
  7244. $$("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
  7245. "id": "synergyCourse",
  7246. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7247. "onresize": function () { }
  7248. }, {
  7249. closecallback: function () {
  7250. $("iframe", _formdiv)[0].contentWindow.loginout();
  7251. }
  7252. }, { "style": { "height": "36px" } }).form; //创建窗体
  7253. _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); } }
  7254. break;
  7255. case "aiagent": //ai agent
  7256. _formdiv = new U.UF.UI.form(
  7257. "AI Agent",
  7258. $$("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" }), {
  7259. "id": "AIAgent",
  7260. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7261. "onresize": function () { }
  7262. }, {
  7263. closecallback: function () { }
  7264. }, { "style": { "height": "36px" } }).form; //创建窗体
  7265. _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); } }
  7266. break;
  7267. case "dataBoard": //数据看板
  7268. _formdiv = new U.UF.UI.form(
  7269. "数据看板",
  7270. $$("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 }), {
  7271. "id": "dataBoard",
  7272. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7273. "onresize": function () { }
  7274. }, {
  7275. closecallback: function () { }
  7276. }, { "style": { "height": "36px" } }).form; //创建窗体
  7277. _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); } }
  7278. break;
  7279. case "dataBoardSies": //数据融合
  7280. _formdiv = new U.UF.UI.form(
  7281. "数据融合",
  7282. $$("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 }), {
  7283. "id": "dataBoardSies",
  7284. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7285. "onresize": function () { }
  7286. }, {
  7287. closecallback: function () { }
  7288. }, { "style": { "height": "36px" } }).form; //创建窗体
  7289. _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); } }
  7290. break;
  7291. case "dataBoardNew": //数据看板
  7292. _formdiv = new U.UF.UI.form(
  7293. "综合看板",
  7294. $$("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 }), {
  7295. "id": "dataBoardNew",
  7296. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7297. "onresize": function () { }
  7298. }, {
  7299. closecallback: function () { }
  7300. }, { "style": { "height": "36px" } }).form; //创建窗体
  7301. _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); } }
  7302. break;
  7303. case "dataBoardTest": //数据看板
  7304. _formdiv = new U.UF.UI.form(
  7305. "评测看板",
  7306. $$("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 }), {
  7307. "id": "dataBoardTest",
  7308. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7309. "onresize": function () { }
  7310. }, {
  7311. closecallback: function () { }
  7312. }, { "style": { "height": "36px" } }).form; //创建窗体
  7313. _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); } }
  7314. break;
  7315. case "AIAnalyse": //AI共创
  7316. _formdiv = new U.UF.UI.form(
  7317. "AI分析",
  7318. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7319. "id": "AIAnalyse",
  7320. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7321. "onresize": function () { }
  7322. }, {
  7323. closecallback: function () { }
  7324. }, { "style": { "height": "36px" } }).form; //创建窗体
  7325. _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); } }
  7326. break;
  7327. case "studioCourse": //AI共创
  7328. _formdiv = new U.UF.UI.form(
  7329. "工作管理",
  7330. $$("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 }), {
  7331. "id": "studioCourse",
  7332. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7333. "onresize": function () { }
  7334. }, {
  7335. closecallback: function () { }
  7336. }, { "style": { "height": "36px" } }).form; //创建窗体
  7337. _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); } }
  7338. break;
  7339. case "studioIndex": //AI共创
  7340. _formdiv = new U.UF.UI.form(
  7341. "工作中心",
  7342. $$("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 }), {
  7343. "id": "studioIndex",
  7344. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7345. "onresize": function () { }
  7346. }, {
  7347. closecallback: function () { }
  7348. }, { "style": { "height": "36px" } }).form; //创建窗体
  7349. _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); } }
  7350. break;
  7351. case "source":
  7352. _formdiv = new U.UF.UI.form(
  7353. "教学资源",
  7354. $$("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 }), {
  7355. "id": "source",
  7356. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7357. "onresize": function () { }
  7358. }, {
  7359. closecallback: function () { }
  7360. }, { "style": { "height": "36px" } }).form; //创建窗体
  7361. _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); } }
  7362. break;
  7363. case "testTeacher":
  7364. _formdiv = new U.UF.UI.form(
  7365. "智能表单",
  7366. $$("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 }), {
  7367. "id": "testTeacher",
  7368. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7369. "onresize": function () { }
  7370. }, {
  7371. closecallback: function () { }
  7372. }, { "style": { "height": "36px" } }).form; //创建窗体
  7373. _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); } }
  7374. break;
  7375. case "testStudent":
  7376. _formdiv = new U.UF.UI.form(
  7377. "教师中心",
  7378. $$("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 }), {
  7379. "id": "testStudent",
  7380. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7381. "onresize": function () { }
  7382. }, {
  7383. closecallback: function () { }
  7384. }, { "style": { "height": "36px" } }).form; //创建窗体
  7385. _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); } }
  7386. break;
  7387. case "testTeacherSies":
  7388. _formdiv = new U.UF.UI.form(
  7389. "教师管理",
  7390. $$("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 }), {
  7391. "id": "testTeacherSies",
  7392. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7393. "onresize": function () { }
  7394. }, {
  7395. closecallback: function () { }
  7396. }, { "style": { "height": "36px" } }).form; //创建窗体
  7397. _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); } }
  7398. break;
  7399. case "testStudentSies":
  7400. _formdiv = new U.UF.UI.form(
  7401. "教师中心",
  7402. $$("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 }), {
  7403. "id": "testStudentSies",
  7404. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7405. "onresize": function () { }
  7406. }, {
  7407. closecallback: function () { }
  7408. }, { "style": { "height": "36px" } }).form; //创建窗体
  7409. _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); } }
  7410. break;
  7411. case "ytpbl": //消息通知
  7412. _formdiv = new U.UF.UI.form(
  7413. "案例征集",
  7414. $$("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 }), {
  7415. "id": "ytpbl",
  7416. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7417. "onresize": function () { }
  7418. }, {
  7419. closecallback: function () { }
  7420. }, { "style": { "height": "36px" } }).form; //创建窗体
  7421. _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); } }
  7422. // 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");
  7423. break;
  7424. case "aiCourseResource": //人工智能窗体
  7425. _formdiv = new U.UF.UI.form(
  7426. false,
  7427. $$("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 }), {
  7428. "id": "aiCourseResource",
  7429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7430. "onresize": function () { },
  7431. "isdrag": false,
  7432. }, {
  7433. closecallback: function () { }
  7434. }, { "style": { "height": "36px" } }).form; //创建窗体
  7435. _taskbar = ''
  7436. break;
  7437. case "szdjgCocooroboX": //图形化编程
  7438. _formdiv = new U.UF.UI.form(
  7439. "图形化编程",
  7440. $$("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" }), {
  7441. "id": "szdjgCocooroboX",
  7442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7443. "onresize": function () { }
  7444. }, {
  7445. closecallback: function () { }
  7446. }, { "style": { "height": "36px" } }).form; //创建窗体
  7447. _taskbar = ''
  7448. break;
  7449. case "szdjgPython": //python编程
  7450. _formdiv = new U.UF.UI.form(
  7451. "Python编程",
  7452. $$("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" }), {
  7453. "id": "szdjgPython",
  7454. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7455. "onresize": function () { }
  7456. }, {
  7457. closecallback: function () { }
  7458. }, { "style": { "height": "36px" } }).form; //创建窗体
  7459. _taskbar = ''
  7460. break;
  7461. case "Record":
  7462. _formdiv = new U.UF.UI.form(
  7463. "观察记录",
  7464. $$("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 }), {
  7465. "id": "Record",
  7466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7467. "onresize": function () { }
  7468. }, {
  7469. closecallback: function () { }
  7470. }, { "style": { "height": "36px" } }).form; //创建窗体
  7471. _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); } }
  7472. break;
  7473. case "aigptCourse":
  7474. _formdiv = new U.UF.UI.form(
  7475. "AI智能体",
  7476. $$("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' }), {
  7477. "id": "aigptCourse",
  7478. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7479. "onresize": function () { }
  7480. }, {
  7481. closecallback: function () { }
  7482. }, { "style": { "height": "36px" } }).form; //创建窗体
  7483. _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); } }
  7484. break;
  7485. case "classroomObservation":
  7486. _formdiv = new U.UF.UI.form(
  7487. "课堂观察",
  7488. $$("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 }), {
  7489. "id": "classroomObservation",
  7490. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7491. "onresize": function () { }
  7492. }, {
  7493. closecallback: function () { }
  7494. }, { "style": { "height": "36px" } }).form; //创建窗体
  7495. _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); } }
  7496. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7497. break;
  7498. case "pblCourse":
  7499. _formdiv = new U.UF.UI.form(
  7500. "学生PBL",
  7501. $$("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 }), {
  7502. "id": "pblCourse",
  7503. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7504. "onresize": function () { }
  7505. }, {
  7506. closecallback: function () { }
  7507. }, { "style": { "height": "36px" } }).form; //创建窗体
  7508. _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); } }
  7509. break;
  7510. case "appStore":
  7511. U.MD.D.addOp('','cocoflowOpen','')
  7512. _formdiv = new U.UF.UI.form(
  7513. "CocoFlow",
  7514. $$("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 }), {
  7515. "id": "appStore",
  7516. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7517. "onresize": function () { }
  7518. }, {
  7519. closecallback: function () { }
  7520. }, { "style": { "height": "36px" } }).form; //创建窗体
  7521. _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); } }
  7522. break;
  7523. case "sassPlatform":
  7524. _formdiv = new U.UF.UI.form(
  7525. "Sass通用后台管理",
  7526. $$("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 }), {
  7527. "id": "sassPlatform",
  7528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7529. "onresize": function () { }
  7530. }, {
  7531. closecallback: function () { }
  7532. }, { "style": { "height": "36px" } }).form; //创建窗体
  7533. _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); } }
  7534. break;
  7535. case "EDU":
  7536. _formdiv = new U.UF.UI.form(
  7537. "EDU",
  7538. $$("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" }), {
  7539. "id": "EDU",
  7540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7541. "onresize": function () { }
  7542. }, {
  7543. closecallback: function () { }
  7544. }, { "style": { "height": "36px" } }).form; //创建窗体
  7545. _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); } }
  7546. break;
  7547. case "knowledge":
  7548. _formdiv = new U.UF.UI.form(
  7549. "知识库",
  7550. $$("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 }), {
  7551. "id": "knowledge",
  7552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7553. "onresize": function () { }
  7554. }, {
  7555. closecallback: function () { }
  7556. }, { "style": { "height": "36px" } }).form; //创建窗体
  7557. _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); } }
  7558. break;
  7559. case "userExamine":
  7560. _formdiv = new U.UF.UI.form(
  7561. "账号申请",
  7562. $$("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" }), {
  7563. "id": "userExamine",
  7564. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, { "style": { "height": "36px" } }).form; //创建窗体
  7569. break;
  7570. case "cocoflowDeskTop": //cocoflowDeskTop
  7571. _formdiv = new U.UF.UI.form(
  7572. false,
  7573. $$("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 }), {
  7574. "id": "cocoflowDeskTop",
  7575. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7576. "onresize": function () { },
  7577. }, {
  7578. closecallback: function () { },
  7579. "isdrag": false,
  7580. }, { "style": { "height": "36px" } }).form; //创建窗体
  7581. _taskbar = ''
  7582. break;
  7583. case "liyuanLogin": //liyuanLogin
  7584. _formdiv = new U.UF.UI.form(
  7585. false,
  7586. $$("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 }), {
  7587. "id": "liyuanLogin",
  7588. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7589. "onresize": function () { },
  7590. }, {
  7591. closecallback: function () { },
  7592. isdrag: false,
  7593. isstretching: false,
  7594. isenlarge: false,
  7595. isnarrow: false
  7596. }, { "style": { "height": "36px" } }).form; //创建窗体
  7597. _taskbar = ''
  7598. break;
  7599. case "updatePaDialog":
  7600. _formdiv = new U.UF.UI.form(
  7601. "密码修改",
  7602. $$("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 }), {
  7603. "id": "updatePaDialog",
  7604. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7605. "onresize": function () { },
  7606. }, {
  7607. closecallback: function () { },
  7608. isclose: false,
  7609. isdrag: false,
  7610. isstretching: false,
  7611. isenlarge: false,
  7612. isnarrow: false
  7613. }, { "style": { "height": "36px" } }).form; //创建窗体
  7614. break;
  7615. }
  7616. //U.MD.D.I.openClick(str);
  7617. //如果有任务栏信息
  7618. if (_taskbar) {
  7619. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7620. }
  7621. if(iframeBool){
  7622. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7623. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7624. // console.log("iframe进入");
  7625. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7626. // };
  7627. setTimeout(() => {
  7628. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7629. }, 2000);
  7630. }
  7631. }
  7632. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7633. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7634. _userinfo = US.userInfo, //登录用户信息
  7635. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7636. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7637. let iframeBool = true;
  7638. let queryString = ''
  7639. if(array && array.length){
  7640. const paramsMap = {
  7641. userid: _userid,
  7642. org: _org,
  7643. oid: _oid,
  7644. type: _type,
  7645. role: _role,
  7646. classId: _classId,
  7647. TscreenType: _TscreenType,
  7648. SscreenType: _SscreenType
  7649. };
  7650. const canshu = array
  7651. .filter(param => paramsMap[param] !== undefined)
  7652. .map(param => `${param}=${paramsMap[param]}`);
  7653. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7654. }
  7655. let _url = url + queryString
  7656. if(U.UF.UI.form.allForm[id]){
  7657. iframeBool = false
  7658. }
  7659. _formdiv = new U.UF.UI.form(
  7660. false,
  7661. $$("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 }),
  7662. {
  7663. "id": id,
  7664. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7665. "onresize": function () { },
  7666. },
  7667. {
  7668. closecallback: function () { },
  7669. isdrag: false,
  7670. isstretching: false,
  7671. isenlarge: false,
  7672. isnarrow: false
  7673. },
  7674. { "style": { "height": "36px" } },
  7675. undefined,
  7676. undefined,
  7677. dom
  7678. ).form
  7679. }
  7680. // U.MD.D.I.openClick = function(str){
  7681. // var click = '';
  7682. // switch(str){
  7683. // case 'friend':
  7684. // click = '我的好友';
  7685. // break;
  7686. // case 'domain':
  7687. // click = '域名管理';
  7688. // break;
  7689. // case 'disk':
  7690. // click = '我的云盘';
  7691. // break;
  7692. // case 'word':
  7693. // click = 'Word';
  7694. // break;
  7695. // case 'excel':
  7696. // click = 'Execl';
  7697. // break;
  7698. // case 'txt':
  7699. // click = '文本文件';
  7700. // break;
  7701. // case 'lookupFriend':
  7702. // click = '查找好友';
  7703. // break;
  7704. // case 'ftp':
  7705. // click = 'FTP';
  7706. // break;
  7707. // case 'group':
  7708. // click = '群组';
  7709. // break;
  7710. // case 'set':
  7711. // click = '我的设置';
  7712. // break;
  7713. // case 'systemSet':
  7714. // click = '系统设置';
  7715. // break;
  7716. // case 'boomYun':
  7717. // click = '互联办公';
  7718. // break;
  7719. // case 'xz':
  7720. // click = '云端下载';
  7721. // break;
  7722. // case 'client':
  7723. // click = '有思浏览器';
  7724. // break;
  7725. // case 'backEndProgramming':
  7726. // click = '在线后台编程';
  7727. // break;
  7728. // case 'frontEndProgramming':
  7729. // click = '在线前端编程';
  7730. // break;
  7731. // default: break;
  7732. // }
  7733. // if(U.MD.D.I.Ip && click){
  7734. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7735. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7736. // })
  7737. // }
  7738. // }
  7739. /**
  7740. *函数作用:ajax简易函数,使用post格式
  7741. *@param url {data} 后台地址
  7742. *@param data {data} 参数json
  7743. *@param fn {data} 回调函数
  7744. *
  7745. */
  7746. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7747. // var xhr = new XMLHttpRequest();
  7748. // xhr.open("GET",url,true);
  7749. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7750. // xhr.onreadystatechange = function(){
  7751. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7752. // fn.call(this,xhr.responseText);
  7753. // }
  7754. // };
  7755. // xhr.send();
  7756. // }
  7757. /*判断是否是内网IP*/
  7758. // U.MD.D.I.isInnerIPFn = function(str){
  7759. // var curPageUrl = str;
  7760. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7761. // curPageUrl =curPageUrl.replace(reg1,'');
  7762. // // console.log('curPageUrl-1 '+curPageUrl);
  7763. // var reg2 = /\:+/g;//替换冒号为一点
  7764. // curPageUrl =curPageUrl.replace(reg2,'.');
  7765. // // console.log('curPageUrl-2 '+curPageUrl);
  7766. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7767. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7768. // if(curPageUrl[2] != '16'){
  7769. // return ipAddress;
  7770. // }else{
  7771. // return false;
  7772. // }
  7773. // }
  7774. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7775. // //compatibility for firefox and chrome
  7776. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7777. // var pc = new myPeerConnection({
  7778. // iceServers: []
  7779. // }),
  7780. // noop = function() {},
  7781. // localIPs = {},
  7782. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7783. // key;
  7784. // function iterateIP(ip) {
  7785. // if (!localIPs[ip]) onNewIP(ip);
  7786. // localIPs[ip] = true;
  7787. // }
  7788. // //create a bogus data channel
  7789. // pc.createDataChannel("");
  7790. // // create offer and set local description
  7791. // pc.createOffer().then(function(sdp) {
  7792. // sdp.sdp.split('\n').forEach(function(line) {
  7793. // if (line.indexOf('candidate') < 0) return;
  7794. // line.match(ipRegex).forEach(iterateIP);
  7795. // });
  7796. // pc.setLocalDescription(sdp, noop, noop);
  7797. // }).catch(function(reason) {
  7798. // // An error occurred, so handle the failure to connect
  7799. // });
  7800. // //sten for candidate events
  7801. // pc.onicecandidate = function(ice) {
  7802. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7803. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7804. // };
  7805. // }
  7806. // U.MD.D.I.getUserIpBool = function(callback){
  7807. // U.MD.D.I.getUserIP(function(ip){
  7808. // alert("Got IP! :" + ip);
  7809. // });
  7810. //}
  7811. //#endregion
  7812. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7813. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7814. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7815. _userinfo = US.userInfo, //登录用户信息
  7816. _userid = US.userInfo.userid //登录用户id
  7817. let _iframe;
  7818. let _cid = cid,
  7819. _stage = stage,
  7820. _task = task,
  7821. _tool = tool;
  7822. var _jie = $$("div", {
  7823. "style": {
  7824. "position": "absolute",
  7825. "bottom": "50px",
  7826. "right": "50px",
  7827. "zIndex": "9999",
  7828. "backgroundColor": "#2268bc",
  7829. "color": "#fff",
  7830. "padding": "12px 20px",
  7831. "cursor": "pointer",
  7832. "borderRadius": "4px",
  7833. },
  7834. "innerHTML": "提交作业"
  7835. })
  7836. let aTool = ''
  7837. let _loading = document.createElement('div')
  7838. _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;"
  7839. // _loading.id = "";
  7840. let _lchild = document.createElement('div')
  7841. let _limg = document.createElement('img')
  7842. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7843. _limg.style = "width: 26px;margin-right: 10px;"
  7844. _lchild.appendChild(_limg)
  7845. let _lspan = document.createElement('span')
  7846. _lspan.innerHTML = "上传中..."
  7847. _lchild.appendChild(_lspan)
  7848. _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%);"
  7849. _loading.appendChild(_lchild)
  7850. var _box = $$('div', {
  7851. "style": {
  7852. "position": "relative",
  7853. "width": "100%",
  7854. "height": "100%",
  7855. },
  7856. })
  7857. _box.appendChild(_loading)
  7858. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7859. switch (str) {
  7860. case "whiteboard":
  7861. aTool = 1;
  7862. _iframe = $$("iframe", {
  7863. "frameborder": "no",
  7864. "border": "0",
  7865. "scrolling ": "no",
  7866. "style": {
  7867. "cssText": "border:0;width:100%;height:100%"
  7868. },
  7869. "src": "https://beta.iwb.cocorobo.cn/"
  7870. })
  7871. _box.appendChild(_iframe);
  7872. _box.appendChild(_jie);
  7873. _formdiv = new U.UF.UI.form(
  7874. "电子白板",
  7875. _box, {
  7876. "id": "whiteboard" + cid + stage + task + tool,
  7877. "style": {
  7878. "width": "90%",
  7879. "height": "90%",
  7880. "overflow": 'hidden'
  7881. },
  7882. "onresize": function () { }
  7883. }, {
  7884. closecallback: function () { }
  7885. }, {
  7886. "style": {
  7887. "height": "36px"
  7888. }
  7889. }).form; //创建窗体
  7890. _taskbar = {
  7891. "id": str + _formdiv.id,
  7892. "style": {
  7893. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7894. },
  7895. "name": "电子白板",
  7896. "forms": _formdiv,
  7897. "click": function () {
  7898. U.MD.D.I.openApplication(str, obj, info);
  7899. }
  7900. }
  7901. break;
  7902. case "mind":
  7903. aTool = 3;
  7904. _iframe = $$("iframe", {
  7905. "frameborder": "no",
  7906. "border": "0",
  7907. "scrolling ": "no",
  7908. "style": {
  7909. "cssText": "border:0;width:100%;height:100%"
  7910. },
  7911. "src": "/kityminder-editor/dist/index.html"
  7912. })
  7913. _box.appendChild(_iframe);
  7914. _box.appendChild(_jie);
  7915. _formdiv = new U.UF.UI.form(
  7916. "思维导图",
  7917. _box, { //"/jsmind/example/demo.html"
  7918. "id": "mind" + cid + stage + task + tool,
  7919. "style": {
  7920. "width": "90%",
  7921. "height": "90%",
  7922. "overflow": 'hidden'
  7923. },
  7924. "onresize": function () { }
  7925. }, {
  7926. closecallback: function () { }
  7927. }, {
  7928. "style": {
  7929. "height": "36px"
  7930. }
  7931. }).form; //创建窗体
  7932. _taskbar = {
  7933. "id": str + _formdiv.id,
  7934. "style": {
  7935. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7936. },
  7937. "name": "思维导图",
  7938. "forms": _formdiv,
  7939. "click": function () {
  7940. U.MD.D.I.openApplication(str, obj, info);
  7941. }
  7942. }
  7943. break;
  7944. case "MindMap":
  7945. aTool = 3;
  7946. _iframe = $$("iframe", {
  7947. "frameborder": "no",
  7948. "border": "0",
  7949. "scrolling ": "no",
  7950. "style": {
  7951. "cssText": "border:0;width:100%;height:100%"
  7952. },
  7953. "src": "//cloud.cocorobo.cn/mind/"
  7954. })
  7955. _box.appendChild(_iframe);
  7956. _box.appendChild(_jie);
  7957. _formdiv = new U.UF.UI.form(
  7958. "思维导图",
  7959. _box, { //"/jsmind/example/demo.html"
  7960. "id": "mind" + cid + stage + task + tool,
  7961. "style": {
  7962. "width": "90%",
  7963. "height": "90%",
  7964. "overflow": 'hidden'
  7965. },
  7966. "onresize": function () { }
  7967. }, {
  7968. closecallback: function () { }
  7969. }, {
  7970. "style": {
  7971. "height": "36px"
  7972. }
  7973. }).form; //创建窗体
  7974. _taskbar = {
  7975. "id": str + _formdiv.id,
  7976. "style": {
  7977. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7978. },
  7979. "name": "思维导图",
  7980. "forms": _formdiv,
  7981. "click": function () {
  7982. U.MD.D.I.openApplication(str, obj, info);
  7983. }
  7984. }
  7985. break;
  7986. case "doc":
  7987. aTool = 6;
  7988. _iframe = $$("iframe", {
  7989. "frameborder": "no",
  7990. "border": "0",
  7991. "scrolling ": "no",
  7992. "style": {
  7993. "cssText": "border:0;width:100%;height:100%"
  7994. },
  7995. "src": "/Office/Word/WordEditArea.htm"
  7996. })
  7997. _box.appendChild(_iframe);
  7998. _box.appendChild(_jie);
  7999. _formdiv = new U.UF.UI.form(
  8000. "协同文档",
  8001. _box, {
  8002. "id": "doc" + cid + stage + task + tool,
  8003. "style": {
  8004. "width": "90%",
  8005. "height": "90%",
  8006. "overflow": 'hidden'
  8007. },
  8008. "onresize": function () { }
  8009. }, {
  8010. closecallback: function () { }
  8011. }, {
  8012. "style": {
  8013. "height": "36px"
  8014. }
  8015. }).form; //创建窗体
  8016. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8017. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8018. })
  8019. _taskbar = {
  8020. "id": str + _formdiv.id,
  8021. "style": {
  8022. "backgroundImage": "url(/img/icon/doc.png)"
  8023. },
  8024. "name": "协同文档",
  8025. "forms": _formdiv,
  8026. "click": function () {
  8027. U.MD.D.I.openApplication(str, obj, info);
  8028. }
  8029. }
  8030. break;
  8031. case "mindNetwork": //好友打开
  8032. aTool = 7;
  8033. _iframe = $$("iframe", {
  8034. "webkitallowfullscreen": "",
  8035. "mozallowfullscreen": "",
  8036. "allowfullscreen": "",
  8037. "frameborder": "no",
  8038. "border": "0",
  8039. "scrolling ": "no",
  8040. "style": {
  8041. "cssText": "border:0; width:100%; height:100%;"
  8042. },
  8043. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8044. })
  8045. _box.appendChild(_iframe);
  8046. _box.appendChild(_jie);
  8047. _formdiv = new U.UF.UI.form(
  8048. "思维网格",
  8049. _box, {
  8050. "id": "mindNetwork" + cid + stage + task + tool,
  8051. "style": {
  8052. "width": "90%",
  8053. "height": "90%",
  8054. "overflow": 'hidden'
  8055. },
  8056. "onresize": function () { }
  8057. }, {
  8058. closecallback: function () { }
  8059. }, {
  8060. "style": {
  8061. "height": "36px"
  8062. }
  8063. }).form; //创建窗体
  8064. _taskbar = {
  8065. "id": str + _formdiv.id,
  8066. "style": {
  8067. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8068. },
  8069. "name": "思维网格",
  8070. "forms": _formdiv,
  8071. "click": function () {
  8072. U.MD.D.I.openApplication(str, obj, info);
  8073. }
  8074. }
  8075. break;
  8076. case "courseDesign":
  8077. _iframe = $$("iframe", {
  8078. "webkitallowfullscreen": "",
  8079. "mozallowfullscreen": "",
  8080. "allowfullscreen": "",
  8081. "frameborder": "no",
  8082. "border": "0",
  8083. "scrolling ": "no",
  8084. "style": {
  8085. "cssText": "border:0; width:100%; height:100%;"
  8086. },
  8087. "src": "/course-design-vue"
  8088. })
  8089. _box.appendChild(_iframe);
  8090. _box.appendChild(_jie);
  8091. _formdiv = new U.UF.UI.form(
  8092. "项目设计",
  8093. _box, {
  8094. "id": "courseDesign" + cid + stage + task + tool,
  8095. "style": {
  8096. "width": "90%",
  8097. "height": "90%",
  8098. "overflow": 'hidden'
  8099. },
  8100. "onresize": function () { }
  8101. }, {
  8102. closecallback: function () { }
  8103. }, {
  8104. "style": {
  8105. "height": "36px"
  8106. }
  8107. }).form; //创建窗体
  8108. _taskbar = {
  8109. "id": str + _formdiv.id,
  8110. "style": {
  8111. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8112. },
  8113. "name": "项目设计",
  8114. "forms": _formdiv,
  8115. "click": function () {
  8116. U.MD.D.I.openApplication(str, obj, info);
  8117. }
  8118. }
  8119. break;
  8120. }
  8121. const script1 = document.createElement("script");
  8122. script1.type = "text/javascript";
  8123. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8124. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8125. const script2 = document.createElement("script");
  8126. script2.type = "text/javascript";
  8127. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8128. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8129. const script3 = document.createElement("script");
  8130. script3.type = "text/javascript";
  8131. script3.charset = "UTF-8";
  8132. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8133. const script4 = document.createElement("script");
  8134. script4.type = "text/javascript";
  8135. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8136. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8137. if (_iframe) {
  8138. if (str == 'doc') {
  8139. _iframe = _formdiv.querySelector('iframe')
  8140. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8141. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8142. _iframe.contentWindow.document.body.appendChild(script1);
  8143. _iframe.contentWindow.document.body.appendChild(script2);
  8144. // _iframe.contentWindow.document.body.appendChild(script3);
  8145. _iframe.contentWindow.document.body.appendChild(script4);
  8146. })
  8147. if (onloadListener) {
  8148. _iframe.contentDocument.location.reload()
  8149. } else {
  8150. _iframe.contentDocument.location.reload()
  8151. }
  8152. } else if (str == 'courseDesign') {
  8153. U.UF.DL.iframeLoad(_iframe, function () {
  8154. // _iframe.contentWindow.U.MD.O.W.load();
  8155. // _iframe.contentWindow.document.body.appendChild(script1);
  8156. _iframe.contentWindow.document.body.appendChild(script2);
  8157. _iframe.contentWindow.document.body.appendChild(script4);
  8158. })
  8159. } else if (str == 'mind') {
  8160. _iframe = _formdiv.querySelector('iframe')
  8161. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8162. //
  8163. _iframe.contentWindow.document.body.appendChild(script1);
  8164. _iframe.contentWindow.document.body.appendChild(script2);
  8165. _iframe.contentWindow.document.body.appendChild(script4);
  8166. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8167. })
  8168. if (onloadListener) {
  8169. _iframe.contentDocument.location.reload()
  8170. } else {
  8171. _iframe.contentDocument.location.reload()
  8172. }
  8173. } else if (str == 'whiteboard') {
  8174. _iframe = _formdiv.querySelector('iframe')
  8175. let onloadListener = _iframe.onload = () => {
  8176. _iframe.contentWindow.document.body.appendChild(script1);
  8177. _iframe.contentWindow.document.body.appendChild(script2);
  8178. _iframe.contentWindow.document.body.appendChild(script4);
  8179. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8180. };
  8181. // if (onloadListener) {
  8182. // try {
  8183. // _iframe.src += "?cocorobo="+new Date().getTime()
  8184. // _iframe.contentWindow.document.location.reload()
  8185. // } catch (error) {
  8186. // }
  8187. // } else {
  8188. // _iframe.contentDocument.location.reload()
  8189. // }
  8190. } else {
  8191. _iframe.onload = () => {
  8192. _iframe.contentWindow.document.body.appendChild(script1);
  8193. _iframe.contentWindow.document.body.appendChild(script2);
  8194. // _iframe.contentWindow.document.body.appendChild(script3);
  8195. _iframe.contentWindow.document.body.appendChild(script4);
  8196. };
  8197. }
  8198. _jie.onclick = async () => {
  8199. let text = ''
  8200. if (aTool == 1) {
  8201. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8202. } else if (aTool == 6) {
  8203. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8204. } else if (aTool == 3) {
  8205. text = await U.MD.D.I.getEditorContent(_iframe);
  8206. }
  8207. _loading.style.display = 'flex'
  8208. console.log(_loading);
  8209. var _ajs = _iframe.contentWindow.document.createElement("script");
  8210. _ajs.type = "text/javascript";
  8211. _ajs.innerHTML =
  8212. // 'console.log(' + _loading + ');\n' +
  8213. 'var _js = document.createElement("script");\n' +
  8214. '_js.type="text/javascript";\n' +
  8215. '_js.charset="UTF-8";\n' +
  8216. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8217. "_js.onload = function(){\n" +
  8218. ' var a = document.getElementsByTagName("img")\n' +
  8219. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8220. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8221. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8222. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8223. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8224. "beforeUpload_shishi(file," +
  8225. "'" +
  8226. _userid +
  8227. "'" +
  8228. ", " +
  8229. "'" +
  8230. _cid +
  8231. "'" +
  8232. ", " +
  8233. "'" +
  8234. _stage +
  8235. "'" +
  8236. ", " +
  8237. "'" +
  8238. _task +
  8239. "'" +
  8240. ", " +
  8241. "'" +
  8242. _tool +
  8243. "'" +
  8244. ", " +
  8245. "'" +
  8246. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8247. "'" +
  8248. ", " +
  8249. "'" +
  8250. aTool +
  8251. "'" +
  8252. ", " +
  8253. "`" +
  8254. text +
  8255. "`" +
  8256. ")\n" +
  8257. " });\n" +
  8258. "}\n" +
  8259. "document.head.appendChild(_js);\n";
  8260. _iframe.contentWindow.document.head.appendChild(_ajs);
  8261. }
  8262. }
  8263. //U.MD.D.I.openClick(str);
  8264. //如果有任务栏信息
  8265. // if (_taskbar) {
  8266. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8267. // }
  8268. }
  8269. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8270. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8271. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8272. _userinfo = US.userInfo, //登录用户信息
  8273. _userid = US.userInfo.userid //登录用户id
  8274. let _iframe;
  8275. let _cid = cid,
  8276. _stage = stage,
  8277. _task = task,
  8278. _tool = tool;
  8279. var _jie = $$("div", {
  8280. "style": {
  8281. "position": "absolute",
  8282. "bottom": "50px",
  8283. "right": "50px",
  8284. "zIndex": "9999",
  8285. "backgroundColor": "#2268bc",
  8286. "color": "#fff",
  8287. "padding": "12px 20px",
  8288. "cursor": "pointer",
  8289. "borderRadius": "4px",
  8290. },
  8291. "innerHTML": "提交作业"
  8292. })
  8293. let aTool = ''
  8294. let _loading = document.createElement('div')
  8295. _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;"
  8296. // _loading.id = "";
  8297. let _lchild = document.createElement('div')
  8298. let _limg = document.createElement('img')
  8299. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8300. _limg.style = "width: 26px;margin-right: 10px;"
  8301. _lchild.appendChild(_limg)
  8302. let _lspan = document.createElement('span')
  8303. _lspan.innerHTML = "上传中..."
  8304. _lchild.appendChild(_lspan)
  8305. _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%);"
  8306. _loading.appendChild(_lchild)
  8307. let _box = $$('div', {
  8308. "style": {
  8309. "position": "relative",
  8310. "width": "100%",
  8311. "height": "100%",
  8312. },
  8313. })
  8314. _box.appendChild(_loading)
  8315. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8316. switch (str) {
  8317. case "whiteboard":
  8318. aTool = 1;
  8319. _iframe = $$("iframe", {
  8320. "frameborder": "no",
  8321. "border": "0",
  8322. "scrolling ": "no",
  8323. "style": {
  8324. "cssText": "border:0;width:100%;height:100%"
  8325. },
  8326. "src": "https://beta.iwb.cocorobo.cn/"
  8327. })
  8328. _box.appendChild(_iframe);
  8329. _box.appendChild(_jie);
  8330. _formdiv = new U.UF.UI.form(
  8331. "电子白板",
  8332. _box, {
  8333. "id": "whiteboard" + cid + stage + task + tool,
  8334. "style": {
  8335. "width": "90%",
  8336. "height": "90%",
  8337. "overflow": 'hidden'
  8338. },
  8339. "onresize": function () { }
  8340. }, {
  8341. closecallback: function () { }
  8342. }, {
  8343. "style": {
  8344. "height": "36px"
  8345. }
  8346. }).form; //创建窗体
  8347. _taskbar = {
  8348. "id": str + _formdiv.id,
  8349. "style": {
  8350. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8351. },
  8352. "name": "电子白板",
  8353. "forms": _formdiv,
  8354. "click": function () {
  8355. U.MD.D.I.openApplication(str, obj, info);
  8356. }
  8357. }
  8358. break;
  8359. case "mind":
  8360. aTool = 3;
  8361. _iframe = $$("iframe", {
  8362. "frameborder": "no",
  8363. "border": "0",
  8364. "scrolling ": "no",
  8365. "style": {
  8366. "cssText": "border:0;width:100%;height:100%"
  8367. },
  8368. "src": "/kityminder-editor/dist/index.html"
  8369. })
  8370. _box.appendChild(_iframe);
  8371. _box.appendChild(_jie);
  8372. _formdiv = new U.UF.UI.form(
  8373. "思维导图",
  8374. _box, { //"/jsmind/example/demo.html"
  8375. "id": "mind" + cid + stage + task + tool,
  8376. "style": {
  8377. "width": "90%",
  8378. "height": "90%",
  8379. "overflow": 'hidden'
  8380. },
  8381. "onresize": function () { }
  8382. }, {
  8383. closecallback: function () { }
  8384. }, {
  8385. "style": {
  8386. "height": "36px"
  8387. }
  8388. }).form; //创建窗体
  8389. _taskbar = {
  8390. "id": str + _formdiv.id,
  8391. "style": {
  8392. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8393. },
  8394. "name": "思维导图",
  8395. "forms": _formdiv,
  8396. "click": function () {
  8397. U.MD.D.I.openApplication(str, obj, info);
  8398. }
  8399. }
  8400. break;
  8401. case "MindMap":
  8402. aTool = 3;
  8403. _iframe = $$("iframe", {
  8404. "frameborder": "no",
  8405. "border": "0",
  8406. "scrolling ": "no",
  8407. "style": {
  8408. "cssText": "border:0;width:100%;height:100%"
  8409. },
  8410. "src": "//cloud.cocorobo.cn/mind/"
  8411. })
  8412. _box.appendChild(_iframe);
  8413. _box.appendChild(_jie);
  8414. _formdiv = new U.UF.UI.form(
  8415. "思维导图",
  8416. _box, { //"/jsmind/example/demo.html"
  8417. "id": "mind" + cid + stage + task + tool,
  8418. "style": {
  8419. "width": "90%",
  8420. "height": "90%",
  8421. "overflow": 'hidden'
  8422. },
  8423. "onresize": function () { }
  8424. }, {
  8425. closecallback: function () { }
  8426. }, {
  8427. "style": {
  8428. "height": "36px"
  8429. }
  8430. }).form; //创建窗体
  8431. _taskbar = {
  8432. "id": str + _formdiv.id,
  8433. "style": {
  8434. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8435. },
  8436. "name": "思维导图",
  8437. "forms": _formdiv,
  8438. "click": function () {
  8439. U.MD.D.I.openApplication(str, obj, info);
  8440. }
  8441. }
  8442. break;
  8443. case "doc":
  8444. aTool = 6;
  8445. _iframe = $$("iframe", {
  8446. "frameborder": "no",
  8447. "border": "0",
  8448. "scrolling ": "no",
  8449. "style": {
  8450. "cssText": "border:0;width:100%;height:100%"
  8451. },
  8452. "src": "/Office/Word/WordEditArea.htm"
  8453. })
  8454. _box.appendChild(_iframe);
  8455. _box.appendChild(_jie);
  8456. _formdiv = new U.UF.UI.form(
  8457. "协同文档",
  8458. _box, {
  8459. "id": "doc" + cid + stage + task + tool,
  8460. "style": {
  8461. "width": "90%",
  8462. "height": "90%",
  8463. "overflow": 'hidden'
  8464. },
  8465. "onresize": function () { }
  8466. }, {
  8467. closecallback: function () { }
  8468. }, {
  8469. "style": {
  8470. "height": "36px"
  8471. }
  8472. }).form; //创建窗体
  8473. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8474. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8475. })
  8476. _taskbar = {
  8477. "id": str + _formdiv.id,
  8478. "style": {
  8479. "backgroundImage": "url(/img/icon/doc.png)"
  8480. },
  8481. "name": "协同文档",
  8482. "forms": _formdiv,
  8483. "click": function () {
  8484. U.MD.D.I.openApplication(str, obj, info);
  8485. }
  8486. }
  8487. break;
  8488. case "mindNetwork": //好友打开
  8489. aTool = 7;
  8490. _iframe = $$("iframe", {
  8491. "webkitallowfullscreen": "",
  8492. "mozallowfullscreen": "",
  8493. "allowfullscreen": "",
  8494. "frameborder": "no",
  8495. "border": "0",
  8496. "scrolling ": "no",
  8497. "style": {
  8498. "cssText": "border:0; width:100%; height:100%;"
  8499. },
  8500. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8501. })
  8502. _box.appendChild(_iframe);
  8503. _box.appendChild(_jie);
  8504. _formdiv = new U.UF.UI.form(
  8505. "思维网格",
  8506. _box, {
  8507. "id": "mindNetwork" + cid + stage + task + tool,
  8508. "style": {
  8509. "width": "90%",
  8510. "height": "90%",
  8511. "overflow": 'hidden'
  8512. },
  8513. "onresize": function () { }
  8514. }, {
  8515. closecallback: function () { }
  8516. }, {
  8517. "style": {
  8518. "height": "36px"
  8519. }
  8520. }).form; //创建窗体
  8521. _taskbar = {
  8522. "id": str + _formdiv.id,
  8523. "style": {
  8524. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8525. },
  8526. "name": "思维网格",
  8527. "forms": _formdiv,
  8528. "click": function () {
  8529. U.MD.D.I.openApplication(str, obj, info);
  8530. }
  8531. }
  8532. break;
  8533. case "courseDesign":
  8534. _iframe = $$("iframe", {
  8535. "webkitallowfullscreen": "",
  8536. "mozallowfullscreen": "",
  8537. "allowfullscreen": "",
  8538. "frameborder": "no",
  8539. "border": "0",
  8540. "scrolling ": "no",
  8541. "style": {
  8542. "cssText": "border:0; width:100%; height:100%;"
  8543. },
  8544. "src": "/course-design-vue"
  8545. })
  8546. _box.appendChild(_iframe);
  8547. _box.appendChild(_jie);
  8548. _formdiv = new U.UF.UI.form(
  8549. "项目设计",
  8550. _box, {
  8551. "id": "courseDesign" + cid + stage + task + tool,
  8552. "style": {
  8553. "width": "90%",
  8554. "height": "90%",
  8555. "overflow": 'hidden'
  8556. },
  8557. "onresize": function () { }
  8558. }, {
  8559. closecallback: function () { }
  8560. }, {
  8561. "style": {
  8562. "height": "36px"
  8563. }
  8564. }).form; //创建窗体
  8565. _taskbar = {
  8566. "id": str + _formdiv.id,
  8567. "style": {
  8568. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8569. },
  8570. "name": "项目设计",
  8571. "forms": _formdiv,
  8572. "click": function () {
  8573. U.MD.D.I.openApplication(str, obj, info);
  8574. }
  8575. }
  8576. break;
  8577. }
  8578. const script1 = document.createElement("script");
  8579. script1.type = "text/javascript";
  8580. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8581. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8582. const script2 = document.createElement("script");
  8583. script2.type = "text/javascript";
  8584. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8585. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8586. const script3 = document.createElement("script");
  8587. script3.type = "text/javascript";
  8588. script3.charset = "UTF-8";
  8589. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8590. const script4 = document.createElement("script");
  8591. script4.type = "text/javascript";
  8592. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8593. script4.src = window.origin + "/js/Common/jietu2E.js";
  8594. if (_iframe) {
  8595. if (str == 'doc') {
  8596. _iframe = _formdiv.querySelector('iframe')
  8597. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8598. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8599. _iframe.contentWindow.document.body.appendChild(script1);
  8600. _iframe.contentWindow.document.body.appendChild(script2);
  8601. // _iframe.contentWindow.document.body.appendChild(script3);
  8602. _iframe.contentWindow.document.body.appendChild(script4);
  8603. })
  8604. if (onloadListener) {
  8605. _iframe.contentDocument.location.reload()
  8606. } else {
  8607. _iframe.contentDocument.location.reload()
  8608. }
  8609. } else if (str == 'courseDesign') {
  8610. U.UF.DL.iframeLoad(_iframe, function () {
  8611. // _iframe.contentWindow.U.MD.O.W.load();
  8612. // _iframe.contentWindow.document.body.appendChild(script1);
  8613. _iframe.contentWindow.document.body.appendChild(script2);
  8614. _iframe.contentWindow.document.body.appendChild(script4);
  8615. })
  8616. } else if (str == 'mind') {
  8617. _iframe = _formdiv.querySelector('iframe')
  8618. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8619. //
  8620. _iframe.contentWindow.document.body.appendChild(script1);
  8621. _iframe.contentWindow.document.body.appendChild(script2);
  8622. _iframe.contentWindow.document.body.appendChild(script4);
  8623. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8624. })
  8625. if (onloadListener) {
  8626. _iframe.contentDocument.location.reload()
  8627. } else {
  8628. _iframe.contentDocument.location.reload()
  8629. }
  8630. } else if (str == 'whiteboard') {
  8631. _iframe = _formdiv.querySelector('iframe')
  8632. let onloadListener = _iframe.onload = () => {
  8633. _iframe.contentWindow.document.body.appendChild(script1);
  8634. _iframe.contentWindow.document.body.appendChild(script2);
  8635. _iframe.contentWindow.document.body.appendChild(script4);
  8636. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8637. };
  8638. // if (onloadListener) {
  8639. // try {
  8640. // _iframe.src += "?cocorobo="+new Date().getTime()
  8641. // _iframe.contentWindow.document.location.reload()
  8642. // } catch (error) {
  8643. // }
  8644. // } else {
  8645. // _iframe.contentDocument.location.reload()
  8646. // }
  8647. } else {
  8648. _iframe.onload = () => {
  8649. _iframe.contentWindow.document.body.appendChild(script1);
  8650. _iframe.contentWindow.document.body.appendChild(script2);
  8651. // _iframe.contentWindow.document.body.appendChild(script3);
  8652. _iframe.contentWindow.document.body.appendChild(script4);
  8653. };
  8654. }
  8655. _jie.onclick = async () => {
  8656. let text = ''
  8657. if (aTool == 1) {
  8658. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8659. } else if (aTool == 6) {
  8660. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8661. } else if (aTool == 3) {
  8662. text = await U.MD.D.I.getEditorContent(_iframe);
  8663. }
  8664. _loading.style.display = 'flex'
  8665. console.log(_loading);
  8666. var _ajs = _iframe.contentWindow.document.createElement("script");
  8667. _ajs.type = "text/javascript";
  8668. _ajs.innerHTML =
  8669. // 'console.log(' + _loading + ');\n' +
  8670. 'var _js = document.createElement("script");\n' +
  8671. '_js.type="text/javascript";\n' +
  8672. '_js.charset="UTF-8";\n' +
  8673. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8674. "_js.onload = function(){\n" +
  8675. ' var a = document.getElementsByTagName("img")\n' +
  8676. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8677. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8678. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8679. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8680. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8681. "beforeUpload_shishi(file," +
  8682. "'" +
  8683. _userid +
  8684. "'" +
  8685. ", " +
  8686. "'" +
  8687. _cid +
  8688. "'" +
  8689. ", " +
  8690. "'" +
  8691. _stage +
  8692. "'" +
  8693. ", " +
  8694. "'" +
  8695. _task +
  8696. "'" +
  8697. ", " +
  8698. "'" +
  8699. _tool +
  8700. "'" +
  8701. ", " +
  8702. "'" +
  8703. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8704. "'" +
  8705. ", " +
  8706. "'" +
  8707. aTool +
  8708. "'" +
  8709. ", " +
  8710. "`" +
  8711. text +
  8712. "`" +
  8713. ")\n" +
  8714. " });\n" +
  8715. "}\n" +
  8716. "document.head.appendChild(_js);\n";
  8717. _iframe.contentWindow.document.head.appendChild(_ajs);
  8718. }
  8719. }
  8720. //U.MD.D.I.openClick(str);
  8721. //如果有任务栏信息
  8722. // if (_taskbar) {
  8723. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8724. // }
  8725. }
  8726. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8727. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8728. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8729. _userid = student.userid, //登录用户id
  8730. _username = student.student //用户名字
  8731. let _iframe;
  8732. let _cid = cid,
  8733. _stage = stage,
  8734. _task = task,
  8735. _tool = tool;
  8736. var _jie = $$("div", {
  8737. "style": {
  8738. "position": "absolute",
  8739. "bottom": "50px",
  8740. "right": "50px",
  8741. "zIndex": "9999",
  8742. "backgroundColor": "#2268bc",
  8743. "color": "#fff",
  8744. "padding": "12px 20px",
  8745. "cursor": "pointer",
  8746. "borderRadius": "4px",
  8747. },
  8748. "innerHTML": "提交作业"
  8749. })
  8750. let aTool = ''
  8751. let _loading = document.createElement('div')
  8752. _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;"
  8753. // _loading.id = "";
  8754. let _lchild = document.createElement('div')
  8755. let _limg = document.createElement('img')
  8756. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8757. _limg.style = "width: 26px;margin-right: 10px;"
  8758. _lchild.appendChild(_limg)
  8759. let _lspan = document.createElement('span')
  8760. _lspan.innerHTML = "上传中..."
  8761. _lchild.appendChild(_lspan)
  8762. _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%);"
  8763. _loading.appendChild(_lchild)
  8764. var _box = $$('div', {
  8765. "style": {
  8766. "position": "relative",
  8767. "width": "100%",
  8768. "height": "100%",
  8769. },
  8770. })
  8771. _box.appendChild(_loading)
  8772. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8773. switch (str) {
  8774. case "whiteboard":
  8775. aTool = 1;
  8776. _iframe = $$("iframe", {
  8777. "frameborder": "no",
  8778. "border": "0",
  8779. "scrolling ": "no",
  8780. "style": {
  8781. "cssText": "border:0;width:100%;height:100%"
  8782. },
  8783. "src": "https://beta.iwb.cocorobo.cn/"
  8784. })
  8785. _box.appendChild(_iframe);
  8786. _box.appendChild(_jie);
  8787. _formdiv = new U.UF.UI.form(
  8788. "电子白板-" + _username,
  8789. _box, {
  8790. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8791. "style": {
  8792. "width": "90%",
  8793. "height": "90%",
  8794. "overflow": 'hidden'
  8795. },
  8796. "onresize": function () { }
  8797. }, {
  8798. closecallback: function () { }
  8799. }, {
  8800. "style": {
  8801. "height": "36px"
  8802. }
  8803. }).form; //创建窗体
  8804. _taskbar = {
  8805. "id": str + _formdiv.id,
  8806. "style": {
  8807. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8808. },
  8809. "name": "电子白板",
  8810. "forms": _formdiv,
  8811. "click": function () {
  8812. U.MD.D.I.openApplication(str, obj, info);
  8813. }
  8814. }
  8815. break;
  8816. case "mind":
  8817. aTool = 3;
  8818. _iframe = $$("iframe", {
  8819. "frameborder": "no",
  8820. "border": "0",
  8821. "scrolling ": "no",
  8822. "style": {
  8823. "cssText": "border:0;width:100%;height:100%"
  8824. },
  8825. "src": "/kityminder-editor/dist/index.html"
  8826. })
  8827. _box.appendChild(_iframe);
  8828. _box.appendChild(_jie);
  8829. _formdiv = new U.UF.UI.form(
  8830. "思维导图-" + _username,
  8831. _box, { //"/jsmind/example/demo.html"
  8832. "id": "mind" + cid + stage + task + tool + _userid,
  8833. "style": {
  8834. "width": "90%",
  8835. "height": "90%",
  8836. "overflow": 'hidden'
  8837. },
  8838. "onresize": function () { }
  8839. }, {
  8840. closecallback: function () { }
  8841. }, {
  8842. "style": {
  8843. "height": "36px"
  8844. }
  8845. }).form; //创建窗体
  8846. _taskbar = {
  8847. "id": str + _formdiv.id,
  8848. "style": {
  8849. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8850. },
  8851. "name": "思维导图",
  8852. "forms": _formdiv,
  8853. "click": function () {
  8854. U.MD.D.I.openApplication(str, obj, info);
  8855. }
  8856. }
  8857. break;
  8858. case "MindMap":
  8859. aTool = 3;
  8860. _iframe = $$("iframe", {
  8861. "frameborder": "no",
  8862. "border": "0",
  8863. "scrolling ": "no",
  8864. "style": {
  8865. "cssText": "border:0;width:100%;height:100%"
  8866. },
  8867. "src": "//cloud.cocorobo.cn/mind/"
  8868. })
  8869. _box.appendChild(_iframe);
  8870. _box.appendChild(_jie);
  8871. _formdiv = new U.UF.UI.form(
  8872. "思维导图-" + _username,
  8873. _box, { //"/jsmind/example/demo.html"
  8874. "id": "mind" + cid + stage + task + tool + _userid,
  8875. "style": {
  8876. "width": "90%",
  8877. "height": "90%",
  8878. "overflow": 'hidden'
  8879. },
  8880. "onresize": function () { }
  8881. }, {
  8882. closecallback: function () { }
  8883. }, {
  8884. "style": {
  8885. "height": "36px"
  8886. }
  8887. }).form; //创建窗体
  8888. _taskbar = {
  8889. "id": str + _formdiv.id,
  8890. "style": {
  8891. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8892. },
  8893. "name": "思维导图",
  8894. "forms": _formdiv,
  8895. "click": function () {
  8896. U.MD.D.I.openApplication(str, obj, info);
  8897. }
  8898. }
  8899. break;
  8900. case "doc":
  8901. aTool = 6;
  8902. _iframe = $$("iframe", {
  8903. "frameborder": "no",
  8904. "border": "0",
  8905. "scrolling ": "no",
  8906. "style": {
  8907. "cssText": "border:0;width:100%;height:100%"
  8908. },
  8909. "src": "/Office/Word/WordEditArea.htm"
  8910. })
  8911. _box.appendChild(_iframe);
  8912. _box.appendChild(_jie);
  8913. _formdiv = new U.UF.UI.form(
  8914. "协同文档-" + _username,
  8915. _box, {
  8916. "id": "doc" + cid + stage + task + tool + _userid,
  8917. "style": {
  8918. "width": "90%",
  8919. "height": "90%",
  8920. "overflow": 'hidden'
  8921. },
  8922. "onresize": function () { }
  8923. }, {
  8924. closecallback: function () { }
  8925. }, {
  8926. "style": {
  8927. "height": "36px"
  8928. }
  8929. }).form; //创建窗体
  8930. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8931. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8932. })
  8933. _taskbar = {
  8934. "id": str + _formdiv.id,
  8935. "style": {
  8936. "backgroundImage": "url(/img/icon/doc.png)"
  8937. },
  8938. "name": "协同文档",
  8939. "forms": _formdiv,
  8940. "click": function () {
  8941. U.MD.D.I.openApplication(str, obj, info);
  8942. }
  8943. }
  8944. break;
  8945. case "mindNetwork": //好友打开
  8946. aTool = 7;
  8947. _iframe = $$("iframe", {
  8948. "webkitallowfullscreen": "",
  8949. "mozallowfullscreen": "",
  8950. "allowfullscreen": "",
  8951. "frameborder": "no",
  8952. "border": "0",
  8953. "scrolling ": "no",
  8954. "style": {
  8955. "cssText": "border:0; width:100%; height:100%;"
  8956. },
  8957. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8958. })
  8959. _box.appendChild(_iframe);
  8960. _box.appendChild(_jie);
  8961. _formdiv = new U.UF.UI.form(
  8962. "思维网格-" + _username,
  8963. _box, {
  8964. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8965. "style": {
  8966. "width": "90%",
  8967. "height": "90%",
  8968. "overflow": 'hidden'
  8969. },
  8970. "onresize": function () { }
  8971. }, {
  8972. closecallback: function () { }
  8973. }, {
  8974. "style": {
  8975. "height": "36px"
  8976. }
  8977. }).form; //创建窗体
  8978. _taskbar = {
  8979. "id": str + _formdiv.id,
  8980. "style": {
  8981. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8982. },
  8983. "name": "思维网格",
  8984. "forms": _formdiv,
  8985. "click": function () {
  8986. U.MD.D.I.openApplication(str, obj, info);
  8987. }
  8988. }
  8989. break;
  8990. case "courseDesign":
  8991. _iframe = $$("iframe", {
  8992. "webkitallowfullscreen": "",
  8993. "mozallowfullscreen": "",
  8994. "allowfullscreen": "",
  8995. "frameborder": "no",
  8996. "border": "0",
  8997. "scrolling ": "no",
  8998. "style": {
  8999. "cssText": "border:0; width:100%; height:100%;"
  9000. },
  9001. "src": "/course-design-vue"
  9002. })
  9003. _box.appendChild(_iframe);
  9004. _box.appendChild(_jie);
  9005. _formdiv = new U.UF.UI.form(
  9006. "项目设计-" + _username,
  9007. _box, {
  9008. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9009. "style": {
  9010. "width": "90%",
  9011. "height": "90%",
  9012. "overflow": 'hidden'
  9013. },
  9014. "onresize": function () { }
  9015. }, {
  9016. closecallback: function () { }
  9017. }, {
  9018. "style": {
  9019. "height": "36px"
  9020. }
  9021. }).form; //创建窗体
  9022. _taskbar = {
  9023. "id": str + _formdiv.id,
  9024. "style": {
  9025. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9026. },
  9027. "name": "项目设计",
  9028. "forms": _formdiv,
  9029. "click": function () {
  9030. U.MD.D.I.openApplication(str, obj, info);
  9031. }
  9032. }
  9033. break;
  9034. }
  9035. const script1 = document.createElement("script");
  9036. script1.type = "text/javascript";
  9037. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9038. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9039. const script2 = document.createElement("script");
  9040. script2.type = "text/javascript";
  9041. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9042. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9043. const script3 = document.createElement("script");
  9044. script3.type = "text/javascript";
  9045. script3.charset = "UTF-8";
  9046. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9047. const script4 = document.createElement("script");
  9048. script4.type = "text/javascript";
  9049. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9050. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9051. if (_iframe) {
  9052. if (str == 'doc') {
  9053. _iframe = _formdiv.querySelector('iframe')
  9054. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9055. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9056. _iframe.contentWindow.document.body.appendChild(script1);
  9057. _iframe.contentWindow.document.body.appendChild(script2);
  9058. // _iframe.contentWindow.document.body.appendChild(script3);
  9059. _iframe.contentWindow.document.body.appendChild(script4);
  9060. })
  9061. if (onloadListener) {
  9062. _iframe.contentDocument.location.reload()
  9063. } else {
  9064. _iframe.contentDocument.location.reload()
  9065. }
  9066. } else if (str == 'courseDesign') {
  9067. U.UF.DL.iframeLoad(_iframe, function () {
  9068. // _iframe.contentWindow.U.MD.O.W.load();
  9069. // _iframe.contentWindow.document.body.appendChild(script1);
  9070. _iframe.contentWindow.document.body.appendChild(script2);
  9071. _iframe.contentWindow.document.body.appendChild(script4);
  9072. })
  9073. } else if (str == 'mind') {
  9074. _iframe = _formdiv.querySelector('iframe')
  9075. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9076. //
  9077. _iframe.contentWindow.document.body.appendChild(script1);
  9078. _iframe.contentWindow.document.body.appendChild(script2);
  9079. _iframe.contentWindow.document.body.appendChild(script4);
  9080. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9081. })
  9082. if (onloadListener) {
  9083. _iframe.contentDocument.location.reload()
  9084. } else {
  9085. _iframe.contentDocument.location.reload()
  9086. }
  9087. } else if (str == 'whiteboard') {
  9088. _iframe = _formdiv.querySelector('iframe')
  9089. let onloadListener = _iframe.onload = () => {
  9090. _iframe.contentWindow.document.body.appendChild(script1);
  9091. _iframe.contentWindow.document.body.appendChild(script2);
  9092. _iframe.contentWindow.document.body.appendChild(script4);
  9093. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9094. };
  9095. // if (onloadListener) {
  9096. // try {
  9097. // _iframe.src += "?cocorobo="+new Date().getTime()
  9098. // _iframe.contentWindow.document.location.reload()
  9099. // } catch (error) {
  9100. // }
  9101. // } else {
  9102. // _iframe.contentDocument.location.reload()
  9103. // }
  9104. } else {
  9105. _iframe.onload = () => {
  9106. _iframe.contentWindow.document.body.appendChild(script1);
  9107. _iframe.contentWindow.document.body.appendChild(script2);
  9108. // _iframe.contentWindow.document.body.appendChild(script3);
  9109. _iframe.contentWindow.document.body.appendChild(script4);
  9110. };
  9111. }
  9112. _jie.onclick = async () => {
  9113. let text = ''
  9114. if (aTool == 1) {
  9115. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9116. } else if (aTool == 6) {
  9117. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9118. } else if (aTool == 3) {
  9119. text = await U.MD.D.I.getEditorContent(_iframe);
  9120. }
  9121. _loading.style.display = 'flex'
  9122. console.log(_loading);
  9123. var _ajs = _iframe.contentWindow.document.createElement("script");
  9124. _ajs.type = "text/javascript";
  9125. _ajs.innerHTML =
  9126. // 'console.log(' + _loading + ');\n' +
  9127. 'var _js = document.createElement("script");\n' +
  9128. '_js.type="text/javascript";\n' +
  9129. '_js.charset="UTF-8";\n' +
  9130. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9131. "_js.onload = function(){\n" +
  9132. ' var a = document.getElementsByTagName("img")\n' +
  9133. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9134. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9135. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9136. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9137. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9138. "beforeUpload_shishi(file," +
  9139. "'" +
  9140. _userid +
  9141. "'" +
  9142. ", " +
  9143. "'" +
  9144. _cid +
  9145. "'" +
  9146. ", " +
  9147. "'" +
  9148. _stage +
  9149. "'" +
  9150. ", " +
  9151. "'" +
  9152. _task +
  9153. "'" +
  9154. ", " +
  9155. "'" +
  9156. _tool +
  9157. "'" +
  9158. ", " +
  9159. "'" +
  9160. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9161. "'" +
  9162. ", " +
  9163. "'" +
  9164. aTool +
  9165. "'" +
  9166. ", " +
  9167. "`" +
  9168. text +
  9169. "`" +
  9170. ")\n" +
  9171. " });\n" +
  9172. "}\n" +
  9173. "document.head.appendChild(_js);\n";
  9174. _iframe.contentWindow.document.head.appendChild(_ajs);
  9175. }
  9176. }
  9177. }
  9178. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9179. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9180. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9181. _userid = student.userid, //登录用户id
  9182. _username = student.student //用户名字
  9183. let _iframe;
  9184. let _cid = cid,
  9185. _stage = stage,
  9186. _task = task,
  9187. _tool = tool;
  9188. var _jie = $$("div", {
  9189. "style": {
  9190. "position": "absolute",
  9191. "bottom": "50px",
  9192. "right": "50px",
  9193. "zIndex": "9999",
  9194. "backgroundColor": "#2268bc",
  9195. "color": "#fff",
  9196. "padding": "12px 20px",
  9197. "cursor": "pointer",
  9198. "borderRadius": "4px",
  9199. },
  9200. "innerHTML": "提交作业"
  9201. })
  9202. let aTool = ''
  9203. let _loading = document.createElement('div')
  9204. _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;"
  9205. // _loading.id = "";
  9206. let _lchild = document.createElement('div')
  9207. let _limg = document.createElement('img')
  9208. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9209. _limg.style = "width: 26px;margin-right: 10px;"
  9210. _lchild.appendChild(_limg)
  9211. let _lspan = document.createElement('span')
  9212. _lspan.innerHTML = "上传中..."
  9213. _lchild.appendChild(_lspan)
  9214. _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%);"
  9215. _loading.appendChild(_lchild)
  9216. var _box = $$('div', {
  9217. "style": {
  9218. "position": "relative",
  9219. "width": "100%",
  9220. "height": "100%",
  9221. },
  9222. })
  9223. _box.appendChild(_loading)
  9224. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9225. switch (str) {
  9226. case "whiteboard":
  9227. aTool = 1;
  9228. _iframe = $$("iframe", {
  9229. "frameborder": "no",
  9230. "border": "0",
  9231. "scrolling ": "no",
  9232. "style": {
  9233. "cssText": "border:0;width:100%;height:100%"
  9234. },
  9235. "src": "https://beta.iwb.cocorobo.cn/"
  9236. })
  9237. _box.appendChild(_iframe);
  9238. _box.appendChild(_jie);
  9239. _formdiv = new U.UF.UI.form(
  9240. "电子白板-" + _username,
  9241. _box, {
  9242. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9243. "style": {
  9244. "width": "90%",
  9245. "height": "90%",
  9246. "overflow": 'hidden'
  9247. },
  9248. "onresize": function () { }
  9249. }, {
  9250. closecallback: function () { }
  9251. }, {
  9252. "style": {
  9253. "height": "36px"
  9254. }
  9255. }).form; //创建窗体
  9256. _taskbar = {
  9257. "id": str + _formdiv.id,
  9258. "style": {
  9259. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9260. },
  9261. "name": "电子白板",
  9262. "forms": _formdiv,
  9263. "click": function () {
  9264. U.MD.D.I.openApplication(str, obj, info);
  9265. }
  9266. }
  9267. break;
  9268. case "mind":
  9269. aTool = 3;
  9270. _iframe = $$("iframe", {
  9271. "frameborder": "no",
  9272. "border": "0",
  9273. "scrolling ": "no",
  9274. "style": {
  9275. "cssText": "border:0;width:100%;height:100%"
  9276. },
  9277. "src": "/kityminder-editor/dist/index.html"
  9278. })
  9279. _box.appendChild(_iframe);
  9280. _box.appendChild(_jie);
  9281. _formdiv = new U.UF.UI.form(
  9282. "思维导图-" + _username,
  9283. _box, { //"/jsmind/example/demo.html"
  9284. "id": "mind" + cid + stage + task + tool + _userid,
  9285. "style": {
  9286. "width": "90%",
  9287. "height": "90%",
  9288. "overflow": 'hidden'
  9289. },
  9290. "onresize": function () { }
  9291. }, {
  9292. closecallback: function () { }
  9293. }, {
  9294. "style": {
  9295. "height": "36px"
  9296. }
  9297. }).form; //创建窗体
  9298. _taskbar = {
  9299. "id": str + _formdiv.id,
  9300. "style": {
  9301. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9302. },
  9303. "name": "思维导图",
  9304. "forms": _formdiv,
  9305. "click": function () {
  9306. U.MD.D.I.openApplication(str, obj, info);
  9307. }
  9308. }
  9309. break;
  9310. case "MindMap":
  9311. aTool = 3;
  9312. _iframe = $$("iframe", {
  9313. "frameborder": "no",
  9314. "border": "0",
  9315. "scrolling ": "no",
  9316. "style": {
  9317. "cssText": "border:0;width:100%;height:100%"
  9318. },
  9319. "src": "//cloud.cocorobo.cn/mind/"
  9320. })
  9321. _box.appendChild(_iframe);
  9322. _box.appendChild(_jie);
  9323. _formdiv = new U.UF.UI.form(
  9324. "思维导图-" + _username,
  9325. _box, { //"/jsmind/example/demo.html"
  9326. "id": "mind" + cid + stage + task + tool + _userid,
  9327. "style": {
  9328. "width": "90%",
  9329. "height": "90%",
  9330. "overflow": 'hidden'
  9331. },
  9332. "onresize": function () { }
  9333. }, {
  9334. closecallback: function () { }
  9335. }, {
  9336. "style": {
  9337. "height": "36px"
  9338. }
  9339. }).form; //创建窗体
  9340. _taskbar = {
  9341. "id": str + _formdiv.id,
  9342. "style": {
  9343. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9344. },
  9345. "name": "思维导图",
  9346. "forms": _formdiv,
  9347. "click": function () {
  9348. U.MD.D.I.openApplication(str, obj, info);
  9349. }
  9350. }
  9351. break;
  9352. case "doc":
  9353. aTool = 6;
  9354. _iframe = $$("iframe", {
  9355. "frameborder": "no",
  9356. "border": "0",
  9357. "scrolling ": "no",
  9358. "style": {
  9359. "cssText": "border:0;width:100%;height:100%"
  9360. },
  9361. "src": "/Office/Word/WordEditArea.htm"
  9362. })
  9363. _box.appendChild(_iframe);
  9364. _box.appendChild(_jie);
  9365. _formdiv = new U.UF.UI.form(
  9366. "协同文档-" + _username,
  9367. _box, {
  9368. "id": "doc" + cid + stage + task + tool + _userid,
  9369. "style": {
  9370. "width": "90%",
  9371. "height": "90%",
  9372. "overflow": 'hidden'
  9373. },
  9374. "onresize": function () { }
  9375. }, {
  9376. closecallback: function () { }
  9377. }, {
  9378. "style": {
  9379. "height": "36px"
  9380. }
  9381. }).form; //创建窗体
  9382. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9383. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9384. })
  9385. _taskbar = {
  9386. "id": str + _formdiv.id,
  9387. "style": {
  9388. "backgroundImage": "url(/img/icon/doc.png)"
  9389. },
  9390. "name": "协同文档",
  9391. "forms": _formdiv,
  9392. "click": function () {
  9393. U.MD.D.I.openApplication(str, obj, info);
  9394. }
  9395. }
  9396. break;
  9397. case "mindNetwork": //好友打开
  9398. aTool = 7;
  9399. _iframe = $$("iframe", {
  9400. "webkitallowfullscreen": "",
  9401. "mozallowfullscreen": "",
  9402. "allowfullscreen": "",
  9403. "frameborder": "no",
  9404. "border": "0",
  9405. "scrolling ": "no",
  9406. "style": {
  9407. "cssText": "border:0; width:100%; height:100%;"
  9408. },
  9409. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9410. })
  9411. _box.appendChild(_iframe);
  9412. _box.appendChild(_jie);
  9413. _formdiv = new U.UF.UI.form(
  9414. "思维网格-" + _username,
  9415. _box, {
  9416. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9417. "style": {
  9418. "width": "90%",
  9419. "height": "90%",
  9420. "overflow": 'hidden'
  9421. },
  9422. "onresize": function () { }
  9423. }, {
  9424. closecallback: function () { }
  9425. }, {
  9426. "style": {
  9427. "height": "36px"
  9428. }
  9429. }).form; //创建窗体
  9430. _taskbar = {
  9431. "id": str + _formdiv.id,
  9432. "style": {
  9433. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9434. },
  9435. "name": "思维网格",
  9436. "forms": _formdiv,
  9437. "click": function () {
  9438. U.MD.D.I.openApplication(str, obj, info);
  9439. }
  9440. }
  9441. break;
  9442. case "courseDesign":
  9443. _iframe = $$("iframe", {
  9444. "webkitallowfullscreen": "",
  9445. "mozallowfullscreen": "",
  9446. "allowfullscreen": "",
  9447. "frameborder": "no",
  9448. "border": "0",
  9449. "scrolling ": "no",
  9450. "style": {
  9451. "cssText": "border:0; width:100%; height:100%;"
  9452. },
  9453. "src": "/course-design-vue"
  9454. })
  9455. _box.appendChild(_iframe);
  9456. _box.appendChild(_jie);
  9457. _formdiv = new U.UF.UI.form(
  9458. "项目设计-" + _username,
  9459. _box, {
  9460. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9461. "style": {
  9462. "width": "90%",
  9463. "height": "90%",
  9464. "overflow": 'hidden'
  9465. },
  9466. "onresize": function () { }
  9467. }, {
  9468. closecallback: function () { }
  9469. }, {
  9470. "style": {
  9471. "height": "36px"
  9472. }
  9473. }).form; //创建窗体
  9474. _taskbar = {
  9475. "id": str + _formdiv.id,
  9476. "style": {
  9477. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9478. },
  9479. "name": "项目设计",
  9480. "forms": _formdiv,
  9481. "click": function () {
  9482. U.MD.D.I.openApplication(str, obj, info);
  9483. }
  9484. }
  9485. break;
  9486. }
  9487. const script1 = document.createElement("script");
  9488. script1.type = "text/javascript";
  9489. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9490. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9491. const script2 = document.createElement("script");
  9492. script2.type = "text/javascript";
  9493. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9494. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9495. const script3 = document.createElement("script");
  9496. script3.type = "text/javascript";
  9497. script3.charset = "UTF-8";
  9498. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9499. const script4 = document.createElement("script");
  9500. script4.type = "text/javascript";
  9501. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9502. script4.src = window.origin + "/js/Common/jietu2E.js";
  9503. if (_iframe) {
  9504. if (str == 'doc') {
  9505. _iframe = _formdiv.querySelector('iframe')
  9506. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9507. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9508. _iframe.contentWindow.document.body.appendChild(script1);
  9509. _iframe.contentWindow.document.body.appendChild(script2);
  9510. // _iframe.contentWindow.document.body.appendChild(script3);
  9511. _iframe.contentWindow.document.body.appendChild(script4);
  9512. })
  9513. if (onloadListener) {
  9514. _iframe.contentDocument.location.reload()
  9515. } else {
  9516. _iframe.contentDocument.location.reload()
  9517. }
  9518. } else if (str == 'courseDesign') {
  9519. U.UF.DL.iframeLoad(_iframe, function () {
  9520. // _iframe.contentWindow.U.MD.O.W.load();
  9521. // _iframe.contentWindow.document.body.appendChild(script1);
  9522. _iframe.contentWindow.document.body.appendChild(script2);
  9523. _iframe.contentWindow.document.body.appendChild(script4);
  9524. })
  9525. } else if (str == 'mind') {
  9526. _iframe = _formdiv.querySelector('iframe')
  9527. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9528. //
  9529. _iframe.contentWindow.document.body.appendChild(script1);
  9530. _iframe.contentWindow.document.body.appendChild(script2);
  9531. _iframe.contentWindow.document.body.appendChild(script4);
  9532. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9533. })
  9534. if (onloadListener) {
  9535. _iframe.contentDocument.location.reload()
  9536. } else {
  9537. _iframe.contentDocument.location.reload()
  9538. }
  9539. } else if (str == 'whiteboard') {
  9540. _iframe = _formdiv.querySelector('iframe')
  9541. let onloadListener = _iframe.onload = () => {
  9542. _iframe.contentWindow.document.body.appendChild(script1);
  9543. _iframe.contentWindow.document.body.appendChild(script2);
  9544. _iframe.contentWindow.document.body.appendChild(script4);
  9545. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9546. };
  9547. // if (onloadListener) {
  9548. // try {
  9549. // _iframe.src += "?cocorobo="+new Date().getTime()
  9550. // _iframe.contentWindow.document.location.reload()
  9551. // } catch (error) {
  9552. // }
  9553. // } else {
  9554. // _iframe.contentDocument.location.reload()
  9555. // }
  9556. } else {
  9557. _iframe.onload = () => {
  9558. _iframe.contentWindow.document.body.appendChild(script1);
  9559. _iframe.contentWindow.document.body.appendChild(script2);
  9560. // _iframe.contentWindow.document.body.appendChild(script3);
  9561. _iframe.contentWindow.document.body.appendChild(script4);
  9562. };
  9563. }
  9564. _jie.onclick = async () => {
  9565. let text = ''
  9566. if (aTool == 1) {
  9567. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9568. } else if (aTool == 6) {
  9569. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9570. } else if (aTool == 3) {
  9571. text = await U.MD.D.I.getEditorContent(_iframe);
  9572. }
  9573. _loading.style.display = 'flex'
  9574. console.log(_loading);
  9575. var _ajs = _iframe.contentWindow.document.createElement("script");
  9576. _ajs.type = "text/javascript";
  9577. _ajs.innerHTML =
  9578. // 'console.log(' + _loading + ');\n' +
  9579. 'var _js = document.createElement("script");\n' +
  9580. '_js.type="text/javascript";\n' +
  9581. '_js.charset="UTF-8";\n' +
  9582. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9583. "_js.onload = function(){\n" +
  9584. ' var a = document.getElementsByTagName("img")\n' +
  9585. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9586. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9587. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9588. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9589. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9590. "beforeUpload_shishi(file," +
  9591. "'" +
  9592. _userid +
  9593. "'" +
  9594. ", " +
  9595. "'" +
  9596. _cid +
  9597. "'" +
  9598. ", " +
  9599. "'" +
  9600. _stage +
  9601. "'" +
  9602. ", " +
  9603. "'" +
  9604. _task +
  9605. "'" +
  9606. ", " +
  9607. "'" +
  9608. _tool +
  9609. "'" +
  9610. ", " +
  9611. "'" +
  9612. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9613. "'" +
  9614. ", " +
  9615. "'" +
  9616. aTool +
  9617. "'" +
  9618. ", " +
  9619. "`" +
  9620. text +
  9621. "`" +
  9622. ")\n" +
  9623. " });\n" +
  9624. "}\n" +
  9625. "document.head.appendChild(_js);\n";
  9626. _iframe.contentWindow.document.head.appendChild(_ajs);
  9627. }
  9628. }
  9629. }
  9630. U.MD.D.I.getEditorContent = function (iframe) {
  9631. return new Promise((resolve, reject) => {
  9632. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9633. console.log(content);
  9634. resolve(content)
  9635. });
  9636. });
  9637. }
  9638. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9639. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9640. // if (res.value[0].length > 0) {
  9641. // // resolve(res.value[0][0].text);
  9642. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9643. // $(fileInput).val('');
  9644. // });
  9645. // }
  9646. // }, [], { "type": "GET", "withCredentials": true });
  9647. var xmlhttp;
  9648. var Mac, Sn, DeviceId
  9649. if (window.XMLHttpRequest) {
  9650. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9651. xmlhttp = new XMLHttpRequest();
  9652. } else {
  9653. // IE6, IE5 浏览器执行代码
  9654. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9655. }
  9656. xmlhttp.onreadystatechange = function () {
  9657. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9658. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9659. // resolve(res.value[0][0].text);
  9660. if (type == '2') {
  9661. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9662. } else if (type == '3') {
  9663. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9664. }
  9665. } else {
  9666. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9667. }
  9668. }
  9669. }
  9670. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9671. xmlhttp.send();
  9672. }
  9673. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9674. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9675. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9676. _userinfo = US.userInfo, //登录用户信息
  9677. _userid = US.userInfo.userid //登录用户id
  9678. let _iframe;
  9679. let _cid = cid,
  9680. _stage = stage,
  9681. _task = task,
  9682. _tool = tool;
  9683. var _jie = $$("div", {
  9684. "style": {
  9685. "position": "absolute",
  9686. "bottom": "50px",
  9687. "right": "50px",
  9688. "zIndex": "9999",
  9689. "backgroundColor": "#2268bc",
  9690. "color": "#fff",
  9691. "padding": "12px 20px",
  9692. "cursor": "pointer",
  9693. "borderRadius": "4px",
  9694. },
  9695. "innerHTML": "确认并提交"
  9696. })
  9697. let aTool = ''
  9698. let _loading = document.createElement('div')
  9699. _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;"
  9700. // _loading.id = "";
  9701. let _lchild = document.createElement('div')
  9702. let _limg = document.createElement('img')
  9703. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9704. _limg.style = "width: 26px;margin-right: 10px;"
  9705. _lchild.appendChild(_limg)
  9706. let _lspan = document.createElement('span')
  9707. _lspan.innerHTML = "上传中..."
  9708. _lchild.appendChild(_lspan)
  9709. _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%);"
  9710. _loading.appendChild(_lchild)
  9711. var _box = $$('div', {
  9712. "style": {
  9713. "position": "relative",
  9714. "width": "100%",
  9715. "height": "100%",
  9716. },
  9717. })
  9718. _box.appendChild(_loading)
  9719. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9720. switch (str) {
  9721. case "whiteboard":
  9722. aTool = 1;
  9723. _iframe = $$("iframe", {
  9724. "frameborder": "no",
  9725. "border": "0",
  9726. "scrolling ": "no",
  9727. "style": {
  9728. "cssText": "border:0;width:100%;height:100%"
  9729. },
  9730. "src": "https://beta.iwb.cocorobo.cn/"
  9731. })
  9732. _box.appendChild(_iframe);
  9733. _box.appendChild(_jie);
  9734. _formdiv = new U.UF.UI.form(
  9735. "电子白板",
  9736. _box, {
  9737. "id": "whiteboards" + cid + stage + task + tool,
  9738. "style": {
  9739. "width": "90%",
  9740. "height": "90%",
  9741. "overflow": 'hidden'
  9742. },
  9743. "onresize": function () { }
  9744. }, {
  9745. closecallback: function () { }
  9746. }, {
  9747. "style": {
  9748. "height": "36px"
  9749. }
  9750. }).form; //创建窗体
  9751. _taskbar = {
  9752. "id": str + _formdiv.id,
  9753. "style": {
  9754. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9755. },
  9756. "name": "电子白板",
  9757. "forms": _formdiv,
  9758. "click": function () {
  9759. U.MD.D.I.openApplication(str, obj, info);
  9760. }
  9761. }
  9762. break;
  9763. case "mind":
  9764. aTool = 3;
  9765. _iframe = $$("iframe", {
  9766. "frameborder": "no",
  9767. "border": "0",
  9768. "scrolling ": "no",
  9769. "style": {
  9770. "cssText": "border:0;width:100%;height:100%"
  9771. },
  9772. "src": "/kityminder-editor/dist/index.html"
  9773. });
  9774. _box.appendChild(_iframe);
  9775. _box.appendChild(_jie);
  9776. _formdiv = new U.UF.UI.form(
  9777. "思维导图",
  9778. _box, { //"/jsmind/example/demo.html"
  9779. "id": "minds" + cid + stage + task + tool,
  9780. "style": {
  9781. "width": "90%",
  9782. "height": "90%",
  9783. "overflow": 'hidden'
  9784. },
  9785. "onresize": function () { }
  9786. }, {
  9787. closecallback: function () { }
  9788. }, {
  9789. "style": {
  9790. "height": "36px"
  9791. }
  9792. }).form; //创建窗体
  9793. _taskbar = {
  9794. "id": str + _formdiv.id,
  9795. "style": {
  9796. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9797. },
  9798. "name": "思维导图",
  9799. "forms": _formdiv,
  9800. "click": function () {
  9801. U.MD.D.I.openApplication(str, obj, info);
  9802. }
  9803. }
  9804. break;
  9805. case "doc":
  9806. aTool = 6;
  9807. _iframe = $$("iframe", {
  9808. "frameborder": "no",
  9809. "border": "0",
  9810. "scrolling ": "no",
  9811. "style": {
  9812. "cssText": "border:0;width:100%;height:100%"
  9813. },
  9814. "src": "/Office/Word/WordEditArea.htm"
  9815. })
  9816. _box.appendChild(_iframe);
  9817. _box.appendChild(_jie);
  9818. _formdiv = new U.UF.UI.form(
  9819. "协同文档",
  9820. _box, {
  9821. "id": "docs" + cid + stage + task + tool,
  9822. "style": {
  9823. "width": "90%",
  9824. "height": "90%",
  9825. "overflow": 'hidden'
  9826. },
  9827. "onresize": function () { }
  9828. }, {
  9829. closecallback: function () { }
  9830. }, {
  9831. "style": {
  9832. "height": "36px"
  9833. }
  9834. }).form; //创建窗体
  9835. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9836. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9837. })
  9838. _taskbar = {
  9839. "id": str + _formdiv.id,
  9840. "style": {
  9841. "backgroundImage": "url(/img/icon/doc.png)"
  9842. },
  9843. "name": "协同文档",
  9844. "forms": _formdiv,
  9845. "click": function () {
  9846. U.MD.D.I.openApplication(str, obj, info);
  9847. }
  9848. }
  9849. break;
  9850. }
  9851. const script1 = document.createElement("script");
  9852. script1.type = "text/javascript";
  9853. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9854. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9855. const script2 = document.createElement("script");
  9856. script2.type = "text/javascript";
  9857. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9858. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9859. const script3 = document.createElement("script");
  9860. script3.type = "text/javascript";
  9861. script3.charset = "UTF-8";
  9862. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9863. const script4 = document.createElement("script");
  9864. script4.type = "text/javascript";
  9865. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9866. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9867. if (_iframe) {
  9868. if (str == 'doc') {
  9869. _iframe = _formdiv.querySelector('iframe')
  9870. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9871. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9872. _iframe.contentWindow.document.body.appendChild(script1);
  9873. _iframe.contentWindow.document.body.appendChild(script2);
  9874. // _iframe.contentWindow.document.body.appendChild(script3);
  9875. _iframe.contentWindow.document.body.appendChild(script4);
  9876. })
  9877. if (onloadListener) {
  9878. _iframe.contentDocument.location.reload()
  9879. } else {
  9880. _iframe.contentDocument.location.reload()
  9881. }
  9882. } else if (str == 'mind') {
  9883. _iframe = _formdiv.querySelector('iframe')
  9884. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9885. _iframe.contentWindow.document.body.appendChild(script1);
  9886. _iframe.contentWindow.document.body.appendChild(script2);
  9887. _iframe.contentWindow.document.body.appendChild(script4);
  9888. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9889. })
  9890. if (onloadListener) {
  9891. _iframe.contentDocument.location.reload()
  9892. } else {
  9893. _iframe.contentDocument.location.reload()
  9894. }
  9895. } else {
  9896. _iframe.onload = () => {
  9897. _iframe.contentWindow.document.body.appendChild(script1);
  9898. _iframe.contentWindow.document.body.appendChild(script2);
  9899. // _iframe.contentWindow.document.body.appendChild(script3);
  9900. _iframe.contentWindow.document.body.appendChild(script4);
  9901. };
  9902. }
  9903. _jie.onclick = async () => {
  9904. let text = ''
  9905. if (aTool == 6) {
  9906. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9907. } else if (aTool == 3) {
  9908. text = await U.MD.D.I.getEditorContent(_iframe);
  9909. }
  9910. _loading.style.display = 'flex'
  9911. console.log(_loading);
  9912. var _ajs = _iframe.contentWindow.document.createElement("script");
  9913. _ajs.type = "text/javascript";
  9914. _ajs.innerHTML =
  9915. // 'console.log(' + _loading + ');\n' +
  9916. 'var _js = document.createElement("script");\n' +
  9917. '_js.type="text/javascript";\n' +
  9918. '_js.charset="UTF-8";\n' +
  9919. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9920. "_js.onload = function(){\n" +
  9921. ' var a = document.getElementsByTagName("img")\n' +
  9922. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9923. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9924. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9925. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9926. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9927. "beforeUpload_shishi(file," +
  9928. "'" +
  9929. _userid +
  9930. "'" +
  9931. ", " +
  9932. "'" +
  9933. _cid +
  9934. "'" +
  9935. ", " +
  9936. "'" +
  9937. _stage +
  9938. "'" +
  9939. ", " +
  9940. "'" +
  9941. _task +
  9942. "'" +
  9943. ", " +
  9944. "'" +
  9945. _tool +
  9946. "'" +
  9947. ", " +
  9948. "'" +
  9949. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9950. "'" +
  9951. ", " +
  9952. "'" +
  9953. aTool +
  9954. "'" +
  9955. ", " +
  9956. "`" +
  9957. text +
  9958. "`" +
  9959. ")\n" +
  9960. " });\n" +
  9961. "}\n" +
  9962. "document.head.appendChild(_js);\n";
  9963. _iframe.contentWindow.document.head.appendChild(_ajs);
  9964. }
  9965. }
  9966. //U.MD.D.I.openClick(str);
  9967. //如果有任务栏信息
  9968. // if (_taskbar) {
  9969. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9970. // }
  9971. }
  9972. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9973. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9974. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9975. _userinfo = US.userInfo, //登录用户信息
  9976. _userid = US.userInfo.userid //登录用户id
  9977. let _iframe;
  9978. let _cid = cid,
  9979. _stage = stage,
  9980. _task = task,
  9981. _tool = tool;
  9982. var _jie = $$("div", {
  9983. "style": {
  9984. "position": "absolute",
  9985. "bottom": "50px",
  9986. "right": "50px",
  9987. "zIndex": "9999",
  9988. "backgroundColor": "#2268bc",
  9989. "color": "#fff",
  9990. "padding": "12px 20px",
  9991. "cursor": "pointer",
  9992. "borderRadius": "4px",
  9993. },
  9994. "innerHTML": "确认并提交"
  9995. })
  9996. let aTool = ''
  9997. let _loading = document.createElement('div')
  9998. _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;"
  9999. // _loading.id = "";
  10000. let _lchild = document.createElement('div')
  10001. let _limg = document.createElement('img')
  10002. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10003. _limg.style = "width: 26px;margin-right: 10px;"
  10004. _lchild.appendChild(_limg)
  10005. let _lspan = document.createElement('span')
  10006. _lspan.innerHTML = "上传中..."
  10007. _lchild.appendChild(_lspan)
  10008. _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%);"
  10009. _loading.appendChild(_lchild)
  10010. var _box = $$('div', {
  10011. "style": {
  10012. "position": "relative",
  10013. "width": "100%",
  10014. "height": "100%",
  10015. },
  10016. })
  10017. _box.appendChild(_loading)
  10018. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10019. switch (str) {
  10020. case "whiteboard":
  10021. aTool = 1;
  10022. _iframe = $$("iframe", {
  10023. "frameborder": "no",
  10024. "border": "0",
  10025. "scrolling ": "no",
  10026. "style": {
  10027. "cssText": "border:0;width:100%;height:100%"
  10028. },
  10029. "src": "https://beta.iwb.cocorobo.cn/"
  10030. })
  10031. _box.appendChild(_iframe);
  10032. _box.appendChild(_jie);
  10033. _formdiv = new U.UF.UI.form(
  10034. "电子白板",
  10035. _box, {
  10036. "id": "whiteboards" + cid + stage + task + tool,
  10037. "style": {
  10038. "width": "90%",
  10039. "height": "90%",
  10040. "overflow": 'hidden'
  10041. },
  10042. "onresize": function () { }
  10043. }, {
  10044. closecallback: function () { }
  10045. }, {
  10046. "style": {
  10047. "height": "36px"
  10048. }
  10049. }).form; //创建窗体
  10050. _taskbar = {
  10051. "id": str + _formdiv.id,
  10052. "style": {
  10053. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10054. },
  10055. "name": "电子白板",
  10056. "forms": _formdiv,
  10057. "click": function () {
  10058. U.MD.D.I.openApplication(str, obj, info);
  10059. }
  10060. }
  10061. break;
  10062. case "mind":
  10063. aTool = 3;
  10064. _iframe = $$("iframe", {
  10065. "frameborder": "no",
  10066. "border": "0",
  10067. "scrolling ": "no",
  10068. "style": {
  10069. "cssText": "border:0;width:100%;height:100%"
  10070. },
  10071. "src": "/kityminder-editor/dist/index.html"
  10072. });
  10073. _box.appendChild(_iframe);
  10074. _box.appendChild(_jie);
  10075. _formdiv = new U.UF.UI.form(
  10076. "思维导图",
  10077. _box, { //"/jsmind/example/demo.html"
  10078. "id": "minds" + cid + stage + task + tool,
  10079. "style": {
  10080. "width": "90%",
  10081. "height": "90%",
  10082. "overflow": 'hidden'
  10083. },
  10084. "onresize": function () { }
  10085. }, {
  10086. closecallback: function () { }
  10087. }, {
  10088. "style": {
  10089. "height": "36px"
  10090. }
  10091. }).form; //创建窗体
  10092. _taskbar = {
  10093. "id": str + _formdiv.id,
  10094. "style": {
  10095. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10096. },
  10097. "name": "思维导图",
  10098. "forms": _formdiv,
  10099. "click": function () {
  10100. U.MD.D.I.openApplication(str, obj, info);
  10101. }
  10102. }
  10103. break;
  10104. case "doc":
  10105. aTool = 6;
  10106. _iframe = $$("iframe", {
  10107. "frameborder": "no",
  10108. "border": "0",
  10109. "scrolling ": "no",
  10110. "style": {
  10111. "cssText": "border:0;width:100%;height:100%"
  10112. },
  10113. "src": "/Office/Word/WordEditArea.htm"
  10114. })
  10115. _box.appendChild(_iframe);
  10116. _box.appendChild(_jie);
  10117. _formdiv = new U.UF.UI.form(
  10118. "协同文档",
  10119. _box, {
  10120. "id": "docs" + cid + stage + task + tool,
  10121. "style": {
  10122. "width": "90%",
  10123. "height": "90%",
  10124. "overflow": 'hidden'
  10125. },
  10126. "onresize": function () { }
  10127. }, {
  10128. closecallback: function () { }
  10129. }, {
  10130. "style": {
  10131. "height": "36px"
  10132. }
  10133. }).form; //创建窗体
  10134. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10135. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10136. })
  10137. _taskbar = {
  10138. "id": str + _formdiv.id,
  10139. "style": {
  10140. "backgroundImage": "url(/img/icon/doc.png)"
  10141. },
  10142. "name": "协同文档",
  10143. "forms": _formdiv,
  10144. "click": function () {
  10145. U.MD.D.I.openApplication(str, obj, info);
  10146. }
  10147. }
  10148. break;
  10149. }
  10150. const script1 = document.createElement("script");
  10151. script1.type = "text/javascript";
  10152. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10153. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10154. const script2 = document.createElement("script");
  10155. script2.type = "text/javascript";
  10156. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10157. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10158. const script3 = document.createElement("script");
  10159. script3.type = "text/javascript";
  10160. script3.charset = "UTF-8";
  10161. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10162. const script4 = document.createElement("script");
  10163. script4.type = "text/javascript";
  10164. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10165. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10166. if (_iframe) {
  10167. if (str == 'doc') {
  10168. _iframe = _formdiv.querySelector('iframe')
  10169. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10170. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10171. _iframe.contentWindow.document.body.appendChild(script1);
  10172. _iframe.contentWindow.document.body.appendChild(script2);
  10173. // _iframe.contentWindow.document.body.appendChild(script3);
  10174. _iframe.contentWindow.document.body.appendChild(script4);
  10175. })
  10176. if (onloadListener) {
  10177. _iframe.contentDocument.location.reload()
  10178. } else {
  10179. _iframe.contentDocument.location.reload()
  10180. }
  10181. } else if (str == 'mind') {
  10182. _iframe = _formdiv.querySelector('iframe')
  10183. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10184. _iframe.contentWindow.document.body.appendChild(script1);
  10185. _iframe.contentWindow.document.body.appendChild(script2);
  10186. _iframe.contentWindow.document.body.appendChild(script4);
  10187. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10188. })
  10189. if (onloadListener) {
  10190. _iframe.contentDocument.location.reload()
  10191. } else {
  10192. _iframe.contentDocument.location.reload()
  10193. }
  10194. } else {
  10195. _iframe.onload = () => {
  10196. _iframe.contentWindow.document.body.appendChild(script1);
  10197. _iframe.contentWindow.document.body.appendChild(script2);
  10198. // _iframe.contentWindow.document.body.appendChild(script3);
  10199. _iframe.contentWindow.document.body.appendChild(script4);
  10200. };
  10201. }
  10202. _jie.onclick = async () => {
  10203. let text = ''
  10204. if (aTool == 6) {
  10205. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10206. } else if (aTool == 3) {
  10207. text = await U.MD.D.I.getEditorContent(_iframe);
  10208. }
  10209. _loading.style.display = 'flex'
  10210. console.log(_loading);
  10211. var _ajs = _iframe.contentWindow.document.createElement("script");
  10212. _ajs.type = "text/javascript";
  10213. _ajs.innerHTML =
  10214. // 'console.log(' + _loading + ');\n' +
  10215. 'var _js = document.createElement("script");\n' +
  10216. '_js.type="text/javascript";\n' +
  10217. '_js.charset="UTF-8";\n' +
  10218. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10219. "_js.onload = function(){\n" +
  10220. ' var a = document.getElementsByTagName("img")\n' +
  10221. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10222. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10223. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10224. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10225. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10226. "beforeUpload_shishi(file," +
  10227. "'" +
  10228. _userid +
  10229. "'" +
  10230. ", " +
  10231. "'" +
  10232. _cid +
  10233. "'" +
  10234. ", " +
  10235. "'" +
  10236. _stage +
  10237. "'" +
  10238. ", " +
  10239. "'" +
  10240. _task +
  10241. "'" +
  10242. ", " +
  10243. "'" +
  10244. _tool +
  10245. "'" +
  10246. ", " +
  10247. "'" +
  10248. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10249. "'" +
  10250. ", " +
  10251. "'" +
  10252. aTool +
  10253. "'" +
  10254. ", " +
  10255. "`" +
  10256. text +
  10257. "`" +
  10258. ")\n" +
  10259. " });\n" +
  10260. "}\n" +
  10261. "document.head.appendChild(_js);\n";
  10262. _iframe.contentWindow.document.head.appendChild(_ajs);
  10263. }
  10264. }
  10265. //U.MD.D.I.openClick(str);
  10266. //如果有任务栏信息
  10267. // if (_taskbar) {
  10268. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10269. // }
  10270. }
  10271. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10272. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10273. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10274. _userinfo = US.userInfo, //登录用户信息
  10275. _userid = US.userInfo.userid //登录用户id
  10276. let _iframe;
  10277. let _cid = cid,
  10278. _stage = stage,
  10279. _task = task,
  10280. _tool = tool;
  10281. var _jie = $$("div", {
  10282. "style": {
  10283. "position": "absolute",
  10284. "bottom": "50px",
  10285. "right": "50px",
  10286. "zIndex": "9999",
  10287. "backgroundColor": "#2268bc",
  10288. "color": "#fff",
  10289. "padding": "12px 20px",
  10290. "cursor": "pointer",
  10291. "borderRadius": "4px",
  10292. },
  10293. "innerHTML": "上传模板"
  10294. })
  10295. let aTool = ''
  10296. let _loading = document.createElement('div')
  10297. _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;"
  10298. // _loading.id = "";
  10299. let _lchild = document.createElement('div')
  10300. let _limg = document.createElement('img')
  10301. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10302. _limg.style = "width: 26px;margin-right: 10px;"
  10303. _lchild.appendChild(_limg)
  10304. let _lspan = document.createElement('span')
  10305. _lspan.innerHTML = "上传中..."
  10306. _lchild.appendChild(_lspan)
  10307. _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%);"
  10308. _loading.appendChild(_lchild)
  10309. var _box = $$('div', {
  10310. "style": {
  10311. "position": "relative",
  10312. "width": "100%",
  10313. "height": "100%",
  10314. },
  10315. })
  10316. _box.appendChild(_loading)
  10317. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10318. switch (str) {
  10319. case "whiteboard":
  10320. aTool = 1;
  10321. _iframe = $$("iframe", {
  10322. "frameborder": "no",
  10323. "border": "0",
  10324. "scrolling ": "no",
  10325. "style": {
  10326. "cssText": "border:0;width:100%;height:100%"
  10327. },
  10328. "src": "https://beta.iwb.cocorobo.cn/"
  10329. })
  10330. _box.appendChild(_iframe);
  10331. _box.appendChild(_jie);
  10332. _formdiv = new U.UF.UI.form(
  10333. "电子白板",
  10334. _box, {
  10335. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10336. "style": {
  10337. "width": "90%",
  10338. "height": "90%",
  10339. "overflow": 'hidden'
  10340. },
  10341. "onresize": function () { }
  10342. }, {
  10343. closecallback: function () { }
  10344. }, {
  10345. "style": {
  10346. "height": "36px"
  10347. }
  10348. }).form; //创建窗体
  10349. _taskbar = {
  10350. "id": str + _formdiv.id,
  10351. "style": {
  10352. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10353. },
  10354. "name": "电子白板",
  10355. "forms": _formdiv,
  10356. "click": function () {
  10357. U.MD.D.I.openApplication(str, obj, info);
  10358. }
  10359. }
  10360. break;
  10361. case "mind":
  10362. aTool = 3;
  10363. _iframe = $$("iframe", {
  10364. "frameborder": "no",
  10365. "border": "0",
  10366. "scrolling ": "no",
  10367. "style": {
  10368. "cssText": "border:0;width:100%;height:100%"
  10369. },
  10370. "src": "/kityminder-editor/dist/index.html"
  10371. });
  10372. _box.appendChild(_iframe);
  10373. _box.appendChild(_jie);
  10374. _formdiv = new U.UF.UI.form(
  10375. "思维导图",
  10376. _box, { //"/jsmind/example/demo.html"
  10377. "id": "minds_Yu" + cid + stage + task + tool,
  10378. "style": {
  10379. "width": "90%",
  10380. "height": "90%",
  10381. "overflow": 'hidden'
  10382. },
  10383. "onresize": function () { }
  10384. }, {
  10385. closecallback: function () { }
  10386. }, {
  10387. "style": {
  10388. "height": "36px"
  10389. }
  10390. }).form; //创建窗体
  10391. _taskbar = {
  10392. "id": str + _formdiv.id,
  10393. "style": {
  10394. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10395. },
  10396. "name": "思维导图",
  10397. "forms": _formdiv,
  10398. "click": function () {
  10399. U.MD.D.I.openApplication(str, obj, info);
  10400. }
  10401. }
  10402. break;
  10403. case "doc":
  10404. aTool = 6;
  10405. _iframe = $$("iframe", {
  10406. "frameborder": "no",
  10407. "border": "0",
  10408. "scrolling ": "no",
  10409. "style": {
  10410. "cssText": "border:0;width:100%;height:100%"
  10411. },
  10412. "src": "/Office/Word/WordEditArea.htm"
  10413. })
  10414. _box.appendChild(_iframe);
  10415. _box.appendChild(_jie);
  10416. _formdiv = new U.UF.UI.form(
  10417. "协同文档",
  10418. _box, {
  10419. "id": "docs_Yu" + cid + stage + task + tool,
  10420. "style": {
  10421. "width": "90%",
  10422. "height": "90%",
  10423. "overflow": 'hidden'
  10424. },
  10425. "onresize": function () { }
  10426. }, {
  10427. closecallback: function () { }
  10428. }, {
  10429. "style": {
  10430. "height": "36px"
  10431. }
  10432. }).form; //创建窗体
  10433. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10434. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10435. })
  10436. _taskbar = {
  10437. "id": str + _formdiv.id,
  10438. "style": {
  10439. "backgroundImage": "url(/img/icon/doc.png)"
  10440. },
  10441. "name": "协同文档",
  10442. "forms": _formdiv,
  10443. "click": function () {
  10444. U.MD.D.I.openApplication(str, obj, info);
  10445. }
  10446. }
  10447. break;
  10448. case "CocoPi":
  10449. aTool = 57;
  10450. _iframe = $$("iframe", {
  10451. "allowpaymentrequest": "allowpaymentrequest",
  10452. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10453. "webkitallowfullscreen": "",
  10454. "mozallowfullscreen": "",
  10455. "frameborder": "no",
  10456. "border": "0",
  10457. "scrolling ": "no",
  10458. "style": {
  10459. "cssText": "border:0;width:100%;height:100%"
  10460. },
  10461. "src": "https://pi.cocorobo.cn/"
  10462. })
  10463. _box.appendChild(_iframe);
  10464. _box.appendChild(_jie);
  10465. _formdiv = new U.UF.UI.form(
  10466. "CocoPi",
  10467. _box, {
  10468. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10469. "style": {
  10470. "width": "90%",
  10471. "height": "90%",
  10472. "overflow": 'hidden'
  10473. },
  10474. "onresize": function () { }
  10475. }, {
  10476. closecallback: function () { }
  10477. }, {
  10478. "style": {
  10479. "height": "36px"
  10480. }
  10481. }).form; //创建窗体
  10482. _taskbar = {
  10483. "id": str + _formdiv.id,
  10484. "style": {
  10485. "backgroundImage": "url(/img/icon/cocopi.png)"
  10486. },
  10487. "name": "CocoPi",
  10488. "forms": _formdiv,
  10489. "click": function () {
  10490. U.MD.D.I.openApplication(str, obj, info);
  10491. }
  10492. }
  10493. break;
  10494. }
  10495. if (_iframe) {
  10496. if (str == 'doc') {
  10497. _iframe = _formdiv.querySelector('iframe')
  10498. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10499. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10500. })
  10501. if (onloadListener) {
  10502. _iframe.contentDocument.location.reload()
  10503. } else {
  10504. _iframe.contentDocument.location.reload()
  10505. }
  10506. } else if (str == 'mind') {
  10507. _iframe = _formdiv.querySelector('iframe')
  10508. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10509. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10510. })
  10511. if (onloadListener) {
  10512. _iframe.contentDocument.location.reload()
  10513. } else {
  10514. _iframe.contentDocument.location.reload()
  10515. }
  10516. } else if (str == 'whiteboard') {
  10517. _iframe = _formdiv.querySelector('iframe')
  10518. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10519. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10520. })
  10521. // if (onloadListener) {
  10522. // try {
  10523. // _iframe.src += "?cocorobo="+new Date().getTime()
  10524. // _iframe.contentWindow.document.location.reload()
  10525. // } catch (error) {
  10526. // }
  10527. // } else {
  10528. // _iframe.contentDocument.location.reload()
  10529. // }
  10530. } else if (str == 'CocoPi') {
  10531. _iframe = _formdiv.querySelector('iframe')
  10532. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10533. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10534. })
  10535. if (onloadListener) {
  10536. _iframe.contentDocument.location.reload()
  10537. } else {
  10538. _iframe.contentDocument.location.reload()
  10539. }
  10540. } else {
  10541. _iframe.onload = () => { };
  10542. }
  10543. _jie.onclick = async () => {
  10544. let text = ''
  10545. let type = '2'
  10546. if (aTool == 1) {
  10547. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10548. type = '3'
  10549. } else if (aTool == 6) {
  10550. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10551. type = '1'
  10552. } else if (aTool == 3) {
  10553. text = await U.MD.D.I.getEditorContent(_iframe);
  10554. type = '2'
  10555. } else if (aTool == 57) {
  10556. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10557. type = '4'
  10558. }
  10559. _loading.style.display = 'flex'
  10560. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10561. }
  10562. }
  10563. //U.MD.D.I.openClick(str);
  10564. //如果有任务栏信息
  10565. // if (_taskbar) {
  10566. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10567. // }
  10568. }
  10569. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10570. var xmlhttp;
  10571. var Mac, Sn, DeviceId
  10572. if (window.XMLHttpRequest) {
  10573. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10574. xmlhttp = new XMLHttpRequest();
  10575. } else {
  10576. // IE6, IE5 浏览器执行代码
  10577. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10578. }
  10579. xmlhttp.onreadystatechange = function () {
  10580. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10581. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10582. // resolve(res.value[0][0].text);
  10583. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10584. }
  10585. }
  10586. }
  10587. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10588. xmlhttp.send();
  10589. }
  10590. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10591. var xmlhttp;
  10592. var Mac, Sn, DeviceId
  10593. if (window.XMLHttpRequest) {
  10594. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10595. xmlhttp = new XMLHttpRequest();
  10596. } else {
  10597. // IE6, IE5 浏览器执行代码
  10598. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10599. }
  10600. xmlhttp.onreadystatechange = function () {
  10601. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10602. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10603. // resolve(res.value[0][0].text);
  10604. if (type == '2') {
  10605. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10606. } else if (type == '3') {
  10607. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10608. } else if (type == '4') {
  10609. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10610. }
  10611. } else {
  10612. if (type == '2') {
  10613. iframe.contentWindow.editor.minder.importData('json', '')
  10614. } else if (type == '3') {
  10615. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10616. } else if (type == '4') {
  10617. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10618. }
  10619. }
  10620. }
  10621. }
  10622. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10623. xmlhttp.send();
  10624. }
  10625. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10626. var xmlhttp;
  10627. var Mac, Sn, DeviceId
  10628. if (window.XMLHttpRequest) {
  10629. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10630. xmlhttp = new XMLHttpRequest();
  10631. } else {
  10632. // IE6, IE5 浏览器执行代码
  10633. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10634. }
  10635. xmlhttp.onreadystatechange = function () {
  10636. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10637. if (xmlhttp.response) {
  10638. // resolve(res.value[0][0].text);
  10639. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10640. // $(fileInput).val('');
  10641. // });
  10642. span.innerHTML = '上传成功'
  10643. setTimeout(() => {
  10644. loading.style.display = 'none'
  10645. }, 1000);
  10646. }
  10647. }
  10648. }
  10649. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10650. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10651. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10652. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10653. // 设置请求头,表示请求体的编码格式
  10654. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10655. // 设置请求体,使用url-encoded格式的数据
  10656. }
  10657. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10658. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10659. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10660. _userinfo = US.userInfo, //登录用户信息
  10661. _userid = US.userInfo.userid //登录用户id
  10662. let _iframe;
  10663. let _cid = cid,
  10664. _stage = stage,
  10665. _task = task,
  10666. _tool = tool;
  10667. var _jie = $$("div", {
  10668. "style": {
  10669. "position": "absolute",
  10670. "bottom": "50px",
  10671. "right": "50px",
  10672. "zIndex": "9999",
  10673. "backgroundColor": "#2268bc",
  10674. "color": "#fff",
  10675. "padding": "12px 20px",
  10676. "cursor": "pointer",
  10677. "borderRadius": "4px",
  10678. },
  10679. "innerHTML": "提交作业"
  10680. })
  10681. let aTool = ''
  10682. let _loading = document.createElement('div')
  10683. _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;"
  10684. // _loading.id = "";
  10685. let _lchild = document.createElement('div')
  10686. let _limg = document.createElement('img')
  10687. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10688. _limg.style = "width: 26px;margin-right: 10px;"
  10689. _lchild.appendChild(_limg)
  10690. let _lspan = document.createElement('span')
  10691. _lspan.innerHTML = "上传中..."
  10692. _lchild.appendChild(_lspan)
  10693. _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%);"
  10694. _loading.appendChild(_lchild)
  10695. var _box = $$('div', {
  10696. "style": {
  10697. "position": "relative",
  10698. "width": "100%",
  10699. "height": "100%",
  10700. },
  10701. })
  10702. _box.appendChild(_loading)
  10703. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10704. switch (str) {
  10705. case "CocoPi":
  10706. aTool = 57;
  10707. _iframe = $$("iframe", {
  10708. "allowpaymentrequest": "allowpaymentrequest",
  10709. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10710. "webkitallowfullscreen": "",
  10711. "mozallowfullscreen": "",
  10712. "frameborder": "no",
  10713. "border": "0",
  10714. "scrolling ": "no",
  10715. "style": {
  10716. "cssText": "border:0;width:100%;height:100%"
  10717. },
  10718. "src": "https://pi.cocorobo.cn/"
  10719. })
  10720. _box.appendChild(_iframe);
  10721. _box.appendChild(_jie);
  10722. _formdiv = new U.UF.UI.form(
  10723. "CocoPi",
  10724. _box, {
  10725. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10726. "style": {
  10727. "width": "90%",
  10728. "height": "90%",
  10729. "overflow": 'hidden'
  10730. },
  10731. "onresize": function () { }
  10732. }, {
  10733. closecallback: function () { }
  10734. }, {
  10735. "style": {
  10736. "height": "36px"
  10737. }
  10738. }).form; //创建窗体
  10739. _taskbar = {
  10740. "id": str + _formdiv.id,
  10741. "style": {
  10742. "backgroundImage": "url(/img/icon/cocopi.png)"
  10743. },
  10744. "name": "CocoPi",
  10745. "forms": _formdiv,
  10746. "click": function () {
  10747. U.MD.D.I.openApplication(str, obj, info);
  10748. }
  10749. }
  10750. break;
  10751. }
  10752. if (_iframe) {
  10753. if (str == 'CocoPi') {
  10754. _iframe = _formdiv.querySelector('iframe')
  10755. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10756. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10757. })
  10758. if (onloadListener) {
  10759. _iframe.contentDocument.location.reload()
  10760. } else {
  10761. _iframe.contentDocument.location.reload()
  10762. }
  10763. }
  10764. _jie.onclick = async () => {
  10765. let text = ''
  10766. if (aTool == 57) {
  10767. text = _iframe.contentWindow.getLoadXmlStr()
  10768. }
  10769. _loading.style.display = 'flex'
  10770. console.log(_loading);
  10771. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10772. _loading.style.display = 'none'
  10773. let _div = document.createElement('div')
  10774. _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;"
  10775. let _inner = document.createElement('div')
  10776. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10777. _inner.innerHTML = "上传成功"
  10778. _div.appendChild(_inner)
  10779. _iframe.contentWindow.window.document.body.appendChild(_div)
  10780. _div.onclick = () => {
  10781. _iframe.contentWindow.window.document.body.removeChild(_div)
  10782. }
  10783. setTimeout(() => {
  10784. _iframe.contentWindow.window.document.body.removeChild(_div)
  10785. }, 1000);
  10786. }, [], { "type": "POST", "withCredentials": true });
  10787. }
  10788. }
  10789. }
  10790. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10791. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10792. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10793. _userid = student.userid, //登录用户id
  10794. _username = student.student //用户名字
  10795. let _iframe;
  10796. let _cid = cid,
  10797. _stage = stage,
  10798. _task = task,
  10799. _tool = tool;
  10800. var _jie = $$("div", {
  10801. "style": {
  10802. "position": "absolute",
  10803. "bottom": "50px",
  10804. "right": "50px",
  10805. "zIndex": "9999",
  10806. "backgroundColor": "#2268bc",
  10807. "color": "#fff",
  10808. "padding": "12px 20px",
  10809. "cursor": "pointer",
  10810. "borderRadius": "4px",
  10811. },
  10812. "innerHTML": "提交作业"
  10813. })
  10814. let aTool = ''
  10815. let _loading = document.createElement('div')
  10816. _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;"
  10817. // _loading.id = "";
  10818. let _lchild = document.createElement('div')
  10819. let _limg = document.createElement('img')
  10820. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10821. _limg.style = "width: 26px;margin-right: 10px;"
  10822. _lchild.appendChild(_limg)
  10823. let _lspan = document.createElement('span')
  10824. _lspan.innerHTML = "上传中..."
  10825. _lchild.appendChild(_lspan)
  10826. _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%);"
  10827. _loading.appendChild(_lchild)
  10828. var _box = $$('div', {
  10829. "style": {
  10830. "position": "relative",
  10831. "width": "100%",
  10832. "height": "100%",
  10833. },
  10834. })
  10835. _box.appendChild(_loading)
  10836. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10837. switch (str) {
  10838. case "CocoPi":
  10839. aTool = 57;
  10840. _iframe = $$("iframe", {
  10841. "allowpaymentrequest": "allowpaymentrequest",
  10842. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10843. "webkitallowfullscreen": "",
  10844. "mozallowfullscreen": "",
  10845. "frameborder": "no",
  10846. "border": "0",
  10847. "scrolling ": "no",
  10848. "style": {
  10849. "cssText": "border:0;width:100%;height:100%"
  10850. },
  10851. "src": "https://pi.cocorobo.cn/"
  10852. })
  10853. _box.appendChild(_iframe);
  10854. _box.appendChild(_jie);
  10855. _formdiv = new U.UF.UI.form(
  10856. "CocoPi-" + _username,
  10857. _box, {
  10858. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10859. "style": {
  10860. "width": "90%",
  10861. "height": "90%",
  10862. "overflow": 'hidden'
  10863. },
  10864. "onresize": function () { }
  10865. }, {
  10866. closecallback: function () { }
  10867. }, {
  10868. "style": {
  10869. "height": "36px"
  10870. }
  10871. }).form; //创建窗体
  10872. _taskbar = {
  10873. "id": str + _formdiv.id,
  10874. "style": {
  10875. "backgroundImage": "url(/img/icon/cocopi.png)"
  10876. },
  10877. "name": "CocoPi",
  10878. "forms": _formdiv,
  10879. "click": function () {
  10880. U.MD.D.I.openApplication(str, obj, info);
  10881. }
  10882. }
  10883. break;
  10884. }
  10885. if (_iframe) {
  10886. if (str == 'CocoPi') {
  10887. _iframe = _formdiv.querySelector('iframe')
  10888. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10889. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10890. })
  10891. if (onloadListener) {
  10892. _iframe.contentDocument.location.reload()
  10893. } else {
  10894. _iframe.contentDocument.location.reload()
  10895. }
  10896. }
  10897. _jie.onclick = async () => {
  10898. let text = ''
  10899. if (aTool == 57) {
  10900. text = _iframe.contentWindow.getLoadXmlStr()
  10901. }
  10902. _loading.style.display = 'flex'
  10903. console.log(_loading);
  10904. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10905. _loading.style.display = 'none'
  10906. let _div = document.createElement('div')
  10907. _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;"
  10908. let _inner = document.createElement('div')
  10909. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10910. _inner.innerHTML = "上传成功"
  10911. _div.appendChild(_inner)
  10912. _iframe.contentWindow.window.document.body.appendChild(_div)
  10913. _div.onclick = () => {
  10914. _iframe.contentWindow.window.document.body.removeChild(_div)
  10915. }
  10916. setTimeout(() => {
  10917. _iframe.contentWindow.window.document.body.removeChild(_div)
  10918. }, 1000);
  10919. }, [], { "type": "POST", "withCredentials": true });
  10920. }
  10921. }
  10922. }
  10923. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10924. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10925. if (res.value[0].length > 0) {
  10926. if (atool == 57) {
  10927. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10928. }
  10929. } else {
  10930. if (atool == 57) {
  10931. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10932. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10933. }
  10934. }
  10935. }, [], { "type": "POST", "withCredentials": true });
  10936. }
  10937. U.MD.D.addOp = function(text,type,time){
  10938. var userInfo = US.userInfo;
  10939. if(Object.keys(userInfo).length !== 0){
  10940. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10941. }, [], { "type": "POST", "withCredentials": true });
  10942. }
  10943. }