DeskTop.js 671 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1379. ];
  1380. //nsfx
  1381. U.MD.D.I.nsfxStudentDeskIcon = [
  1382. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1385. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1386. ];
  1387. //stia
  1388. U.MD.D.I.stiaTeacherDeskIcon = [
  1389. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1390. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1391. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1392. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1393. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1398. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1399. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1400. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1401. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1402. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1403. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1404. ];
  1405. //stia
  1406. U.MD.D.I.stiaStudentDeskIcon = [
  1407. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1408. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1409. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1411. ];
  1412. //szdjg
  1413. U.MD.D.I.szdjgTeacherDeskIcon = [
  1414. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1415. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1416. ];
  1417. //szdjg
  1418. U.MD.D.I.szdjgStudentDeskIcon = [
  1419. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1420. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1423. ];
  1424. //010607
  1425. U.MD.D.I.x010607TeacherDeskIcon = [
  1426. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1427. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1428. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1429. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1430. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1431. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1432. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1433. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1434. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1435. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1436. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1437. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1438. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1439. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1440. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1441. ];
  1442. //010607
  1443. U.MD.D.I.x010607StudentDeskIcon = [
  1444. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1445. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1446. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1448. ];
  1449. //010608
  1450. U.MD.D.I.x010608TeacherDeskIcon = [
  1451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1458. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1459. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1460. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1461. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1462. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1463. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1464. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.x010608StudentDeskIcon = [
  1468. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1469. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1470. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1472. ];
  1473. //xhly
  1474. U.MD.D.I.xhlyTeacherDeskIcon = [
  1475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1476. ];
  1477. //010608
  1478. U.MD.D.I.xhlyStudentDeskIcon = [
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. ];
  1481. //北师大
  1482. U.MD.D.I.BSDNSteacherDeskIcon = [
  1483. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1484. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1485. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1486. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1487. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1490. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1491. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1493. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1494. ];
  1495. //北师大
  1496. U.MD.D.I.BSDNSstudentDeskIcon = [
  1497. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1498. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1499. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1500. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1501. ];
  1502. //CUHK_EDU
  1503. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1506. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1507. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1508. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1509. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1510. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1511. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1514. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1515. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1516. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1517. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1518. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1519. ];
  1520. //CUHK_EDU
  1521. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1522. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1523. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1524. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1525. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1526. ];
  1527. //010503
  1528. U.MD.D.I.x010503TeacherDeskIcon = [
  1529. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1530. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1531. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1532. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1533. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1534. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.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. //010503
  1540. U.MD.D.I.x010503StudentDeskIcon = [
  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. //SPROUT Lab
  1547. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1556. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1557. ];
  1558. //SPROUT Lab
  1559. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1560. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1564. ];
  1565. //010204
  1566. U.MD.D.I.x010204TeacherDeskIcon = [
  1567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. ];
  1570. //010204
  1571. U.MD.D.I.x010204StudentDeskIcon = [
  1572. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1573. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1574. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1576. ];
  1577. //trail
  1578. U.MD.D.I.trailTeacherDeskIcon = [
  1579. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1580. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1581. ];
  1582. //trail
  1583. U.MD.D.I.trailStudentDeskIcon = [
  1584. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1585. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1586. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1587. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1588. ];
  1589. //010504
  1590. U.MD.D.I.x010504TeacherDeskIcon = [
  1591. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1592. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1593. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1594. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1595. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1596. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1597. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1598. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1599. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1600. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1601. ];
  1602. //010504
  1603. U.MD.D.I.x010504StudentDeskIcon = [
  1604. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1605. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1606. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. ];
  1609. //SCNUET
  1610. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1611. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1612. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1616. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1617. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1618. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1619. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1621. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1622. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1623. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1624. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1625. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1626. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1627. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1628. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1629. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1630. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1631. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1632. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1633. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1634. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1635. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1636. ];
  1637. //SCNUET
  1638. U.MD.D.I.SCNUETAdminDeskIcon = [
  1639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1643. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1644. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1645. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1646. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1647. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1648. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1649. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1650. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1651. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1652. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1653. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1654. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1655. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1656. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1657. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1658. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1659. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1660. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1661. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1662. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1663. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1664. ];
  1665. //SCNUET
  1666. U.MD.D.I.SCNUETStudentDeskIcon = [
  1667. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1668. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1670. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1671. ];
  1672. //x020201
  1673. U.MD.D.I.x020201TeacherDeskIcon = [
  1674. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1675. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1678. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1679. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1680. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1681. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1683. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.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": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1687. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1688. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1690. ];
  1691. //x020201
  1692. U.MD.D.I.x020201AdminDeskIcon = [
  1693. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1694. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1695. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1696. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1697. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1698. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1701. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1702. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1704. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1705. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1706. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1707. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1708. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1709. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1710. ];
  1711. //020201
  1712. U.MD.D.I.x020201StudentDeskIcon = [
  1713. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1714. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1717. ];
  1718. //010611
  1719. U.MD.D.I.x010611TeacherDeskIcon = [
  1720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1726. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1727. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1728. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1729. ];
  1730. //010611
  1731. U.MD.D.I.x010611StudentDeskIcon = [
  1732. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1733. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1734. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1735. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1736. ];
  1737. //tianyuan
  1738. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1739. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1740. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1741. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1745. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1746. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1747. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1750. ];
  1751. //010611
  1752. U.MD.D.I.tianyuanStudentDeskIcon = [
  1753. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1754. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1755. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1757. ];
  1758. //320101
  1759. U.MD.D.I.x320101TeacherDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1763. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1764. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1765. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1766. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1767. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1768. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1769. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1770. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1771. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1772. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1773. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1774. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1775. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1776. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1777. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1778. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1779. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1780. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1781. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1782. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1783. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1784. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1785. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1786. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1787. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1788. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1789. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1790. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1791. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1792. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1793. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1794. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1795. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1796. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1797. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1798. ];
  1799. //320101
  1800. U.MD.D.I.x320101StudentDeskIcon = [
  1801. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1802. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1803. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1804. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1805. ];
  1806. //#region 桌面初始化a
  1807. /**
  1808. * 初始化桌面的起始函数
  1809. *
  1810. */
  1811. U.MD.D.I.init = function () {
  1812. if ($("#U_MD_D_K")[0]) {
  1813. //初始化桌面图标
  1814. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1815. // var clickUrl = ':12588/requestIp.php';
  1816. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1817. // U.MD.D.I.Ip = data;
  1818. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1819. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1820. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1821. // })
  1822. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1823. // })
  1824. }
  1825. }
  1826. /**
  1827. * 模式切换
  1828. *
  1829. */
  1830. U.MD.D.I.ModeCheck = function (type) {
  1831. if (US.Config.type == type) {
  1832. return
  1833. }
  1834. US.Config.type = type
  1835. $('.U_PBL_Check .active')[0].className = ''
  1836. if (type == 1) {
  1837. $('.U_PBL_Check div')[0].className = 'active'
  1838. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1839. } else {
  1840. $('.U_PBL_Check div')[1].className = 'active'
  1841. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1842. }
  1843. //初始化桌面图标
  1844. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1845. if (type == 2) {
  1846. U.MD.D.I.openApplication("project")
  1847. }
  1848. }
  1849. /**
  1850. * 隐藏任务栏
  1851. *
  1852. * @param {element} 桌面元素
  1853. */
  1854. U.MD.D.I.hiddenTaskbar = function (el) {
  1855. //任务栏位置变小
  1856. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1857. //桌面的位置变大
  1858. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1859. }
  1860. /**
  1861. * 隐藏任务栏
  1862. *
  1863. * @param {element} 桌面元素
  1864. */
  1865. U.MD.D.I.hiddenTaskbarout = function (el) {
  1866. //任务栏位置变小
  1867. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1868. //任务栏位置变化
  1869. U.selectEl(el).css({ "bottom": "-60px" });
  1870. //桌面的位置变大
  1871. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1872. }
  1873. }
  1874. /**
  1875. * 初始化打印桌面图标
  1876. *
  1877. * @param {element} 桌面元素
  1878. */
  1879. U.MD.D.I.initDesktopIcons = function (el, type) {
  1880. var i, //用于循环
  1881. _content, //桌面图标元素
  1882. _iconcontent, //桌面图标元素
  1883. _frag = $$("frag"), //定义一个碎片元素
  1884. _type = US.userInfo.type,
  1885. _org = US.userInfo.org,
  1886. _oid = US.userInfo.organizeid,
  1887. _role = US.userInfo.role,
  1888. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1889. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1890. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1891. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1892. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1893. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1894. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1895. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1896. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1897. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1898. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1899. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1900. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1901. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1902. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1903. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1904. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1905. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1906. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1907. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1908. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1909. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1910. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1911. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1912. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1913. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1914. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1915. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1916. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1917. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1918. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1919. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1920. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1921. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1922. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1923. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1924. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1925. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1926. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1927. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1928. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1929. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1930. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1931. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1932. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1933. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1934. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1935. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1936. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1937. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1938. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1939. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1940. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1941. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1942. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1943. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1944. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1945. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1946. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1947. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1948. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1949. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1950. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1951. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1952. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1953. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1954. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1955. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1956. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1957. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1958. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1959. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1960. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1961. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1962. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1963. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1964. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1965. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1966. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1967. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1968. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1969. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1970. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1971. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1972. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1973. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1974. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1975. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1976. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1977. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1978. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1979. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1980. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1981. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1982. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1983. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1984. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1985. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  1986. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  1987. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1988. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1989. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1990. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1991. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1992. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1993. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1994. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1995. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1996. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1997. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1998. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1999. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2000. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2001. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926'];
  2002. 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'];
  2003. //清楚桌面图标
  2004. el.innerHTML = "";
  2005. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2006. _teacherDesktopIconInfo.push(
  2007. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2008. { "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)" } },
  2009. )
  2010. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2011. }
  2012. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2013. _teacherDesktopIconInfo.push(
  2014. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2015. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2016. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2017. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2018. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2019. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2020. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2021. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2022. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2023. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2024. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2025. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2026. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2027. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2028. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2029. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2031. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2032. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2033. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2034. )
  2035. }
  2036. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2037. _teacherDesktopIconInfo.push(
  2038. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2039. )
  2040. }
  2041. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2042. // _teacherDesktopIconInfo.push(
  2043. // )
  2044. // }
  2045. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2046. _teacherDesktopIconInfo.push(
  2047. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2048. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2049. )
  2050. }
  2051. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2052. _teacherDesktopIconInfo.push(
  2053. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2057. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2058. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2059. )
  2060. _studentDesktopIconInfo.push(
  2061. )
  2062. }
  2063. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2064. _teacherDesktopIconInfo.push(
  2065. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2066. )
  2067. _studentDesktopIconInfo.push(
  2068. )
  2069. }
  2070. //010606 组织
  2071. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2072. _teacherDesktopIconInfo.push(
  2073. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2074. )
  2075. _studentDesktopIconInfo.push(
  2076. )
  2077. }
  2078. //麒麟二中 和 民新小学
  2079. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2080. _teacherDesktopIconInfo.push(
  2081. )
  2082. }
  2083. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2084. _teacherDesktopIconInfo.push(
  2085. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2086. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2087. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2088. )
  2089. }
  2090. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2091. _hkTeacherDeskIconInfo.push(
  2092. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2093. )
  2094. }
  2095. //北师大附中(010601)
  2096. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2097. // _teacherDesktopIconInfo.push(
  2098. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2099. // )
  2100. // _studentDesktopIconInfo.push(
  2101. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2102. // )
  2103. // }
  2104. //樂善堂余近卿中學
  2105. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2106. _teacherDesktopIconInfo.push(
  2107. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2108. )
  2109. }
  2110. // Education Artificial Intelligence
  2111. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2112. _teacherDesktopIconInfo.push(
  2113. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2114. )
  2115. }
  2116. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2117. _teacherDesktopIconInfo.push(
  2118. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2119. )
  2120. }
  2121. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2122. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2123. _teacherDesktopIconInfo.push(
  2124. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2126. )
  2127. }
  2128. //麒麟二中
  2129. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2130. _studentDesktopIconInfo.push(
  2131. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2132. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2133. )
  2134. }
  2135. //万科双语
  2136. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2137. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2138. if (el.Name == '项目管理') {
  2139. el.Name = 'PBL项目'
  2140. }
  2141. return el
  2142. })
  2143. _studentDesktopIconInfo3.push(
  2144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2145. )
  2146. }
  2147. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2148. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2149. return el.Name != '魔盒识字' && el.Name != '24点'
  2150. })
  2151. }
  2152. 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) {
  2153. _studentDesktopIconInfo.push(
  2154. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2155. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2156. )
  2157. }
  2158. //循环创建桌面图标
  2159. if (type == 1) {
  2160. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2161. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2162. _content = $$("div", {
  2163. className: "U_MD_D_KO",
  2164. "onmousedown": U.UF.C.closure(function (obj) {
  2165. //防止拖动图标即打开了桌面应用
  2166. U.MD.D.click(this, obj);
  2167. }, [_studentDesktopIconInfo[i]]),
  2168. "onclick": U.UF.C.closure(function (obj) {
  2169. //防止拖动图标即打开了桌面应用
  2170. U.MD.D.click(this, obj);
  2171. }, [_studentDesktopIconInfo[i]])
  2172. }, _frag); //
  2173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2176. }
  2177. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2178. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2179. _content = $$("div", {
  2180. className: "U_MD_D_KO",
  2181. "onmousedown": U.UF.C.closure(function (obj) {
  2182. //防止拖动图标即打开了桌面应用
  2183. U.MD.D.click(this, obj);
  2184. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2185. "onclick": U.UF.C.closure(function (obj) {
  2186. //防止拖动图标即打开了桌面应用
  2187. U.MD.D.click(this, obj);
  2188. }, [_hkZJLSStudentDeskIconInfo[i]])
  2189. }, _frag); //
  2190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2193. } //
  2194. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2195. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2196. _content = $$("div", {
  2197. className: "U_MD_D_KO",
  2198. "onmousedown": U.UF.C.closure(function (obj) {
  2199. //防止拖动图标即打开了桌面应用
  2200. U.MD.D.click(this, obj);
  2201. }, [_ytyStudentDeskIconInfo[i]]),
  2202. "onclick": U.UF.C.closure(function (obj) {
  2203. //防止拖动图标即打开了桌面应用
  2204. U.MD.D.click(this, obj);
  2205. }, [_ytyStudentDeskIconInfo[i]])
  2206. }, _frag); //
  2207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2210. } //
  2211. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2212. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2213. _content = $$("div", {
  2214. className: "U_MD_D_KO",
  2215. "onmousedown": U.UF.C.closure(function (obj) {
  2216. //防止拖动图标即打开了桌面应用
  2217. U.MD.D.click(this, obj);
  2218. }, [_jccssylStudentDeskIconInfo[i]]),
  2219. "onclick": U.UF.C.closure(function (obj) {
  2220. //防止拖动图标即打开了桌面应用
  2221. U.MD.D.click(this, obj);
  2222. }, [_jccssylStudentDeskIconInfo[i]])
  2223. }, _frag); //
  2224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2227. }
  2228. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2229. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2230. _content = $$("div", {
  2231. className: "U_MD_D_KO",
  2232. "onmousedown": U.UF.C.closure(function (obj) {
  2233. //防止拖动图标即打开了桌面应用
  2234. U.MD.D.click(this, obj);
  2235. }, [_scnuaiStudentDeskIconInfo[i]]),
  2236. "onclick": U.UF.C.closure(function (obj) {
  2237. //防止拖动图标即打开了桌面应用
  2238. U.MD.D.click(this, obj);
  2239. }, [_scnuaiStudentDeskIconInfo[i]])
  2240. }, _frag); //
  2241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2244. }
  2245. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2246. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2247. _content = $$("div", {
  2248. className: "U_MD_D_KO",
  2249. "onmousedown": U.UF.C.closure(function (obj) {
  2250. //防止拖动图标即打开了桌面应用
  2251. U.MD.D.click(this, obj);
  2252. }, [_caleStudentDeskIconInfo[i]]),
  2253. "onclick": U.UF.C.closure(function (obj) {
  2254. //防止拖动图标即打开了桌面应用
  2255. U.MD.D.click(this, obj);
  2256. }, [_caleStudentDeskIconInfo[i]])
  2257. }, _frag); //
  2258. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2259. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2260. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2261. }
  2262. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2263. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2264. _content = $$("div", {
  2265. className: "U_MD_D_KO",
  2266. "onmousedown": U.UF.C.closure(function (obj) {
  2267. //防止拖动图标即打开了桌面应用
  2268. U.MD.D.click(this, obj);
  2269. }, [_thuioeStudentDeskIconInfo[i]]),
  2270. "onclick": U.UF.C.closure(function (obj) {
  2271. //防止拖动图标即打开了桌面应用
  2272. U.MD.D.click(this, obj);
  2273. }, [_thuioeStudentDeskIconInfo[i]])
  2274. }, _frag); //
  2275. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2276. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2277. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2278. }
  2279. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2280. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2281. _content = $$("div", {
  2282. className: "U_MD_D_KO",
  2283. "onmousedown": U.UF.C.closure(function (obj) {
  2284. //防止拖动图标即打开了桌面应用
  2285. U.MD.D.click(this, obj);
  2286. }, [_tpcStudentDeskIconInfo[i]]),
  2287. "onclick": U.UF.C.closure(function (obj) {
  2288. //防止拖动图标即打开了桌面应用
  2289. U.MD.D.click(this, obj);
  2290. }, [_tpcStudentDeskIconInfo[i]])
  2291. }, _frag); //
  2292. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2293. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2294. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2295. } //
  2296. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2297. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2298. _content = $$("div", {
  2299. className: "U_MD_D_KO",
  2300. "onmousedown": U.UF.C.closure(function (obj) {
  2301. //防止拖动图标即打开了桌面应用
  2302. U.MD.D.click(this, obj);
  2303. }, [_chjyjStudentDeskIconInfo[i]]),
  2304. "onclick": U.UF.C.closure(function (obj) {
  2305. //防止拖动图标即打开了桌面应用
  2306. U.MD.D.click(this, obj);
  2307. }, [_chjyjStudentDeskIconInfo[i]])
  2308. }, _frag); //
  2309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2312. }
  2313. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2314. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2315. _content = $$("div", {
  2316. className: "U_MD_D_KO",
  2317. "onmousedown": U.UF.C.closure(function (obj) {
  2318. //防止拖动图标即打开了桌面应用
  2319. U.MD.D.click(this, obj);
  2320. }, [_szjkyStudentDeskIconInfo[i]]),
  2321. "onclick": U.UF.C.closure(function (obj) {
  2322. //防止拖动图标即打开了桌面应用
  2323. U.MD.D.click(this, obj);
  2324. }, [_szjkyStudentDeskIconInfo[i]])
  2325. }, _frag); //
  2326. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2327. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2328. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2329. }
  2330. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2331. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2332. _content = $$("div", {
  2333. className: "U_MD_D_KO",
  2334. "onmousedown": U.UF.C.closure(function (obj) {
  2335. //防止拖动图标即打开了桌面应用
  2336. U.MD.D.click(this, obj);
  2337. }, [_x020201StudentDeskIconInfo[i]]),
  2338. "onclick": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_x020201StudentDeskIconInfo[i]])
  2342. }, _frag); //
  2343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2346. }
  2347. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2348. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2349. _content = $$("div", {
  2350. className: "U_MD_D_KO",
  2351. "onmousedown": U.UF.C.closure(function (obj) {
  2352. //防止拖动图标即打开了桌面应用
  2353. U.MD.D.click(this, obj);
  2354. }, [_SCNUETStudentDeskIconInfo[i]]),
  2355. "onclick": U.UF.C.closure(function (obj) {
  2356. //防止拖动图标即打开了桌面应用
  2357. U.MD.D.click(this, obj);
  2358. }, [_SCNUETStudentDeskIconInfo[i]])
  2359. }, _frag); //
  2360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2363. }
  2364. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2365. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2366. _content = $$("div", {
  2367. className: "U_MD_D_KO",
  2368. "onmousedown": U.UF.C.closure(function (obj) {
  2369. //防止拖动图标即打开了桌面应用
  2370. U.MD.D.click(this, obj);
  2371. }, [_dseiStudentDeskIconInfo[i]]),
  2372. "onclick": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_dseiStudentDeskIconInfo[i]])
  2376. }, _frag); //
  2377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2380. }
  2381. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2382. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2383. _content = $$("div", {
  2384. className: "U_MD_D_KO",
  2385. "onmousedown": U.UF.C.closure(function (obj) {
  2386. //防止拖动图标即打开了桌面应用
  2387. U.MD.D.click(this, obj);
  2388. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2389. "onclick": U.UF.C.closure(function (obj) {
  2390. //防止拖动图标即打开了桌面应用
  2391. U.MD.D.click(this, obj);
  2392. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2393. }, _frag); //
  2394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2397. }
  2398. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2399. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2400. _content = $$("div", {
  2401. className: "U_MD_D_KO",
  2402. "onmousedown": U.UF.C.closure(function (obj) {
  2403. //防止拖动图标即打开了桌面应用
  2404. U.MD.D.click(this, obj);
  2405. }, [_nsfxStudentDeskIconInfo[i]]),
  2406. "onclick": U.UF.C.closure(function (obj) {
  2407. //防止拖动图标即打开了桌面应用
  2408. U.MD.D.click(this, obj);
  2409. }, [_nsfxStudentDeskIconInfo[i]])
  2410. }, _frag); //
  2411. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2412. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2413. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2414. }
  2415. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2416. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2417. _content = $$("div", {
  2418. className: "U_MD_D_KO",
  2419. "onmousedown": U.UF.C.closure(function (obj) {
  2420. //防止拖动图标即打开了桌面应用
  2421. U.MD.D.click(this, obj);
  2422. }, [_stiaStudentDeskIconInfo[i]]),
  2423. "onclick": U.UF.C.closure(function (obj) {
  2424. //防止拖动图标即打开了桌面应用
  2425. U.MD.D.click(this, obj);
  2426. }, [_stiaStudentDeskIconInfo[i]])
  2427. }, _frag); //
  2428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2431. }
  2432. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2433. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2434. _content = $$("div", {
  2435. className: "U_MD_D_KO",
  2436. "onmousedown": U.UF.C.closure(function (obj) {
  2437. //防止拖动图标即打开了桌面应用
  2438. U.MD.D.click(this, obj);
  2439. }, [_szdjgStudentDeskIconInfo[i]]),
  2440. "onclick": U.UF.C.closure(function (obj) {
  2441. //防止拖动图标即打开了桌面应用
  2442. U.MD.D.click(this, obj);
  2443. }, [_szdjgStudentDeskIconInfo[i]])
  2444. }, _frag); //
  2445. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2446. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2447. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2448. }
  2449. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2450. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2451. _content = $$("div", {
  2452. className: "U_MD_D_KO",
  2453. "onmousedown": U.UF.C.closure(function (obj) {
  2454. //防止拖动图标即打开了桌面应用
  2455. U.MD.D.click(this, obj);
  2456. }, [_x010607StudentDeskIconInfo[i]]),
  2457. "onclick": U.UF.C.closure(function (obj) {
  2458. //防止拖动图标即打开了桌面应用
  2459. U.MD.D.click(this, obj);
  2460. }, [_x010607StudentDeskIconInfo[i]])
  2461. }, _frag); //
  2462. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2463. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2464. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2465. }
  2466. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2467. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2468. _content = $$("div", {
  2469. className: "U_MD_D_KO",
  2470. "onmousedown": U.UF.C.closure(function (obj) {
  2471. //防止拖动图标即打开了桌面应用
  2472. U.MD.D.click(this, obj);
  2473. }, [_xhlyStudentDeskIconInfo[i]]),
  2474. "onclick": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_xhlyStudentDeskIconInfo[i]])
  2478. }, _frag); //
  2479. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2480. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2481. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2482. }
  2483. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2484. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2485. _content = $$("div", {
  2486. className: "U_MD_D_KO",
  2487. "onmousedown": U.UF.C.closure(function (obj) {
  2488. //防止拖动图标即打开了桌面应用
  2489. U.MD.D.click(this, obj);
  2490. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2491. "onclick": U.UF.C.closure(function (obj) {
  2492. //防止拖动图标即打开了桌面应用
  2493. U.MD.D.click(this, obj);
  2494. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2495. }, _frag); //
  2496. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2497. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2498. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2499. }
  2500. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2501. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2502. _content = $$("div", {
  2503. className: "U_MD_D_KO",
  2504. "onmousedown": U.UF.C.closure(function (obj) {
  2505. //防止拖动图标即打开了桌面应用
  2506. U.MD.D.click(this, obj);
  2507. }, [_x010503StudentDeskIconInfo[i]]),
  2508. "onclick": U.UF.C.closure(function (obj) {
  2509. //防止拖动图标即打开了桌面应用
  2510. U.MD.D.click(this, obj);
  2511. }, [_x010503StudentDeskIconInfo[i]])
  2512. }, _frag); //
  2513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2516. }
  2517. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2518. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2519. _content = $$("div", {
  2520. className: "U_MD_D_KO",
  2521. "onmousedown": U.UF.C.closure(function (obj) {
  2522. //防止拖动图标即打开了桌面应用
  2523. U.MD.D.click(this, obj);
  2524. }, [_x010504StudentDeskIconInfo[i]]),
  2525. "onclick": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_x010504StudentDeskIconInfo[i]])
  2529. }, _frag); //
  2530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2533. }
  2534. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2535. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2536. _content = $$("div", {
  2537. className: "U_MD_D_KO",
  2538. "onmousedown": U.UF.C.closure(function (obj) {
  2539. //防止拖动图标即打开了桌面应用
  2540. U.MD.D.click(this, obj);
  2541. }, [_x010204StudentDeskIconInfo[i]]),
  2542. "onclick": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_x010204StudentDeskIconInfo[i]])
  2546. }, _frag); //
  2547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2550. }
  2551. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2552. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2553. _content = $$("div", {
  2554. className: "U_MD_D_KO",
  2555. "onmousedown": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_x320101StudentDeskIconInfo[i]]),
  2559. "onclick": U.UF.C.closure(function (obj) {
  2560. //防止拖动图标即打开了桌面应用
  2561. U.MD.D.click(this, obj);
  2562. }, [_x320101StudentDeskIconInfo[i]])
  2563. }, _frag); //
  2564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2567. }
  2568. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2569. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2570. _content = $$("div", {
  2571. className: "U_MD_D_KO",
  2572. "onmousedown": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_trailStudentDeskIconInfo[i]]),
  2576. "onclick": U.UF.C.closure(function (obj) {
  2577. //防止拖动图标即打开了桌面应用
  2578. U.MD.D.click(this, obj);
  2579. }, [_trailStudentDeskIconInfo[i]])
  2580. }, _frag); //
  2581. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2582. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2583. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2584. }
  2585. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2586. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2587. _content = $$("div", {
  2588. className: "U_MD_D_KO",
  2589. "onmousedown": U.UF.C.closure(function (obj) {
  2590. //防止拖动图标即打开了桌面应用
  2591. U.MD.D.click(this, obj);
  2592. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2593. "onclick": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2597. }, _frag); //
  2598. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2599. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2600. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2601. }
  2602. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2603. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2604. _content = $$("div", {
  2605. className: "U_MD_D_KO",
  2606. "onmousedown": U.UF.C.closure(function (obj) {
  2607. //防止拖动图标即打开了桌面应用
  2608. U.MD.D.click(this, obj);
  2609. }, [_x010608StudentDeskIconInfo[i]]),
  2610. "onclick": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_x010608StudentDeskIconInfo[i]])
  2614. }, _frag); //
  2615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2618. }
  2619. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2620. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2621. _content = $$("div", {
  2622. className: "U_MD_D_KO",
  2623. "onmousedown": U.UF.C.closure(function (obj) {
  2624. //防止拖动图标即打开了桌面应用
  2625. U.MD.D.click(this, obj);
  2626. }, [_x010611StudentDeskIconInfo[i]]),
  2627. "onclick": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_x010611StudentDeskIconInfo[i]])
  2631. }, _frag); //
  2632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2635. }
  2636. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2637. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2638. _content = $$("div", {
  2639. className: "U_MD_D_KO",
  2640. "onmousedown": U.UF.C.closure(function (obj) {
  2641. //防止拖动图标即打开了桌面应用
  2642. U.MD.D.click(this, obj);
  2643. }, [_tianyuantudentDeskIconInfo[i]]),
  2644. "onclick": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_tianyuantudentDeskIconInfo[i]])
  2648. }, _frag); //
  2649. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2650. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2651. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2652. }
  2653. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2654. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2655. _content = $$("div", {
  2656. className: "U_MD_D_KO",
  2657. "onmousedown": U.UF.C.closure(function (obj) {
  2658. //防止拖动图标即打开了桌面应用
  2659. U.MD.D.click(this, obj);
  2660. }, [_siesStudentDeskIconInfo[i]]),
  2661. "onclick": U.UF.C.closure(function (obj) {
  2662. //防止拖动图标即打开了桌面应用
  2663. U.MD.D.click(this, obj);
  2664. }, [_siesStudentDeskIconInfo[i]])
  2665. }, _frag); //
  2666. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2667. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2668. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2669. }
  2670. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2671. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2672. _content = $$("div", {
  2673. className: "U_MD_D_KO",
  2674. "onmousedown": U.UF.C.closure(function (obj) {
  2675. //防止拖动图标即打开了桌面应用
  2676. U.MD.D.click(this, obj);
  2677. }, [_guzmsStudentDeskIconInfo[i]]),
  2678. "onclick": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_guzmsStudentDeskIconInfo[i]])
  2682. }, _frag); //
  2683. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2684. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2685. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2686. }
  2687. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2688. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2689. _content = $$("div", {
  2690. className: "U_MD_D_KO",
  2691. "onmousedown": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_hkStudentDeskIconInfo[i]]),
  2695. "onclick": U.UF.C.closure(function (obj) {
  2696. //防止拖动图标即打开了桌面应用
  2697. U.MD.D.click(this, obj);
  2698. }, [_hkStudentDeskIconInfo[i]])
  2699. }, _frag); //
  2700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2703. }
  2704. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2705. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2706. _content = $$("div", {
  2707. className: "U_MD_D_KO",
  2708. "onmousedown": U.UF.C.closure(function (obj) {
  2709. //防止拖动图标即打开了桌面应用
  2710. U.MD.D.click(this, obj);
  2711. }, [_hkaceStudentDeskIconInfo[i]]),
  2712. "onclick": U.UF.C.closure(function (obj) {
  2713. //防止拖动图标即打开了桌面应用
  2714. U.MD.D.click(this, obj);
  2715. }, [_hkaceStudentDeskIconInfo[i]])
  2716. }, _frag); //
  2717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2720. }
  2721. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2722. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2723. _content = $$("div", {
  2724. className: "U_MD_D_KO",
  2725. "onmousedown": U.UF.C.closure(function (obj) {
  2726. //防止拖动图标即打开了桌面应用
  2727. U.MD.D.click(this, obj);
  2728. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2729. "onclick": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_BSDNSstudentDesktopIconInfo[i]])
  2733. }, _frag); //
  2734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2737. }
  2738. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2739. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2740. _content = $$("div", {
  2741. className: "U_MD_D_KO",
  2742. "onmousedown": U.UF.C.closure(function (obj) {
  2743. //防止拖动图标即打开了桌面应用
  2744. U.MD.D.click(this, obj);
  2745. }, [_cocobizStudentDeskIconInfo[i]]),
  2746. "onclick": U.UF.C.closure(function (obj) {
  2747. //防止拖动图标即打开了桌面应用
  2748. U.MD.D.click(this, obj);
  2749. }, [_cocobizStudentDeskIconInfo[i]])
  2750. }, _frag); //
  2751. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2752. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2753. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2754. }
  2755. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2756. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2757. _content = $$("div", {
  2758. className: "U_MD_D_KO",
  2759. "onmousedown": U.UF.C.closure(function (obj) {
  2760. //防止拖动图标即打开了桌面应用
  2761. U.MD.D.click(this, obj);
  2762. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2763. "onclick": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_xxzjkyStudentDeskIconInfo[i]])
  2767. }, _frag); //
  2768. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2769. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2770. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2771. }
  2772. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2773. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2774. _content = $$("div", {
  2775. className: "U_MD_D_KO",
  2776. "onmousedown": U.UF.C.closure(function (obj) {
  2777. //防止拖动图标即打开了桌面应用
  2778. U.MD.D.click(this, obj);
  2779. }, [_studentDesktopIconInfo[i]]),
  2780. "onclick": U.UF.C.closure(function (obj) {
  2781. //防止拖动图标即打开了桌面应用
  2782. U.MD.D.click(this, obj);
  2783. }, [_studentDesktopIconInfo[i]])
  2784. }, _frag); //
  2785. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2786. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2787. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2788. }
  2789. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2790. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2791. _content = $$("div", {
  2792. className: "U_MD_D_KO",
  2793. "onmousedown": U.UF.C.closure(function (obj) {
  2794. //防止拖动图标即打开了桌面应用
  2795. U.MD.D.click(this, obj);
  2796. }, [_tcStudentDeskIconInfo[i]]),
  2797. "onclick": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_tcStudentDeskIconInfo[i]])
  2801. }, _frag); //
  2802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2805. }
  2806. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2807. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2808. _content = $$("div", {
  2809. className: "U_MD_D_KO",
  2810. "onmousedown": U.UF.C.closure(function (obj) {
  2811. //防止拖动图标即打开了桌面应用
  2812. U.MD.D.click(this, obj);
  2813. }, [_szscStudentDeskIconInfo[i]]),
  2814. "onclick": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_szscStudentDeskIconInfo[i]])
  2818. }, _frag); //
  2819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2822. }
  2823. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2824. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2825. _content = $$("div", {
  2826. className: "U_MD_D_KO",
  2827. "onmousedown": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_studentDesktopIconInfo3[i]]),
  2831. "onclick": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_studentDesktopIconInfo3[i]])
  2835. }, _frag); //
  2836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2839. }
  2840. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2841. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2842. _content = $$("div", {
  2843. className: "U_MD_D_KO",
  2844. "onmousedown": U.UF.C.closure(function (obj) {
  2845. //防止拖动图标即打开了桌面应用
  2846. U.MD.D.click(this, obj);
  2847. }, [_studentDesktopIconInfo2[i]]),
  2848. "onclick": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_studentDesktopIconInfo2[i]])
  2852. }, _frag); //
  2853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2856. }
  2857. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2858. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2859. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2860. continue
  2861. }
  2862. _content = $$("div", {
  2863. className: "U_MD_D_KO",
  2864. "onmousedown": U.UF.C.closure(function (obj) {
  2865. //防止拖动图标即打开了桌面应用
  2866. U.MD.D.click(this, obj);
  2867. }, [_wanketeacherDesktopIconInfo[i]]),
  2868. "onclick": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_wanketeacherDesktopIconInfo[i]])
  2872. }, _frag); //
  2873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2876. }
  2877. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2878. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2879. _content = $$("div", {
  2880. className: "U_MD_D_KO",
  2881. "onmousedown": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_wankeAdminDesktopIconInfo[i]]),
  2885. "onclick": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_wankeAdminDesktopIconInfo[i]])
  2889. }, _frag); //
  2890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2893. }
  2894. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2895. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2896. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2897. continue
  2898. }
  2899. _content = $$("div", {
  2900. className: "U_MD_D_KO",
  2901. "onmousedown": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2905. "onclick": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_scnuaiTeacherDeskIconInfo[i]])
  2909. }, _frag); //
  2910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2913. }
  2914. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2915. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2916. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2917. continue
  2918. }
  2919. _content = $$("div", {
  2920. className: "U_MD_D_KO",
  2921. "onmousedown": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2925. "onclick": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_BSDNSteacherDesktopIconInfo[i]])
  2929. }, _frag); //
  2930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2933. }
  2934. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2935. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2936. _content = $$("div", {
  2937. className: "U_MD_D_KO",
  2938. "onmousedown": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_scnuaiAdminDeskIconInfo[i]]),
  2942. "onclick": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_scnuaiAdminDeskIconInfo[i]])
  2946. }, _frag); //
  2947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2950. }
  2951. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2952. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2953. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2954. continue
  2955. }
  2956. _content = $$("div", {
  2957. className: "U_MD_D_KO",
  2958. "onmousedown": U.UF.C.closure(function (obj) {
  2959. //防止拖动图标即打开了桌面应用
  2960. U.MD.D.click(this, obj);
  2961. }, [_jccssylTeacherDeskIconInfo[i]]),
  2962. "onclick": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_jccssylTeacherDeskIconInfo[i]])
  2966. }, _frag); //
  2967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2970. }
  2971. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2972. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2973. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2974. continue
  2975. }
  2976. _content = $$("div", {
  2977. className: "U_MD_D_KO",
  2978. "onmousedown": U.UF.C.closure(function (obj) {
  2979. //防止拖动图标即打开了桌面应用
  2980. U.MD.D.click(this, obj);
  2981. }, [_caleTeacherDeskIconInfo[i]]),
  2982. "onclick": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_caleTeacherDeskIconInfo[i]])
  2986. }, _frag); //
  2987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2990. }
  2991. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2992. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2993. _content = $$("div", {
  2994. className: "U_MD_D_KO",
  2995. "onmousedown": U.UF.C.closure(function (obj) {
  2996. //防止拖动图标即打开了桌面应用
  2997. U.MD.D.click(this, obj);
  2998. }, [_tpcOrganizerDeskIconInfo[i]]),
  2999. "onclick": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_tpcOrganizerDeskIconInfo[i]])
  3003. }, _frag); //
  3004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3007. }
  3008. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3009. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3010. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3011. continue
  3012. }
  3013. _content = $$("div", {
  3014. className: "U_MD_D_KO",
  3015. "onmousedown": U.UF.C.closure(function (obj) {
  3016. //防止拖动图标即打开了桌面应用
  3017. U.MD.D.click(this, obj);
  3018. }, [_tpcTeacherDeskIconInfo[i]]),
  3019. "onclick": U.UF.C.closure(function (obj) {
  3020. //防止拖动图标即打开了桌面应用
  3021. U.MD.D.click(this, obj);
  3022. }, [_tpcTeacherDeskIconInfo[i]])
  3023. }, _frag); //
  3024. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3025. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3026. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3027. }
  3028. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3029. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3030. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3031. continue
  3032. }
  3033. _content = $$("div", {
  3034. className: "U_MD_D_KO",
  3035. "onmousedown": U.UF.C.closure(function (obj) {
  3036. //防止拖动图标即打开了桌面应用
  3037. U.MD.D.click(this, obj);
  3038. }, [_teacherDesktopIconInfo2[i]]),
  3039. "onclick": U.UF.C.closure(function (obj) {
  3040. //防止拖动图标即打开了桌面应用
  3041. U.MD.D.click(this, obj);
  3042. }, [_teacherDesktopIconInfo2[i]])
  3043. }, _frag); //
  3044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3047. }
  3048. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3049. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3050. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3051. continue
  3052. }
  3053. _content = $$("div", {
  3054. className: "U_MD_D_KO",
  3055. "onmousedown": U.UF.C.closure(function (obj) {
  3056. //防止拖动图标即打开了桌面应用
  3057. U.MD.D.click(this, obj);
  3058. }, [_thuioeTeacherDeskIconInfo[i]]),
  3059. "onclick": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_thuioeTeacherDeskIconInfo[i]])
  3063. }, _frag); //
  3064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3067. }
  3068. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3069. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3070. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3071. continue
  3072. }
  3073. _content = $$("div", {
  3074. className: "U_MD_D_KO",
  3075. "onmousedown": U.UF.C.closure(function (obj) {
  3076. //防止拖动图标即打开了桌面应用
  3077. U.MD.D.click(this, obj);
  3078. }, [_lotechTeacherDeskIconInfo[i]]),
  3079. "onclick": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_lotechTeacherDeskIconInfo[i]])
  3083. }, _frag); //
  3084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3087. }//
  3088. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3089. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3090. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3091. continue
  3092. }
  3093. _content = $$("div", {
  3094. className: "U_MD_D_KO",
  3095. "onmousedown": U.UF.C.closure(function (obj) {
  3096. //防止拖动图标即打开了桌面应用
  3097. U.MD.D.click(this, obj);
  3098. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3099. "onclick": U.UF.C.closure(function (obj) {
  3100. //防止拖动图标即打开了桌面应用
  3101. U.MD.D.click(this, obj);
  3102. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3103. }, _frag); //
  3104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3107. }
  3108. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3109. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3110. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3111. continue
  3112. }
  3113. _content = $$("div", {
  3114. className: "U_MD_D_KO",
  3115. "onmousedown": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_siesTeacherDeskIconInfo[i]]),
  3119. "onclick": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_siesTeacherDeskIconInfo[i]])
  3123. }, _frag); //
  3124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3127. }
  3128. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3129. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3130. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3131. continue
  3132. }
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_guzmsTeacherDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_guzmsTeacherDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3149. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3150. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3151. continue
  3152. }
  3153. _content = $$("div", {
  3154. className: "U_MD_D_KO",
  3155. "onmousedown": U.UF.C.closure(function (obj) {
  3156. //防止拖动图标即打开了桌面应用
  3157. U.MD.D.click(this, obj);
  3158. }, [_longhuaTeacherDeskIconInfo[i]]),
  3159. "onclick": U.UF.C.closure(function (obj) {
  3160. //防止拖动图标即打开了桌面应用
  3161. U.MD.D.click(this, obj);
  3162. }, [_longhuaTeacherDeskIconInfo[i]])
  3163. }, _frag); //
  3164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3167. }
  3168. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3169. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3170. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3171. continue
  3172. }
  3173. _content = $$("div", {
  3174. className: "U_MD_D_KO",
  3175. "onmousedown": U.UF.C.closure(function (obj) {
  3176. //防止拖动图标即打开了桌面应用
  3177. U.MD.D.click(this, obj);
  3178. }, [_ytyTeacherDeskIconInfo[i]]),
  3179. "onclick": U.UF.C.closure(function (obj) {
  3180. //防止拖动图标即打开了桌面应用
  3181. U.MD.D.click(this, obj);
  3182. }, [_ytyTeacherDeskIconInfo[i]])
  3183. }, _frag); //
  3184. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3185. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3186. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3187. }
  3188. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3189. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3190. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3191. continue
  3192. }
  3193. _content = $$("div", {
  3194. className: "U_MD_D_KO",
  3195. "onmousedown": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3199. "onclick": U.UF.C.closure(function (obj) {
  3200. //防止拖动图标即打开了桌面应用
  3201. U.MD.D.click(this, obj);
  3202. }, [_yunhaiTeacherDeskIconInfo[i]])
  3203. }, _frag); //
  3204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3207. } //_hkStudentDeskIconInfo
  3208. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3209. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3210. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3211. continue
  3212. }
  3213. _content = $$("div", {
  3214. className: "U_MD_D_KO",
  3215. "onmousedown": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3219. "onclick": U.UF.C.closure(function (obj) {
  3220. //防止拖动图标即打开了桌面应用
  3221. U.MD.D.click(this, obj);
  3222. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3223. }, _frag); //
  3224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3227. }
  3228. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3229. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3230. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3231. continue
  3232. }
  3233. _content = $$("div", {
  3234. className: "U_MD_D_KO",
  3235. "onmousedown": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_hkTeacherDeskIconInfo[i]]),
  3239. "onclick": U.UF.C.closure(function (obj) {
  3240. //防止拖动图标即打开了桌面应用
  3241. U.MD.D.click(this, obj);
  3242. }, [_hkTeacherDeskIconInfo[i]])
  3243. }, _frag); //
  3244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3247. }
  3248. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3249. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3250. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3251. continue
  3252. }
  3253. _content = $$("div", {
  3254. className: "U_MD_D_KO",
  3255. "onmousedown": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_hkaceTeacherDeskIconInfo[i]]),
  3259. "onclick": U.UF.C.closure(function (obj) {
  3260. //防止拖动图标即打开了桌面应用
  3261. U.MD.D.click(this, obj);
  3262. }, [_hkaceTeacherDeskIconInfo[i]])
  3263. }, _frag); //
  3264. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3265. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3266. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3267. }
  3268. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3269. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3270. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3271. continue
  3272. }
  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. }, [_cocobizTeacherDeskIconInfo[i]]),
  3279. "onclick": U.UF.C.closure(function (obj) {
  3280. //防止拖动图标即打开了桌面应用
  3281. U.MD.D.click(this, obj);
  3282. }, [_cocobizTeacherDeskIconInfo[i]])
  3283. }, _frag); //
  3284. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3285. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3286. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3287. }
  3288. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3289. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3290. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[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. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3299. "onclick": U.UF.C.closure(function (obj) {
  3300. //防止拖动图标即打开了桌面应用
  3301. U.MD.D.click(this, obj);
  3302. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3303. }, _frag); //
  3304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3307. }
  3308. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3309. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3310. _content = $$("div", {
  3311. className: "U_MD_D_KO",
  3312. "onmousedown": U.UF.C.closure(function (obj) {
  3313. //防止拖动图标即打开了桌面应用
  3314. U.MD.D.click(this, obj);
  3315. }, [_gdjgAdminDeskIconInfo[i]]),
  3316. "onclick": U.UF.C.closure(function (obj) {
  3317. //防止拖动图标即打开了桌面应用
  3318. U.MD.D.click(this, obj);
  3319. }, [_gdjgAdminDeskIconInfo[i]])
  3320. }, _frag); //
  3321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3324. }
  3325. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3326. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3327. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3328. continue
  3329. }
  3330. _content = $$("div", {
  3331. className: "U_MD_D_KO",
  3332. "onmousedown": U.UF.C.closure(function (obj) {
  3333. //防止拖动图标即打开了桌面应用
  3334. U.MD.D.click(this, obj);
  3335. }, [_gdjgTeacherDeskIconInfo[i]]),
  3336. "onclick": U.UF.C.closure(function (obj) {
  3337. //防止拖动图标即打开了桌面应用
  3338. U.MD.D.click(this, obj);
  3339. }, [_gdjgTeacherDeskIconInfo[i]])
  3340. }, _frag); //
  3341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3344. }
  3345. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3346. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3347. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3348. continue
  3349. }
  3350. _content = $$("div", {
  3351. className: "U_MD_D_KO",
  3352. "onmousedown": U.UF.C.closure(function (obj) {
  3353. //防止拖动图标即打开了桌面应用
  3354. U.MD.D.click(this, obj);
  3355. }, [_szherTeacherDeskIconInfo[i]]),
  3356. "onclick": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_szherTeacherDeskIconInfo[i]])
  3360. }, _frag); //
  3361. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3362. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3363. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3364. }
  3365. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3366. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3367. _content = $$("div", {
  3368. className: "U_MD_D_KO",
  3369. "onmousedown": U.UF.C.closure(function (obj) {
  3370. //防止拖动图标即打开了桌面应用
  3371. U.MD.D.click(this, obj);
  3372. }, [_heyuannAdminDeskIconInfo[i]]),
  3373. "onclick": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_heyuannAdminDeskIconInfo[i]])
  3377. }, _frag); //
  3378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3381. }
  3382. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3383. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3384. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3385. continue
  3386. }
  3387. _content = $$("div", {
  3388. className: "U_MD_D_KO",
  3389. "onmousedown": U.UF.C.closure(function (obj) {
  3390. //防止拖动图标即打开了桌面应用
  3391. U.MD.D.click(this, obj);
  3392. }, [_heyuanTeacherDeskIconInfo[i]]),
  3393. "onclick": U.UF.C.closure(function (obj) {
  3394. //防止拖动图标即打开了桌面应用
  3395. U.MD.D.click(this, obj);
  3396. }, [_heyuanTeacherDeskIconInfo[i]])
  3397. }, _frag); //
  3398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3401. } //
  3402. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3403. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3404. _content = $$("div", {
  3405. className: "U_MD_D_KO",
  3406. "onmousedown": U.UF.C.closure(function (obj) {
  3407. //防止拖动图标即打开了桌面应用
  3408. U.MD.D.click(this, obj);
  3409. }, [_dseiAdminDeskIconInfo[i]]),
  3410. "onclick": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_dseiAdminDeskIconInfo[i]])
  3414. }, _frag); //
  3415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3418. }
  3419. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3420. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3421. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3422. continue
  3423. }
  3424. _content = $$("div", {
  3425. className: "U_MD_D_KO",
  3426. "onmousedown": U.UF.C.closure(function (obj) {
  3427. //防止拖动图标即打开了桌面应用
  3428. U.MD.D.click(this, obj);
  3429. }, [_dseiTeacherDeskIconInfo[i]]),
  3430. "onclick": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_dseiTeacherDeskIconInfo[i]])
  3434. }, _frag); //
  3435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3438. } //
  3439. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3440. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3441. _content = $$("div", {
  3442. className: "U_MD_D_KO",
  3443. "onmousedown": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_chjyjAdminDeskIconInfo[i]]),
  3447. "onclick": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_chjyjAdminDeskIconInfo[i]])
  3451. }, _frag); //
  3452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3455. }//
  3456. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3457. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3458. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3459. continue
  3460. }
  3461. _content = $$("div", {
  3462. className: "U_MD_D_KO",
  3463. "onmousedown": U.UF.C.closure(function (obj) {
  3464. //防止拖动图标即打开了桌面应用
  3465. U.MD.D.click(this, obj);
  3466. }, [_chjyjTeacherDeskIconInfo[i]]),
  3467. "onclick": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_chjyjTeacherDeskIconInfo[i]])
  3471. }, _frag); //
  3472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3475. }
  3476. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3477. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3478. _content = $$("div", {
  3479. className: "U_MD_D_KO",
  3480. "onmousedown": U.UF.C.closure(function (obj) {
  3481. //防止拖动图标即打开了桌面应用
  3482. U.MD.D.click(this, obj);
  3483. }, [_szjkyAdminDeskIconInfo[i]]),
  3484. "onclick": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_szjkyAdminDeskIconInfo[i]])
  3488. }, _frag); //
  3489. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3490. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3491. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3492. }//
  3493. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3494. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3495. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3496. continue
  3497. }
  3498. _content = $$("div", {
  3499. className: "U_MD_D_KO",
  3500. "onmousedown": U.UF.C.closure(function (obj) {
  3501. //防止拖动图标即打开了桌面应用
  3502. U.MD.D.click(this, obj);
  3503. }, [_szjkyTeacherDeskIconInfo[i]]),
  3504. "onclick": U.UF.C.closure(function (obj) {
  3505. //防止拖动图标即打开了桌面应用
  3506. U.MD.D.click(this, obj);
  3507. }, [_szjkyTeacherDeskIconInfo[i]])
  3508. }, _frag); //
  3509. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3510. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3511. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3512. }
  3513. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3514. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3515. _content = $$("div", {
  3516. className: "U_MD_D_KO",
  3517. "onmousedown": U.UF.C.closure(function (obj) {
  3518. //防止拖动图标即打开了桌面应用
  3519. U.MD.D.click(this, obj);
  3520. }, [_x020201AdminDeskIconInfo[i]]),
  3521. "onclick": U.UF.C.closure(function (obj) {
  3522. //防止拖动图标即打开了桌面应用
  3523. U.MD.D.click(this, obj);
  3524. }, [_x020201AdminDeskIconInfo[i]])
  3525. }, _frag); //
  3526. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3527. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3528. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3529. }//
  3530. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3531. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3532. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3533. continue
  3534. }
  3535. _content = $$("div", {
  3536. className: "U_MD_D_KO",
  3537. "onmousedown": U.UF.C.closure(function (obj) {
  3538. //防止拖动图标即打开了桌面应用
  3539. U.MD.D.click(this, obj);
  3540. }, [_x020201TeacherDeskIconInfo[i]]),
  3541. "onclick": U.UF.C.closure(function (obj) {
  3542. //防止拖动图标即打开了桌面应用
  3543. U.MD.D.click(this, obj);
  3544. }, [_x020201TeacherDeskIconInfo[i]])
  3545. }, _frag); //
  3546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3549. }
  3550. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3551. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3552. _content = $$("div", {
  3553. className: "U_MD_D_KO",
  3554. "onmousedown": U.UF.C.closure(function (obj) {
  3555. //防止拖动图标即打开了桌面应用
  3556. U.MD.D.click(this, obj);
  3557. }, [_SCNUETAdminDeskIconInfo[i]]),
  3558. "onclick": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_SCNUETAdminDeskIconInfo[i]])
  3562. }, _frag); //
  3563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3566. }//
  3567. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3568. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3569. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3570. continue
  3571. }
  3572. _content = $$("div", {
  3573. className: "U_MD_D_KO",
  3574. "onmousedown": U.UF.C.closure(function (obj) {
  3575. //防止拖动图标即打开了桌面应用
  3576. U.MD.D.click(this, obj);
  3577. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3578. "onclick": U.UF.C.closure(function (obj) {
  3579. //防止拖动图标即打开了桌面应用
  3580. U.MD.D.click(this, obj);
  3581. }, [_SCNUETTeacherDeskIconInfo[i]])
  3582. }, _frag); //
  3583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3586. }
  3587. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3588. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3589. _content = $$("div", {
  3590. className: "U_MD_D_KO",
  3591. "onmousedown": U.UF.C.closure(function (obj) {
  3592. //防止拖动图标即打开了桌面应用
  3593. U.MD.D.click(this, obj);
  3594. }, [_futianAdminDeskIconInfo[i]]),
  3595. "onclick": U.UF.C.closure(function (obj) {
  3596. //防止拖动图标即打开了桌面应用
  3597. U.MD.D.click(this, obj);
  3598. }, [_futianAdminDeskIconInfo[i]])
  3599. }, _frag); //
  3600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3603. }
  3604. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3605. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3606. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3607. continue
  3608. }
  3609. _content = $$("div", {
  3610. className: "U_MD_D_KO",
  3611. "onmousedown": U.UF.C.closure(function (obj) {
  3612. //防止拖动图标即打开了桌面应用
  3613. U.MD.D.click(this, obj);
  3614. }, [_futianTeacherDeskIconInfo[i]]),
  3615. "onclick": U.UF.C.closure(function (obj) {
  3616. //防止拖动图标即打开了桌面应用
  3617. U.MD.D.click(this, obj);
  3618. }, [_futianTeacherDeskIconInfo[i]])
  3619. }, _frag); //
  3620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3623. }
  3624. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3625. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3626. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3627. continue
  3628. }
  3629. _content = $$("div", {
  3630. className: "U_MD_D_KO",
  3631. "onmousedown": U.UF.C.closure(function (obj) {
  3632. //防止拖动图标即打开了桌面应用
  3633. U.MD.D.click(this, obj);
  3634. }, [_MingdeTeacherDeskIcon[i]]),
  3635. "onclick": U.UF.C.closure(function (obj) {
  3636. //防止拖动图标即打开了桌面应用
  3637. U.MD.D.click(this, obj);
  3638. }, [_MingdeTeacherDeskIcon[i]])
  3639. }, _frag); //
  3640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3643. }
  3644. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3645. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3646. _content = $$("div", {
  3647. className: "U_MD_D_KO",
  3648. "onmousedown": U.UF.C.closure(function (obj) {
  3649. //防止拖动图标即打开了桌面应用
  3650. U.MD.D.click(this, obj);
  3651. }, [_lhsAdminDesktopIconInfo[i]]),
  3652. "onclick": U.UF.C.closure(function (obj) {
  3653. //防止拖动图标即打开了桌面应用
  3654. U.MD.D.click(this, obj);
  3655. }, [_lhsAdminDesktopIconInfo[i]])
  3656. }, _frag); //
  3657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3660. }
  3661. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3662. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3663. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3664. continue
  3665. }
  3666. _content = $$("div", {
  3667. className: "U_MD_D_KO",
  3668. "onmousedown": U.UF.C.closure(function (obj) {
  3669. //防止拖动图标即打开了桌面应用
  3670. U.MD.D.click(this, obj);
  3671. }, [_lhsteacherDesktopIconInfo[i]]),
  3672. "onclick": U.UF.C.closure(function (obj) {
  3673. //防止拖动图标即打开了桌面应用
  3674. U.MD.D.click(this, obj);
  3675. }, [_lhsteacherDesktopIconInfo[i]])
  3676. }, _frag); //
  3677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3680. }
  3681. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3682. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3683. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3684. continue
  3685. }
  3686. _content = $$("div", {
  3687. className: "U_MD_D_KO",
  3688. "onmousedown": U.UF.C.closure(function (obj) {
  3689. //防止拖动图标即打开了桌面应用
  3690. U.MD.D.click(this, obj);
  3691. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3692. "onclick": U.UF.C.closure(function (obj) {
  3693. //防止拖动图标即打开了桌面应用
  3694. U.MD.D.click(this, obj);
  3695. }, [_zhoujiateacherDesktopIconInfo[i]])
  3696. }, _frag); //
  3697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3700. }
  3701. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3702. for (i = 0; i < _hanDeskIcon.length; i++) {
  3703. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3704. continue
  3705. }
  3706. _content = $$("div", {
  3707. className: "U_MD_D_KO",
  3708. "onmousedown": U.UF.C.closure(function (obj) {
  3709. //防止拖动图标即打开了桌面应用
  3710. U.MD.D.click(this, obj);
  3711. }, [_hanDeskIcon[i]]),
  3712. "onclick": U.UF.C.closure(function (obj) {
  3713. //防止拖动图标即打开了桌面应用
  3714. U.MD.D.click(this, obj);
  3715. }, [_hanDeskIcon[i]])
  3716. }, _frag); //
  3717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3720. }
  3721. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3722. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3723. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3724. continue
  3725. }
  3726. _content = $$("div", {
  3727. className: "U_MD_D_KO",
  3728. "onmousedown": U.UF.C.closure(function (obj) {
  3729. //防止拖动图标即打开了桌面应用
  3730. U.MD.D.click(this, obj);
  3731. }, [_orgStemDeskIcon[i]]),
  3732. "onclick": U.UF.C.closure(function (obj) {
  3733. //防止拖动图标即打开了桌面应用
  3734. U.MD.D.click(this, obj);
  3735. }, [_orgStemDeskIcon[i]])
  3736. }, _frag); //
  3737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3740. }
  3741. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3742. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3743. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3744. continue
  3745. }
  3746. _content = $$("div", {
  3747. className: "U_MD_D_KO",
  3748. "onmousedown": U.UF.C.closure(function (obj) {
  3749. //防止拖动图标即打开了桌面应用
  3750. U.MD.D.click(this, obj);
  3751. }, [_szulsDeskIcon[i]]),
  3752. "onclick": U.UF.C.closure(function (obj) {
  3753. //防止拖动图标即打开了桌面应用
  3754. U.MD.D.click(this, obj);
  3755. }, [_szulsDeskIcon[i]])
  3756. }, _frag); //
  3757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3760. }
  3761. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3762. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3763. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3764. continue
  3765. }
  3766. _content = $$("div", {
  3767. className: "U_MD_D_KO",
  3768. "onmousedown": U.UF.C.closure(function (obj) {
  3769. //防止拖动图标即打开了桌面应用
  3770. U.MD.D.click(this, obj);
  3771. }, [_orgDesktopIconInfo[i]]),
  3772. "onclick": U.UF.C.closure(function (obj) {
  3773. //防止拖动图标即打开了桌面应用
  3774. U.MD.D.click(this, obj);
  3775. }, [_orgDesktopIconInfo[i]])
  3776. }, _frag); //
  3777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3780. }
  3781. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3782. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3783. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3784. continue
  3785. }
  3786. _content = $$("div", {
  3787. className: "U_MD_D_KO",
  3788. "onmousedown": U.UF.C.closure(function (obj) {
  3789. //防止拖动图标即打开了桌面应用
  3790. U.MD.D.click(this, obj);
  3791. }, [_schoolDesktopIconInfo[i]]),
  3792. "onclick": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_schoolDesktopIconInfo[i]])
  3796. }, _frag); //
  3797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3800. }
  3801. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3802. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3803. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3804. continue
  3805. }
  3806. _content = $$("div", {
  3807. className: "U_MD_D_KO",
  3808. "onmousedown": U.UF.C.closure(function (obj) {
  3809. //防止拖动图标即打开了桌面应用
  3810. U.MD.D.click(this, obj);
  3811. }, [_GMteacherDesktopIconInfo[i]]),
  3812. "onclick": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_GMteacherDesktopIconInfo[i]])
  3816. }, _frag); //
  3817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3820. }
  3821. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3822. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3823. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3824. continue
  3825. }
  3826. _content = $$("div", {
  3827. className: "U_MD_D_KO",
  3828. "onmousedown": U.UF.C.closure(function (obj) {
  3829. //防止拖动图标即打开了桌面应用
  3830. U.MD.D.click(this, obj);
  3831. }, [_SONGteacherDesktopIconInfo[i]]),
  3832. "onclick": U.UF.C.closure(function (obj) {
  3833. //防止拖动图标即打开了桌面应用
  3834. U.MD.D.click(this, obj);
  3835. }, [_SONGteacherDesktopIconInfo[i]])
  3836. }, _frag); //
  3837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3840. }
  3841. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3842. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3843. _content = $$("div", {
  3844. className: "U_MD_D_KO",
  3845. "onmousedown": U.UF.C.closure(function (obj) {
  3846. //防止拖动图标即打开了桌面应用
  3847. U.MD.D.click(this, obj);
  3848. }, [_GMstudentDesktopIconInfo[i]]),
  3849. "onclick": U.UF.C.closure(function (obj) {
  3850. //防止拖动图标即打开了桌面应用
  3851. U.MD.D.click(this, obj);
  3852. }, [_GMstudentDesktopIconInfo[i]])
  3853. }, _frag); //
  3854. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3855. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3856. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3857. }
  3858. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3859. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3860. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3861. continue
  3862. }
  3863. _content = $$("div", {
  3864. className: "U_MD_D_KO",
  3865. "onmousedown": U.UF.C.closure(function (obj) {
  3866. //防止拖动图标即打开了桌面应用
  3867. U.MD.D.click(this, obj);
  3868. }, [_tcTeacherDeskIconInfo[i]]),
  3869. "onclick": U.UF.C.closure(function (obj) {
  3870. //防止拖动图标即打开了桌面应用
  3871. U.MD.D.click(this, obj);
  3872. }, [_tcTeacherDeskIconInfo[i]])
  3873. }, _frag); //
  3874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3877. }
  3878. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3879. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3880. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3881. continue
  3882. }
  3883. _content = $$("div", {
  3884. className: "U_MD_D_KO",
  3885. "onmousedown": U.UF.C.closure(function (obj) {
  3886. //防止拖动图标即打开了桌面应用
  3887. U.MD.D.click(this, obj);
  3888. }, [_tcOrganizerDeskIconInfo[i]]),
  3889. "onclick": U.UF.C.closure(function (obj) {
  3890. //防止拖动图标即打开了桌面应用
  3891. U.MD.D.click(this, obj);
  3892. }, [_tcOrganizerDeskIconInfo[i]])
  3893. }, _frag); //
  3894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3897. }
  3898. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3899. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3900. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3901. continue
  3902. }
  3903. _content = $$("div", {
  3904. className: "U_MD_D_KO",
  3905. "onmousedown": U.UF.C.closure(function (obj) {
  3906. //防止拖动图标即打开了桌面应用
  3907. U.MD.D.click(this, obj);
  3908. }, [_szscTeacherDeskIconInfo[i]]),
  3909. "onclick": U.UF.C.closure(function (obj) {
  3910. //防止拖动图标即打开了桌面应用
  3911. U.MD.D.click(this, obj);
  3912. }, [_szscTeacherDeskIconInfo[i]])
  3913. }, _frag); //
  3914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3917. }
  3918. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3919. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3920. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3921. continue
  3922. }
  3923. _content = $$("div", {
  3924. className: "U_MD_D_KO",
  3925. "onmousedown": U.UF.C.closure(function (obj) {
  3926. //防止拖动图标即打开了桌面应用
  3927. U.MD.D.click(this, obj);
  3928. }, [_szscOrganizerDeskIconInfo[i]]),
  3929. "onclick": U.UF.C.closure(function (obj) {
  3930. //防止拖动图标即打开了桌面应用
  3931. U.MD.D.click(this, obj);
  3932. }, [_szscOrganizerDeskIconInfo[i]])
  3933. }, _frag); //
  3934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3937. }
  3938. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3939. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3940. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3941. continue
  3942. }
  3943. _content = $$("div", {
  3944. className: "U_MD_D_KO",
  3945. "onmousedown": U.UF.C.closure(function (obj) {
  3946. //防止拖动图标即打开了桌面应用
  3947. U.MD.D.click(this, obj);
  3948. }, [_nsfxTeacherDeskIconInfo[i]]),
  3949. "onclick": U.UF.C.closure(function (obj) {
  3950. //防止拖动图标即打开了桌面应用
  3951. U.MD.D.click(this, obj);
  3952. }, [_nsfxTeacherDeskIconInfo[i]])
  3953. }, _frag); //
  3954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3957. }
  3958. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3959. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3960. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3961. continue
  3962. }
  3963. _content = $$("div", {
  3964. className: "U_MD_D_KO",
  3965. "onmousedown": U.UF.C.closure(function (obj) {
  3966. //防止拖动图标即打开了桌面应用
  3967. U.MD.D.click(this, obj);
  3968. }, [_stiaTeacherDeskIconInfo[i]]),
  3969. "onclick": U.UF.C.closure(function (obj) {
  3970. //防止拖动图标即打开了桌面应用
  3971. U.MD.D.click(this, obj);
  3972. }, [_stiaTeacherDeskIconInfo[i]])
  3973. }, _frag); //
  3974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3977. }
  3978. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3979. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3980. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3981. continue
  3982. }
  3983. _content = $$("div", {
  3984. className: "U_MD_D_KO",
  3985. "onmousedown": U.UF.C.closure(function (obj) {
  3986. //防止拖动图标即打开了桌面应用
  3987. U.MD.D.click(this, obj);
  3988. }, [_szdjgTeacherDeskIconInfo[i]]),
  3989. "onclick": U.UF.C.closure(function (obj) {
  3990. //防止拖动图标即打开了桌面应用
  3991. U.MD.D.click(this, obj);
  3992. }, [_szdjgTeacherDeskIconInfo[i]])
  3993. }, _frag); //
  3994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3997. }
  3998. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3999. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4000. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4001. continue
  4002. }
  4003. _content = $$("div", {
  4004. className: "U_MD_D_KO",
  4005. "onmousedown": U.UF.C.closure(function (obj) {
  4006. //防止拖动图标即打开了桌面应用
  4007. U.MD.D.click(this, obj);
  4008. }, [_x010607TeacherDeskIconInfo[i]]),
  4009. "onclick": U.UF.C.closure(function (obj) {
  4010. //防止拖动图标即打开了桌面应用
  4011. U.MD.D.click(this, obj);
  4012. }, [_x010607TeacherDeskIconInfo[i]])
  4013. }, _frag); //
  4014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4017. }
  4018. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4019. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4020. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4021. continue
  4022. }
  4023. _content = $$("div", {
  4024. className: "U_MD_D_KO",
  4025. "onmousedown": U.UF.C.closure(function (obj) {
  4026. //防止拖动图标即打开了桌面应用
  4027. U.MD.D.click(this, obj);
  4028. }, [_xhlyTeacherDeskIconInfo[i]]),
  4029. "onclick": U.UF.C.closure(function (obj) {
  4030. //防止拖动图标即打开了桌面应用
  4031. U.MD.D.click(this, obj);
  4032. }, [_xhlyTeacherDeskIconInfo[i]])
  4033. }, _frag); //
  4034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4037. }
  4038. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4039. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4040. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4041. continue
  4042. }
  4043. _content = $$("div", {
  4044. className: "U_MD_D_KO",
  4045. "onmousedown": U.UF.C.closure(function (obj) {
  4046. //防止拖动图标即打开了桌面应用
  4047. U.MD.D.click(this, obj);
  4048. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4049. "onclick": U.UF.C.closure(function (obj) {
  4050. //防止拖动图标即打开了桌面应用
  4051. U.MD.D.click(this, obj);
  4052. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4053. }, _frag); //
  4054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4057. }
  4058. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4059. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4060. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4061. continue
  4062. }
  4063. _content = $$("div", {
  4064. className: "U_MD_D_KO",
  4065. "onmousedown": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_x010503TeacherDeskIconInfo[i]]),
  4069. "onclick": U.UF.C.closure(function (obj) {
  4070. //防止拖动图标即打开了桌面应用
  4071. U.MD.D.click(this, obj);
  4072. }, [_x010503TeacherDeskIconInfo[i]])
  4073. }, _frag); //
  4074. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4075. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4076. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4077. }
  4078. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4079. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4080. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4081. continue
  4082. }
  4083. _content = $$("div", {
  4084. className: "U_MD_D_KO",
  4085. "onmousedown": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_x010504TeacherDeskIconInfo[i]]),
  4089. "onclick": U.UF.C.closure(function (obj) {
  4090. //防止拖动图标即打开了桌面应用
  4091. U.MD.D.click(this, obj);
  4092. }, [_x010504TeacherDeskIconInfo[i]])
  4093. }, _frag); //
  4094. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4095. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4096. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4097. }
  4098. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4099. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4100. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4101. continue
  4102. }
  4103. _content = $$("div", {
  4104. className: "U_MD_D_KO",
  4105. "onmousedown": U.UF.C.closure(function (obj) {
  4106. //防止拖动图标即打开了桌面应用
  4107. U.MD.D.click(this, obj);
  4108. }, [_x010204TeacherDeskIconInfo[i]]),
  4109. "onclick": U.UF.C.closure(function (obj) {
  4110. //防止拖动图标即打开了桌面应用
  4111. U.MD.D.click(this, obj);
  4112. }, [_x010204TeacherDeskIconInfo[i]])
  4113. }, _frag); //
  4114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4117. }
  4118. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4119. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4120. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4121. continue
  4122. }
  4123. _content = $$("div", {
  4124. className: "U_MD_D_KO",
  4125. "onmousedown": U.UF.C.closure(function (obj) {
  4126. //防止拖动图标即打开了桌面应用
  4127. U.MD.D.click(this, obj);
  4128. }, [_x320101TeacherDeskIconInfo[i]]),
  4129. "onclick": U.UF.C.closure(function (obj) {
  4130. //防止拖动图标即打开了桌面应用
  4131. U.MD.D.click(this, obj);
  4132. }, [_x320101TeacherDeskIconInfo[i]])
  4133. }, _frag); //
  4134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4137. }
  4138. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4139. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4140. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4141. continue
  4142. }
  4143. _content = $$("div", {
  4144. className: "U_MD_D_KO",
  4145. "onmousedown": U.UF.C.closure(function (obj) {
  4146. //防止拖动图标即打开了桌面应用
  4147. U.MD.D.click(this, obj);
  4148. }, [_trailTeacherDeskIconInfo[i]]),
  4149. "onclick": U.UF.C.closure(function (obj) {
  4150. //防止拖动图标即打开了桌面应用
  4151. U.MD.D.click(this, obj);
  4152. }, [_trailTeacherDeskIconInfo[i]])
  4153. }, _frag); //
  4154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4157. }
  4158. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4159. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4160. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4161. continue
  4162. }
  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. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4169. "onclick": U.UF.C.closure(function (obj) {
  4170. //防止拖动图标即打开了桌面应用
  4171. U.MD.D.click(this, obj);
  4172. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4173. }, _frag); //
  4174. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4175. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4176. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4177. }
  4178. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4179. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4180. if(_role === 0 && _x010608TeacherDeskIconInfo[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. }, [_x010608TeacherDeskIconInfo[i]]),
  4189. "onclick": U.UF.C.closure(function (obj) {
  4190. //防止拖动图标即打开了桌面应用
  4191. U.MD.D.click(this, obj);
  4192. }, [_x010608TeacherDeskIconInfo[i]])
  4193. }, _frag); //
  4194. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4195. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4196. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4197. }
  4198. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4199. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4200. if(_role === 0 && _x010611TeacherDeskIconInfo[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. }, [_x010611TeacherDeskIconInfo[i]]),
  4209. "onclick": U.UF.C.closure(function (obj) {
  4210. //防止拖动图标即打开了桌面应用
  4211. U.MD.D.click(this, obj);
  4212. }, [_x010611TeacherDeskIconInfo[i]])
  4213. }, _frag); //
  4214. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4215. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4216. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4217. }
  4218. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4219. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4220. if(_role === 0 && _tianyuanTeacherDeskIconInfo[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. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4229. "onclick": U.UF.C.closure(function (obj) {
  4230. //防止拖动图标即打开了桌面应用
  4231. U.MD.D.click(this, obj);
  4232. }, [_tianyuanTeacherDeskIconInfo[i]])
  4233. }, _frag); //
  4234. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4235. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4236. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4237. }
  4238. } else {
  4239. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4240. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  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. }, [_teacherDesktopIconInfo[i]]),
  4249. "onclick": U.UF.C.closure(function (obj) {
  4250. //防止拖动图标即打开了桌面应用
  4251. U.MD.D.click(this, obj);
  4252. }, [_teacherDesktopIconInfo[i]])
  4253. }, _frag); //
  4254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4257. }
  4258. }
  4259. } else {
  4260. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4261. _content = $$("div", {
  4262. className: "U_MD_D_KO",
  4263. style: { 'width': '124px', 'height': '145px' },
  4264. "onmousedown": U.UF.C.closure(function (obj) {
  4265. //防止拖动图标即打开了桌面应用
  4266. U.MD.D.click(this, obj);
  4267. }, [_easyDesktopIconInfo[i]]),
  4268. "onclick": U.UF.C.closure(function (obj) {
  4269. //防止拖动图标即打开了桌面应用
  4270. U.MD.D.click(this, obj);
  4271. }, [_easyDesktopIconInfo[i]])
  4272. }, _frag); //
  4273. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4276. }
  4277. }
  4278. if (type == 1) {
  4279. //加载好后给图标定位
  4280. U.MD.D.iconPostion($(_frag).Child());
  4281. } else {
  4282. //加载好后给图标定位
  4283. U.MD.D.iconPostion2($(_frag).Child());
  4284. }
  4285. //把图标加载到页面
  4286. el.appendChild(_frag);
  4287. }
  4288. /**
  4289. * 显示任务栏
  4290. *
  4291. * @param {element} 桌面元素
  4292. */
  4293. U.MD.D.I.displayTaskbar = function (el) {
  4294. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4295. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4296. //任务栏位置变化
  4297. U.selectEl(el).css({ "bottom": "0px" });
  4298. //桌面位置变话
  4299. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4300. }
  4301. }
  4302. //#region 桌面图标拖动逻辑
  4303. /**
  4304. * 桌面排列图标
  4305. *
  4306. * @param {element} 桌面元素
  4307. * @param {object} 上下相距的距离
  4308. * @param {object} 左右相距的距离
  4309. * @return {object} 命名空间
  4310. */
  4311. U.MD.D.iconPostion = function (childs, top, left) {
  4312. var i; //用于循环处理
  4313. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4314. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4315. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4316. for (i = 0; i < childs.length; i++) {
  4317. //如果竖排top超过了范围处理
  4318. if (top + 95 > US.height - 10) {
  4319. //left超过了页面范围处理,则向上重叠打印处理
  4320. if ((left + 180) > US.width) {
  4321. top -= 110;
  4322. left -= 90;
  4323. }
  4324. //没有超过范围,那么left+90添加到下一个竖排打印
  4325. else {
  4326. left += 90;
  4327. top = 15;
  4328. };
  4329. }
  4330. //给图标的位置赋值
  4331. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4332. if (i < childs.length - 1) {
  4333. //页面图标每次向下加95
  4334. top += 95;
  4335. }
  4336. }
  4337. //返回最后调用的图标的位置
  4338. return [top, left];
  4339. }
  4340. /**
  4341. * 桌面排列图标
  4342. *
  4343. * @param {element} 桌面元素
  4344. * @param {object} 上下相距的距离
  4345. * @param {object} 左右相距的距离
  4346. * @return {object} 命名空间
  4347. */
  4348. U.MD.D.iconPostion2 = function (childs, top, left) {
  4349. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4350. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4351. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4352. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4353. for (i = 0; i < childs.length; i++) {
  4354. //如果竖排top超过了范围处理
  4355. if (left + 150 > US.width - 10) {
  4356. //left超过了页面范围处理,则向上重叠打印处理
  4357. if ((top + 180) > US.Height) {
  4358. top -= 150;
  4359. left -= 150;
  4360. }
  4361. //没有超过范围,那么left+90添加到下一个竖排打印
  4362. else {
  4363. top += 150;
  4364. left = ol;
  4365. };
  4366. }
  4367. //给图标的位置赋值
  4368. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4369. if (i < childs.length - 1) {
  4370. //页面图标每次向下加95
  4371. left += 150;
  4372. }
  4373. }
  4374. //返回最后调用的图标的位置
  4375. return [top, left];
  4376. }
  4377. /**
  4378. * 桌面点击事件逻辑
  4379. *
  4380. * @param {element} 桌面元素
  4381. * @param {object} 上下相距的距离
  4382. * @param {object} 左右相距的距离
  4383. * @return {object} 命名空间
  4384. */
  4385. U.MD.D.click = function (el, obj) {
  4386. var _buttonnumber = event.button; //点击的按钮的事件值
  4387. var _userinfo = US.userInfo;
  4388. U.UF.EV.stopBubble(); //阻止向上冒泡
  4389. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4390. if (_buttonnumber < 2) {
  4391. //如果是click事件的处理
  4392. if (event.type == "click") {
  4393. //如果元素在mousemove事件中没有移动则出发click事件
  4394. if (!U.MD.D.I.IsDrag) {
  4395. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4396. U.alert("请先登录您的账号!");
  4397. setTimeout(() => {
  4398. U.MD.U.L.login();
  4399. }, 2000);
  4400. } else {
  4401. //打开应用处理
  4402. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4403. }
  4404. }
  4405. }
  4406. //如果是mouse事件的处理
  4407. else {
  4408. if (US.Config.type == '1') {
  4409. //拖动处理,添加拖动和拖动结束事件
  4410. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4411. }
  4412. }
  4413. U.MD.D.I.IsDrag = false;
  4414. }
  4415. }
  4416. /**
  4417. * 拖动的处理
  4418. *
  4419. */
  4420. U.MD.D.iconMove = function () {
  4421. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4422. U.MD.D.I.IsDrag = true;
  4423. }
  4424. /**
  4425. * 拖动结束后,这里是定位处理,以网状的形式定位
  4426. *
  4427. * @param {element} 拖动的元素
  4428. * @return {object} 命名空间
  4429. */
  4430. U.MD.D.iconUp = function (el) {
  4431. var _top = 15,
  4432. _left = 20,
  4433. _margin,
  4434. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4435. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4436. if (_positioninfo["OT"] > 15) {
  4437. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4438. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4439. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4440. }
  4441. if (_positioninfo["OL"] > 20) {
  4442. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4443. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4444. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4445. }
  4446. //while循环判断么一个重叠的元素
  4447. do {
  4448. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4449. _top = _positioninfo[0] + 95; //得到定位后的top
  4450. _left = _positioninfo[1]; //得到定位后的left
  4451. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4452. }
  4453. /**
  4454. * 判断拖动后图标是否重叠
  4455. *
  4456. * @param {element} 拖动的元素
  4457. * @param {element} 桌面所有的元素
  4458. * @param {array} 拖动元素的位置
  4459. ----------[0] 上 top
  4460. ----------[1] 左 left
  4461. * @return {object} 命名空间
  4462. */
  4463. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4464. //循环所有的图标
  4465. for (var i = 0; i < childs.length; i++) {
  4466. //判断有没有和该图标诶子重叠的元素
  4467. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4468. return childs[i]; //如果有返回
  4469. }
  4470. }
  4471. }
  4472. //#endregion
  4473. //#endregion
  4474. //#region 桌面应用
  4475. /**
  4476. * 打开应用
  4477. *
  4478. * @param {string} 类型
  4479. -----------------Disk 网盘系统
  4480. -----------------PDisk 学习系统网盘
  4481. -----------------Poto 图片
  4482. -----------------Video 视频
  4483. -----------------Music 音乐
  4484. -----------------Word word
  4485. -----------------Excel excel
  4486. -----------------Txt 记事本
  4487. -----------------PB 学习系统
  4488. -----------------Blog 朋友圈系统
  4489. -----------------FTP ftp系统
  4490. -----------------Group 好友群
  4491. -----------------SY 首页系统
  4492. -----------------Set 个人设置
  4493. -----------------XSet 系统设置
  4494. -----------------App 我们所有的app
  4495. -----------------BC c.1473.cn 平台
  4496. -----------------CWeb d.1473.cn 变成平台
  4497. -----------------其他的外联系统 我们统一用iframe打开
  4498. * @param {array} 类型
  4499. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4500. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4501. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4502. 如果第一个参数为其他,则无第二个参数
  4503. * @returns {array}
  4504. */
  4505. window.addEventListener('message', function (e) { // 监听 message 事件
  4506. // alert(e.data.type);
  4507. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4508. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4509. //3是展示全部阶段 2学生 1老师 4专家
  4510. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4511. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4512. //3是展示全部阶段 2学生 1老师 4专家
  4513. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4514. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4515. //3是展示全部阶段 2学生 1老师 4专家
  4516. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4517. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4518. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4519. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4520. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4521. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4522. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4523. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4524. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4525. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4526. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4527. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4528. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4529. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4530. //3是展示全部阶段 2学生 1老师 4专家
  4531. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4532. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4533. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4534. U.MD.D.I.selectUser();
  4535. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4536. var _formel = document.getElementById("study");
  4537. U.UF.F.windowZooming(_formel);
  4538. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4539. var _formel = document.getElementById("studyDetail");
  4540. U.UF.F.windowZooming(_formel);
  4541. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4542. var _formel = document.getElementById("studyDetail");
  4543. U.UF.F.windowZooming(_formel);
  4544. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4545. var _formel = document.getElementById("studentStudy");
  4546. U.UF.F.windowZooming(_formel);
  4547. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4548. // var _formel = document.getElementById("study");
  4549. //如果最大化了,那么就把他缩小
  4550. // if (_formel.ismaximize) {
  4551. // return;
  4552. // }
  4553. // U.UF.F.windowZooming(_formel);
  4554. // U.UF.F.topWindow(_formel);
  4555. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4556. // var _formel = document.getElementById("studyDetail");
  4557. //如果最大化了,那么就把他缩小
  4558. // if (_formel.ismaximize) {
  4559. // return;
  4560. // }
  4561. // U.UF.F.windowZooming(_formel);
  4562. // U.UF.F.topWindow(_formel);
  4563. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4564. // var _formel = document.getElementById("studentStudy");
  4565. // if (_formel.ismaximize) {
  4566. // return;
  4567. // }
  4568. // U.UF.F.windowZooming(_formel);
  4569. // U.UF.F.topWindow(_formel);
  4570. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4571. var _formel = document.getElementById("study");
  4572. // if (_formel.ismaximize) {
  4573. // return;
  4574. // }
  4575. // U.UF.F.windowZooming(_formel);
  4576. U.UF.F.topWindow(_formel);
  4577. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4578. var _formel = document.getElementById("studentIndex");
  4579. U.UF.F.windowZooming(_formel);
  4580. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4581. var _formel = document.getElementById("studyDetailS");
  4582. U.UF.F.windowZooming(_formel);
  4583. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4584. var _formel = document.getElementById("studioIndex");
  4585. U.UF.F.windowZooming(_formel);
  4586. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4587. var _formel = document.getElementById("studyDetailStudio");
  4588. U.UF.F.windowZooming(_formel);
  4589. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4590. var _formel = document.getElementById("studyDetailStudio");
  4591. U.UF.F.windowZooming(_formel);
  4592. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4593. var _formel = document.getElementById("studyDetailNT");
  4594. U.UF.F.windowZooming(_formel);
  4595. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4596. var _formel = document.getElementById("studyDetailS");
  4597. U.UF.F.windowZooming(_formel);
  4598. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4599. var _formel = document.getElementById("studyDetailS");
  4600. U.UF.F.topWindow(_formel);
  4601. } else if (e.data.tools && e.data.tools == "1") {
  4602. // U.MD.D.I.openApplication("whiteboard")
  4603. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4604. } else if (e.data.tools && e.data.tools == "2") {
  4605. U.MD.D.I.openApplication("note")
  4606. } else if (e.data.tools && e.data.tools == "3") {
  4607. // U.MD.D.I.openApplication("mind")
  4608. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4609. } else if (e.data.tools && e.data.tools == "4") {
  4610. U.MD.D.I.openApplication("investigation")
  4611. } else if (e.data.tools && e.data.tools == "6") {
  4612. // U.MD.D.I.openApplication("doc")
  4613. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4614. } else if (e.data.tools && e.data.tools == "7") {
  4615. // U.MD.D.I.openApplication("mindNetwork")
  4616. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4617. } else if (e.data.tools && e.data.tools == "8") {
  4618. U.MD.D.I.openApplication("library")
  4619. } else if (e.data.tools && e.data.tools == "17") {
  4620. U.MD.D.I.openApplication("stuLibrary")
  4621. } else if (e.data.tools && e.data.tools == "18") {
  4622. U.MD.D.I.openApplication("train")
  4623. } else if (e.data.tools && e.data.tools == "21") {
  4624. U.MD.D.I.openApplication("program")
  4625. } else if (e.data.tools && e.data.tools == "22") {
  4626. U.MD.D.I.openApplication("AIprogram2")
  4627. } else if (e.data.tools && e.data.tools == "23") {
  4628. U.MD.D.I.openApplication("Pythonprogram")
  4629. } else if (e.data.tools && e.data.tools == "24") {
  4630. U.MD.D.I.openApplication("AIprogram")
  4631. } else if (e.data.tools && e.data.tools == "25") {
  4632. U.MD.D.I.openApplication("sys")
  4633. } else if (e.data.tools && e.data.tools == "26") {
  4634. // U.MD.D.I.openApplication("courseDesign")
  4635. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4636. } else if (e.data.tools && e.data.tools == "31") {
  4637. U.MD.D.I.openApplication("netWorkPanel")
  4638. } else if (e.data.tools && e.data.tools == "32") {
  4639. U.MD.D.I.openApplication("codeEdit")
  4640. } else if (e.data.tools && e.data.tools == "57") {
  4641. U.MD.D.I.openApplication("CocoPi")
  4642. } else if (e.data.tools && e.data.tools == "63") {
  4643. U.MD.D.I.openApplication("Wood")
  4644. } else if (e.data.tools && e.data.tools == "58") {
  4645. U.MD.D.I.openApplication("car")
  4646. } else if (e.data.tools && e.data.tools == "59") {
  4647. U.MD.D.I.openApplication("lineSearch")
  4648. } else if (e.data.tools && e.data.tools == "60") {
  4649. U.MD.D.I.openApplication("deepLearning")
  4650. } else if (e.data.tools && e.data.tools == "61") {
  4651. U.MD.D.I.openApplication("allHistory")
  4652. } else if (e.data.tools && e.data.tools == "28") {
  4653. U.MD.D.I.openApplication("translation")
  4654. } else if (e.data.tools && e.data.tools == "37") {
  4655. U.MD.D.I.openApplication("mohe")
  4656. } else if (e.data.tools && e.data.tools == "38") {
  4657. U.MD.D.I.openApplication("24game")
  4658. } else if (e.data.tools && e.data.tools == "39") {
  4659. U.MD.D.I.openApplication("GeoGebra")
  4660. } else if (e.data.tools && e.data.tools == "43") {
  4661. U.MD.D.I.openApplication("studentEvaluate")
  4662. } else if (e.data.tools && e.data.tools == "44") {
  4663. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4664. } else if (e.data.tools && e.data.tools == "46") {
  4665. U.MD.D.I.openApplication("project")
  4666. } else if (e.data.tools && e.data.tools == "71") {
  4667. U.MD.D.I.openApplication("aigptCourse")
  4668. } else if (e.data.tools && e.data.tools == "1s") {
  4669. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4670. } else if (e.data.tools && e.data.tools == "3s") {
  4671. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4672. } else if (e.data.tools && e.data.tools == "6s") {
  4673. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4674. } else if (e.data.tools && e.data.tools == "1studio") {
  4675. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4676. } else if (e.data.tools && e.data.tools == "3studio") {
  4677. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4678. } else if (e.data.tools && e.data.tools == "6studio") {
  4679. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4680. } else if (e.data.tools && e.data.tools == "3y") {
  4681. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4682. } else if (e.data.tools && e.data.tools == "1y") {
  4683. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4684. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4685. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4686. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4687. U.MD.D.I.openApplication("AIAnalyse")
  4688. } else if (e.data.tools && e.data.tools == "1teacher") {
  4689. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4690. } else if (e.data.tools && e.data.tools == "3teacher") {
  4691. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4692. } else if (e.data.tools && e.data.tools == "7teacher") {
  4693. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4694. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4695. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4696. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4697. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4698. } else if (e.data.tools && e.data.tools == "1E") {
  4699. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4700. } else if (e.data.tools && e.data.tools == "3E") {
  4701. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4702. } else if (e.data.tools && e.data.tools == "57y") {
  4703. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4704. } else if (e.data.tools && e.data.tools == "57u") {
  4705. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4706. } else if (e.data.tools && e.data.tools == "57teacher") {
  4707. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4708. } else if (e.data.tools && e.data.tools == "64") {
  4709. U.MD.D.I.openApplication("AIChat")
  4710. } else if (e.data.tools && e.data.tools == "66") {
  4711. U.MD.D.I.openApplication("formulaEdi")
  4712. } else if (e.data.tools && e.data.tools == "67") {
  4713. U.MD.D.I.openApplication("molStr")
  4714. } else if (e.data.tools && e.data.tools == "68") {
  4715. U.MD.D.I.openApplication("timeAxis")
  4716. } else if (e.data.tools && e.data.tools == "openCourse") {
  4717. let _data = {
  4718. typea: e.data.typea || '',
  4719. typeb: e.data.typeb || '',
  4720. typed: e.data.typed || '',
  4721. }
  4722. U.MD.D.I.openInApplication("index", _data)
  4723. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4724. let _data = {
  4725. classid: e.data.classid || '',
  4726. }
  4727. U.MD.D.I.openInApplication("dataClass", _data)
  4728. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4729. let _data = {
  4730. cid: e.data.cid || '',
  4731. gid: e.data.gid || '',
  4732. }
  4733. U.MD.D.I.openInApplication("opencCscl", _data)
  4734. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4735. U.MD.D.I.openApplication("dataBoardTest")
  4736. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4737. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4738. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4739. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4740. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4741. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4742. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4743. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4744. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4745. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4746. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4747. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4748. }else if (e.data.tools && e.data.tools == "loginSz") {
  4749. U.MD.D.I.openInApplication("loginSz")
  4750. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4751. if($('#classroom_observation_board')[0]){
  4752. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4753. }
  4754. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4755. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4756. if($('#classroom_observation_ob_comment')[0]){
  4757. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4758. }
  4759. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4760. }else if (e.data.tools && e.data.tools == "logout"){
  4761. U.MD.U.LO.logoutSystem()
  4762. }else if (e.data.tools && e.data.tools == "getLogin"){
  4763. let _iframe = $('#UI_Login')[0];
  4764. if (_iframe) {
  4765. var userInfo = US.userInfo;
  4766. var type = 2
  4767. if(userInfo && userInfo.userid){
  4768. type = 1
  4769. }
  4770. _contentWindow = _iframe.contentWindow;
  4771. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4772. }
  4773. }
  4774. });
  4775. U.MD.D.I.selectUser = function () {
  4776. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4777. if (res.value[0].length > 0) {
  4778. US.userInfo = res.value[0][0];
  4779. $(".userName")[0].innerHTML = US.userInfo.username;
  4780. }
  4781. }, [], { "type": "GET", "withCredentials": true });
  4782. }
  4783. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4784. var _userinfo = US.userInfo, //登录用户信息
  4785. _userid = US.userInfo.userid, //登录用户id
  4786. _oid = _userinfo.organizeid,
  4787. _type = US.userInfo.type,
  4788. _org = US.userInfo.org,
  4789. _role = US.userInfo.role,
  4790. _classId = US.userInfo.classid;
  4791. if (_type == 4) {
  4792. tType = 4
  4793. }
  4794. switch (str) {
  4795. case "studyDetailNT": //无终端模式
  4796. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4797. setTimeout(() => {
  4798. U.MD.U.L.login();
  4799. }, 2000);
  4800. } else {
  4801. _formdiv = new U.UF.UI.form(
  4802. "课程详情",
  4803. $$("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 }), {
  4804. "id": "studyDetailNT",
  4805. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4806. "onresize": function () { }
  4807. }, {
  4808. closecallback: function () { }
  4809. }, { "style": { "height": "36px" } }).form; //创建窗体
  4810. _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); } }
  4811. break;
  4812. }
  4813. case "studyDetail":
  4814. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4815. setTimeout(() => {
  4816. U.MD.U.L.login();
  4817. }, 2000);
  4818. } else {
  4819. _formdiv = new U.UF.UI.form(
  4820. "课程详情",
  4821. $$("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 }), {
  4822. "id": "studyDetail",
  4823. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4824. "onresize": function () { }
  4825. }, {
  4826. closecallback: function () { }
  4827. }, { "style": { "height": "36px" } }).form; //创建窗体
  4828. _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); } }
  4829. break;
  4830. }
  4831. case "studyDetailTrain":
  4832. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4833. setTimeout(() => {
  4834. U.MD.U.L.login();
  4835. }, 2000);
  4836. } else {
  4837. _formdiv = new U.UF.UI.form(
  4838. "培训详情",
  4839. $$("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 }), {
  4840. "id": "studyDetailTrain",
  4841. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4842. "onresize": function () { }
  4843. }, {
  4844. closecallback: function () { }
  4845. }, { "style": { "height": "36px" } }).form; //创建窗体
  4846. _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); } }
  4847. break;
  4848. }
  4849. case "studyDetailS":
  4850. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4851. setTimeout(() => {
  4852. U.MD.U.L.login();
  4853. }, 2000);
  4854. } else {
  4855. _formdiv = new U.UF.UI.form(
  4856. "项目详情",
  4857. $$("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 }), {
  4858. "id": "studyDetailS",
  4859. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4860. "onresize": function () { }
  4861. }, {
  4862. closecallback: function () { }
  4863. }, { "style": { "height": "36px" } }).form; //创建窗体
  4864. _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); } }
  4865. break;
  4866. }
  4867. case "studyDetailStudio":
  4868. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4869. setTimeout(() => {
  4870. U.MD.U.L.login();
  4871. }, 2000);
  4872. } else {
  4873. _formdiv = new U.UF.UI.form(
  4874. "工作详情",
  4875. $$("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 }), {
  4876. "id": "studyDetailStudio",
  4877. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4878. "onresize": function () { }
  4879. }, {
  4880. closecallback: function () { }
  4881. }, { "style": { "height": "36px" } }).form; //创建窗体
  4882. _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); } }
  4883. break;
  4884. }
  4885. case "studyDetailS5":
  4886. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4887. setTimeout(() => {
  4888. U.MD.U.L.login();
  4889. }, 2000);
  4890. } else {
  4891. _formdiv = new U.UF.UI.form(
  4892. "项目详情",
  4893. $$("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 }), {
  4894. "id": "studyDetailS",
  4895. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4896. "onresize": function () { }
  4897. }, {
  4898. closecallback: function () { }
  4899. }, { "style": { "height": "36px" } }).form; //创建窗体
  4900. _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); } }
  4901. break;
  4902. }
  4903. case "studyDetailGM":
  4904. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4905. setTimeout(() => {
  4906. U.MD.U.L.login();
  4907. }, 2000);
  4908. } else {
  4909. _formdiv = new U.UF.UI.form(
  4910. "课程详情",
  4911. $$("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 }), {
  4912. "id": "studyDetail",
  4913. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. _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); } }
  4919. break;
  4920. }
  4921. case "hanUrl":
  4922. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4923. setTimeout(() => {
  4924. U.MD.U.L.login();
  4925. }, 2000);
  4926. } else {
  4927. _formdiv = new U.UF.UI.form(
  4928. "汉字宫",
  4929. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  4930. "id": "hanUrl",
  4931. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4932. "onresize": function () { }
  4933. }, {
  4934. closecallback: function () { }
  4935. }, { "style": { "height": "36px" } }).form; //创建窗体
  4936. _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); } }
  4937. break;
  4938. }
  4939. case "index":
  4940. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4941. setTimeout(() => {
  4942. U.MD.U.L.login();
  4943. }, 2000);
  4944. } else {
  4945. _formdiv = new U.UF.UI.form(
  4946. "课程中心",
  4947. $$("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 }), {
  4948. "id": "study",
  4949. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4950. "onresize": function () { }
  4951. }, {
  4952. closecallback: function () { }
  4953. }, { "style": { "height": "36px" } }).form; //创建窗体
  4954. _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); } }
  4955. break;
  4956. }
  4957. case "dataClass":
  4958. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4959. setTimeout(() => {
  4960. U.MD.U.L.login();
  4961. }, 2000);
  4962. } else {
  4963. _formdiv = new U.UF.UI.form(
  4964. "数据报告",
  4965. $$("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 }), {
  4966. "id": "dataClass",
  4967. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4968. "onresize": function () { }
  4969. }, {
  4970. closecallback: function () { }
  4971. }, { "style": { "height": "36px" } }).form; //创建窗体
  4972. _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); } }
  4973. break;
  4974. }
  4975. case "opencCscl":
  4976. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4977. setTimeout(() => {
  4978. U.MD.U.L.login();
  4979. }, 2000);
  4980. } else {
  4981. _formdiv = new U.UF.UI.form(
  4982. "协同建构",
  4983. $$("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 }), {
  4984. "id": "futureClass",
  4985. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4986. "onresize": function () { }
  4987. }, {
  4988. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4989. }, { "style": { "height": "36px" } }).form; //创建窗体
  4990. _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); } }
  4991. break;
  4992. }
  4993. case "openCourseUpdate":
  4994. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4995. setTimeout(() => {
  4996. U.MD.U.L.login();
  4997. }, 2000);
  4998. } else {
  4999. _formdiv = new U.UF.UI.form(
  5000. "课程管理",
  5001. $$("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 }), {
  5002. "id": "openCourseUpdate",
  5003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5004. "onresize": function () { }
  5005. }, {
  5006. closecallback: function () { }
  5007. }, { "style": { "height": "36px" } }).form; //创建窗体
  5008. break;
  5009. }
  5010. case "openNewCourseUpdate":
  5011. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5012. setTimeout(() => {
  5013. U.MD.U.L.login();
  5014. }, 2000);
  5015. } else {
  5016. _formdiv = new U.UF.UI.form(
  5017. "课程管理",
  5018. $$("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 }), {
  5019. "id": "openCourseUpdate",
  5020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5021. "onresize": function () { }
  5022. }, {
  5023. closecallback: function () { }
  5024. }, { "style": { "height": "36px" } }).form; //创建窗体
  5025. break;
  5026. }
  5027. case "openCourseEUpdate":
  5028. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5029. setTimeout(() => {
  5030. U.MD.U.L.login();
  5031. }, 2000);
  5032. } else {
  5033. _formdiv = new U.UF.UI.form(
  5034. "课程管理",
  5035. $$("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 }), {
  5036. "id": "openCourseUpdate",
  5037. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5038. "onresize": function () { }
  5039. }, {
  5040. closecallback: function () { }
  5041. }, { "style": { "height": "36px" } }).form; //创建窗体
  5042. break;
  5043. }
  5044. case "openCourseAiUpdate":
  5045. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5046. setTimeout(() => {
  5047. U.MD.U.L.login();
  5048. }, 2000);
  5049. } else {
  5050. _formdiv = new U.UF.UI.form(
  5051. "课程管理",
  5052. $$("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 }), {
  5053. "id": "openCourseUpdate",
  5054. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5055. "onresize": function () { }
  5056. }, {
  5057. closecallback: function () { }
  5058. }, { "style": { "height": "36px" } }).form; //创建窗体
  5059. break;
  5060. }
  5061. case "openCourseAiUpdate2":
  5062. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5063. setTimeout(() => {
  5064. U.MD.U.L.login();
  5065. }, 2000);
  5066. } else {
  5067. _formdiv = new U.UF.UI.form(
  5068. "课程管理",
  5069. $$("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 }), {
  5070. "id": "openCourseUpdate",
  5071. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5072. "onresize": function () { }
  5073. }, {
  5074. closecallback: function () { }
  5075. }, { "style": { "height": "36px" } }).form; //创建窗体
  5076. break;
  5077. }
  5078. case "openCourseNewUpdate":
  5079. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5080. setTimeout(() => {
  5081. U.MD.U.L.login();
  5082. }, 2000);
  5083. } else {
  5084. _formdiv = new U.UF.UI.form(
  5085. "课程管理",
  5086. $$("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 }), {
  5087. "id": "openCourseUpdate",
  5088. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5089. "onresize": function () { }
  5090. }, {
  5091. closecallback: function () { }
  5092. }, { "style": { "height": "36px" } }).form; //创建窗体
  5093. break;
  5094. }
  5095. case "inviteLoginSz":
  5096. _formdiv = new U.UF.UI.form(
  5097. "随机码登录",
  5098. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5099. "id": "loginSz",
  5100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //创建窗体
  5105. break;
  5106. case "loginSz":
  5107. _formdiv = new U.UF.UI.form(
  5108. "教师登录",
  5109. $$("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" }), {
  5110. "id": "loginSz",
  5111. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5112. "onresize": function () { }
  5113. }, {
  5114. closecallback: function () { }
  5115. }, { "style": { "height": "36px" } }).form; //创建窗体
  5116. break;
  5117. case "teacher":
  5118. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5119. setTimeout(() => {
  5120. U.MD.U.L.login();
  5121. }, 2000);
  5122. } else {
  5123. _formdiv = new U.UF.UI.form(
  5124. "教师管理",
  5125. $$("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 }), {
  5126. "id": "teacher",
  5127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5128. "onresize": function () { }
  5129. }, {
  5130. closecallback: function () { }
  5131. }, { "style": { "height": "36px" } }).form; //创建窗体
  5132. break;
  5133. }
  5134. case "dataBoardSZArea":
  5135. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5136. setTimeout(() => {
  5137. U.MD.U.L.login();
  5138. }, 2000);
  5139. } else {
  5140. _formdiv = new U.UF.UI.form(
  5141. "综合数据看板",
  5142. $$("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 }), {
  5143. "id": "dataBoardSZArea",
  5144. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5145. "onresize": function () { }
  5146. }, {
  5147. closecallback: function () { }
  5148. }, { "style": { "height": "36px" } }).form; //创建窗体
  5149. break;
  5150. }
  5151. case "dataBoardSZCity":
  5152. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5153. setTimeout(() => {
  5154. U.MD.U.L.login();
  5155. }, 2000);
  5156. } else {
  5157. _formdiv = new U.UF.UI.form(
  5158. "综合数据看板",
  5159. $$("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 }), {
  5160. "id": "dataBoardSZCity",
  5161. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. break;
  5167. }
  5168. case "classroom_observation_board":
  5169. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5170. setTimeout(() => {
  5171. U.MD.U.L.login();
  5172. }, 2000);
  5173. } else {
  5174. _formdiv = new U.UF.UI.form(
  5175. "课堂观察",
  5176. $$("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 }), {
  5177. "id": "classroom_observation_board",
  5178. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5179. "onresize": function () { }
  5180. }, {
  5181. closecallback: function () { }
  5182. }, { "style": { "height": "36px" } }).form; //创建窗体
  5183. break;
  5184. }
  5185. case "classroom_observation_ob_comment":
  5186. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5187. setTimeout(() => {
  5188. U.MD.U.L.login();
  5189. }, 2000);
  5190. } else {
  5191. _formdiv = new U.UF.UI.form(
  5192. "课堂审核",
  5193. $$("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 }), {
  5194. "id": "classroom_observation_ob_comment",
  5195. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5196. "onresize": function () { }
  5197. }, {
  5198. closecallback: function () { }
  5199. }, { "style": { "height": "36px" } }).form; //创建窗体
  5200. break;
  5201. }
  5202. }
  5203. }
  5204. U.MD.D.I.openApplication = function (str, obj, info) {
  5205. obj = obj || {};
  5206. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5207. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5208. _userinfo = US.userInfo, //登录用户信息
  5209. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5210. _oid = obj.organizeid || _userinfo.organizeid,
  5211. _type = US.userInfo.type,
  5212. _org = US.userInfo.org,
  5213. _role = US.userInfo.role,
  5214. _classId = US.userInfo.classid,
  5215. _TscreenType = 1
  5216. _screenType = 2,
  5217. _SscreenType = 3;
  5218. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5219. return;
  5220. }
  5221. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5222. switch (str) {
  5223. case "studnetProject": //好友打开
  5224. _formdiv = new U.UF.UI.form(
  5225. "我的项目",
  5226. $$("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 }), {
  5227. "id": "studnetProject",
  5228. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5229. "onresize": function () { }
  5230. }, {
  5231. closecallback: function () { }
  5232. }, { "style": { "height": "36px" } }).form; //创建窗体
  5233. _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); } }
  5234. break;
  5235. case "studentEvaluate": //好友打开
  5236. _formdiv = new U.UF.UI.form(
  5237. "我的评价",
  5238. $$("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 }), {
  5239. "id": "studentEvaluate",
  5240. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5241. "onresize": function () { }
  5242. }, {
  5243. closecallback: function () { }
  5244. }, { "style": { "height": "36px" } }).form; //创建窗体
  5245. _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); } }
  5246. break;
  5247. case "my":
  5248. _formdiv = new U.UF.UI.form(
  5249. "我的资料",
  5250. $$("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 }), {
  5251. "id": "my",
  5252. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5253. "onresize": function () { }
  5254. }, {
  5255. closecallback: function () { }
  5256. }, { "style": { "height": "36px" } }).form; //创建窗体
  5257. _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); } }
  5258. break;
  5259. case "program":
  5260. _formdiv = new U.UF.UI.form(
  5261. "编程平台",
  5262. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5263. "id": "program",
  5264. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5265. "onresize": function () { }
  5266. }, {
  5267. closecallback: function () { }
  5268. }, { "style": { "height": "36px" } }).form; //创建窗体
  5269. _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); } }
  5270. break;
  5271. case "library":
  5272. _formdiv = new U.UF.UI.form(
  5273. "素材库",
  5274. $$("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 }), {
  5275. "id": "library",
  5276. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5277. "onresize": function () { }
  5278. }, {
  5279. closecallback: function () { }
  5280. }, { "style": { "height": "36px" } }).form; //创建窗体
  5281. _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); } }
  5282. break;
  5283. case "whiteboard":
  5284. _formdiv = new U.UF.UI.form(
  5285. "电子白板",
  5286. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5287. "id": "whiteboard",
  5288. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5289. "onresize": function () { }
  5290. }, {
  5291. closecallback: function () { }
  5292. }, { "style": { "height": "36px" } }).form; //创建窗体
  5293. _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); } }
  5294. break;
  5295. case "investigation":
  5296. _formdiv = new U.UF.UI.form(
  5297. "问卷调查",
  5298. $$("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 }), {
  5299. "id": "investigation",
  5300. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5301. "onresize": function () { }
  5302. }, {
  5303. closecallback: function () { }
  5304. }, { "style": { "height": "36px" } }).form; //创建窗体
  5305. _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); } }
  5306. break;
  5307. case "note":
  5308. _formdiv = new U.UF.UI.form(
  5309. "便签分类",
  5310. $$("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 }), {
  5311. "id": "note",
  5312. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5313. "onresize": function () { }
  5314. }, {
  5315. closecallback: function () { }
  5316. }, { "style": { "height": "36px" } }).form; //创建窗体
  5317. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5318. break;
  5319. // case "score":
  5320. // _formdiv = new U.UF.UI.form(
  5321. // "量规评分",
  5322. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5323. // "id": "score",
  5324. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5325. // "onresize": function() {}
  5326. // }, {
  5327. // closecallback: function() {}
  5328. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5329. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5330. // break;
  5331. case "mind":
  5332. _formdiv = new U.UF.UI.form(
  5333. "思维导图",
  5334. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5335. "id": "mind",
  5336. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5337. "onresize": function () { }
  5338. }, {
  5339. closecallback: function () { }
  5340. }, { "style": { "height": "36px" } }).form; //创建窗体
  5341. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5342. break;
  5343. case "doc":
  5344. // U.MD.D.I.isRoom();
  5345. _formdiv = new U.UF.UI.form(
  5346. "协同文档",
  5347. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5348. "id": "doc",
  5349. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5350. "onresize": function () { }
  5351. }, {
  5352. closecallback: function () { }
  5353. }, { "style": { "height": "36px" } }).form; //创建窗体
  5354. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5355. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5356. // })
  5357. _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); } }
  5358. break;
  5359. case "studentStudy":
  5360. _formdiv = new U.UF.UI.form(
  5361. "课程中心",
  5362. $$("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
  5363. "id": "studentStudy",
  5364. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5365. "onresize": function () { }
  5366. }, {
  5367. closecallback: function () { }
  5368. }, { "style": { "height": "36px" } }).form; //创建窗体
  5369. _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); } }
  5370. break;
  5371. case "train": //好友打开
  5372. _formdiv = new U.UF.UI.form(
  5373. "训练平台",
  5374. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5375. "id": "train",
  5376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5377. "onresize": function () { }
  5378. }, {
  5379. closecallback: function () { }
  5380. }, { "style": { "height": "36px" } }).form; //创建窗体
  5381. _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); } }
  5382. break;
  5383. case "mindNetwork": //好友打开
  5384. _formdiv = new U.UF.UI.form(
  5385. "思维网格",
  5386. $$("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 }), {
  5387. "id": "mindNetwork",
  5388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5389. "onresize": function () { }
  5390. }, {
  5391. closecallback: function () { }
  5392. }, { "style": { "height": "36px" } }).form; //创建窗体
  5393. _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); } }
  5394. break;
  5395. case "studentClassRoom": //好友打开
  5396. _formdiv = new U.UF.UI.form(
  5397. "实时课堂",
  5398. $$("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 }), {
  5399. "id": "studentClassRoom",
  5400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5401. "onresize": function () { }
  5402. }, {
  5403. closecallback: function () { }
  5404. }, { "style": { "height": "36px" } }).form; //创建窗体
  5405. _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); } }
  5406. setTimeout(() => {
  5407. U.UF.F.windowZooming(_formdiv)
  5408. }, 0);
  5409. break;
  5410. }
  5411. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5412. switch (str) {
  5413. case "studnetProject": //好友打开
  5414. _formdiv = new U.UF.UI.form(
  5415. "我的项目",
  5416. $$("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 }), {
  5417. "id": "studnetProject",
  5418. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5419. "onresize": function () { }
  5420. }, {
  5421. closecallback: function () { }
  5422. }, { "style": { "height": "36px" } }).form; //创建窗体
  5423. _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); } }
  5424. break;
  5425. case "studentEvaluate": //好友打开
  5426. _formdiv = new U.UF.UI.form(
  5427. "我的评价",
  5428. $$("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 }), {
  5429. "id": "studentEvaluate",
  5430. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5431. "onresize": function () { }
  5432. }, {
  5433. closecallback: function () { }
  5434. }, { "style": { "height": "36px" } }).form; //创建窗体
  5435. _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); } }
  5436. break;
  5437. case "my":
  5438. _formdiv = new U.UF.UI.form(
  5439. "我的资料",
  5440. $$("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 }), {
  5441. "id": "my",
  5442. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. _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); } }
  5448. break;
  5449. case "program":
  5450. _formdiv = new U.UF.UI.form(
  5451. "编程平台",
  5452. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5453. "id": "program",
  5454. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5455. "onresize": function () { }
  5456. }, {
  5457. closecallback: function () { }
  5458. }, { "style": { "height": "36px" } }).form; //创建窗体
  5459. _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); } }
  5460. break;
  5461. case "library":
  5462. _formdiv = new U.UF.UI.form(
  5463. "素材库",
  5464. $$("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 }), {
  5465. "id": "library",
  5466. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5467. "onresize": function () { }
  5468. }, {
  5469. closecallback: function () { }
  5470. }, { "style": { "height": "36px" } }).form; //创建窗体
  5471. _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); } }
  5472. break;
  5473. case "whiteboard":
  5474. _formdiv = new U.UF.UI.form(
  5475. "电子白板",
  5476. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5477. "id": "whiteboard",
  5478. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5479. "onresize": function () { }
  5480. }, {
  5481. closecallback: function () { }
  5482. }, { "style": { "height": "36px" } }).form; //创建窗体
  5483. _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); } }
  5484. break;
  5485. case "investigation":
  5486. _formdiv = new U.UF.UI.form(
  5487. "问卷调查",
  5488. $$("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 }), {
  5489. "id": "investigation",
  5490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5491. "onresize": function () { }
  5492. }, {
  5493. closecallback: function () { }
  5494. }, { "style": { "height": "36px" } }).form; //创建窗体
  5495. _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); } }
  5496. break;
  5497. case "note":
  5498. _formdiv = new U.UF.UI.form(
  5499. "便签分类",
  5500. $$("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 }), {
  5501. "id": "note",
  5502. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5503. "onresize": function () { }
  5504. }, {
  5505. closecallback: function () { }
  5506. }, { "style": { "height": "36px" } }).form; //创建窗体
  5507. _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); } }
  5508. break;
  5509. // case "score":
  5510. // _formdiv = new U.UF.UI.form(
  5511. // "量规评分",
  5512. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5513. // "id": "score",
  5514. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5515. // "onresize": function() {}
  5516. // }, {
  5517. // closecallback: function() {}
  5518. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5519. // _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); } }
  5520. // break;
  5521. case "mind":
  5522. _formdiv = new U.UF.UI.form(
  5523. "思维导图",
  5524. $$("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"
  5525. "id": "mind",
  5526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5527. "onresize": function () { }
  5528. }, {
  5529. closecallback: function () { }
  5530. }, { "style": { "height": "36px" } }).form; //创建窗体
  5531. _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); } }
  5532. break;
  5533. case "doc":
  5534. // U.MD.D.I.isRoom();
  5535. _formdiv = new U.UF.UI.form(
  5536. "协同文档",
  5537. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5538. "id": "doc",
  5539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5540. "onresize": function () { }
  5541. }, {
  5542. closecallback: function () { }
  5543. }, { "style": { "height": "36px" } }).form; //创建窗体
  5544. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5545. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5546. })
  5547. _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); } }
  5548. break;
  5549. case "train": //好友打开
  5550. _formdiv = new U.UF.UI.form(
  5551. "训练平台",
  5552. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5553. "id": "train",
  5554. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5555. "onresize": function () { }
  5556. }, {
  5557. closecallback: function () { }
  5558. }, { "style": { "height": "36px" } }).form; //创建窗体
  5559. _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); } }
  5560. break;
  5561. case "studentStudy":
  5562. _formdiv = new U.UF.UI.form(
  5563. "课程中心",
  5564. $$("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
  5565. "id": "studentStudy",
  5566. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5567. "onresize": function () { }
  5568. }, {
  5569. closecallback: function () { }
  5570. }, { "style": { "height": "36px" } }).form; //创建窗体
  5571. _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); } }
  5572. break;
  5573. case "mindNetwork": //好友打开
  5574. _formdiv = new U.UF.UI.form(
  5575. "思维网格",
  5576. $$("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 }), {
  5577. "id": "mindNetwork",
  5578. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5579. "onresize": function () { }
  5580. }, {
  5581. closecallback: function () { }
  5582. }, { "style": { "height": "36px" } }).form; //创建窗体
  5583. _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); } }
  5584. break;
  5585. case "studentClassRoom": //好友打开
  5586. _formdiv = new U.UF.UI.form(
  5587. "实时课堂",
  5588. $$("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 }), {
  5589. "id": "studentClassRoom",
  5590. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5591. "onresize": function () { }
  5592. }, {
  5593. closecallback: function () { }
  5594. }, { "style": { "height": "36px" } }).form; //创建窗体
  5595. _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); } }
  5596. setTimeout(() => {
  5597. U.UF.F.windowZooming(_formdiv)
  5598. }, 0);
  5599. break;
  5600. }
  5601. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5602. //选择应用处理
  5603. switch (str) {
  5604. case "project": //好友打开
  5605. _formdiv = new U.UF.UI.form(
  5606. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5607. $$("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 }), {
  5608. "id": "project",
  5609. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5610. "onresize": function () { }
  5611. }, {
  5612. closecallback: function () { }
  5613. }, { "style": { "height": "36px" } }).form; //创建窗体
  5614. _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); } }
  5615. break;
  5616. case "student":
  5617. _formdiv = new U.UF.UI.form(
  5618. "学生管理",
  5619. $$("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 }), {
  5620. "id": "student",
  5621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5622. "onresize": function () { }
  5623. }, {
  5624. closecallback: function () { }
  5625. }, { "style": { "height": "36px" } }).form; //创建窗体
  5626. _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); } }
  5627. break;
  5628. case "evaluate":
  5629. _formdiv = new U.UF.UI.form(
  5630. "学生评价",
  5631. $$("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 }), {
  5632. "id": "evaluate",
  5633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5634. "onresize": function () { }
  5635. }, {
  5636. closecallback: function () { }
  5637. }, { "style": { "height": "36px" } }).form; //创建窗体
  5638. _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); } }
  5639. break;
  5640. case "sys":
  5641. _formdiv = new U.UF.UI.form(
  5642. "目标管理",
  5643. $$("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 }), {
  5644. "id": "sys",
  5645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5646. "onresize": function () { }
  5647. }, {
  5648. closecallback: function () { }
  5649. }, { "style": { "height": "36px" } }).form; //创建窗体
  5650. _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); } }
  5651. break;
  5652. case "courseDesign":
  5653. _formdiv = new U.UF.UI.form(
  5654. "项目设计",
  5655. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5656. "id": "courseDesign",
  5657. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5658. "onresize": function () { }
  5659. }, {
  5660. closecallback: function () { }
  5661. }, { "style": { "height": "36px" } }).form; //创建窗体
  5662. _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); } }
  5663. break;
  5664. case "program":
  5665. _formdiv = new U.UF.UI.form(
  5666. "编程平台",
  5667. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5668. "id": "program",
  5669. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5670. "onresize": function () { }
  5671. }, {
  5672. closecallback: function () { }
  5673. }, { "style": { "height": "36px" } }).form; //创建窗体
  5674. _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); } }
  5675. break;
  5676. case "class":
  5677. _formdiv = new U.UF.UI.form(
  5678. "班级管理",
  5679. $$("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 }), {
  5680. "id": "class",
  5681. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5682. "onresize": function () { }
  5683. }, {
  5684. closecallback: function () { }
  5685. }, { "style": { "height": "36px" } }).form; //创建窗体
  5686. _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); } }
  5687. break;
  5688. case "Grade":
  5689. _formdiv = new U.UF.UI.form(
  5690. "年级管理",
  5691. $$("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 }), {
  5692. "id": "Grade",
  5693. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5694. "onresize": function () { }
  5695. }, {
  5696. closecallback: function () { }
  5697. }, { "style": { "height": "36px" } }).form; //创建窗体
  5698. _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); } }
  5699. break;
  5700. case "teacherOffice":
  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-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5704. "id": "teacherOffice",
  5705. "style": { "width": "90%", "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/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5711. break;
  5712. case "my":
  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-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5716. "id": "my",
  5717. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5723. break;
  5724. case "notice":
  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/#/notice?userid=" + _userid + "&org=" + _org }), {
  5728. "id": "notice",
  5729. "style": { "width": "90%", "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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5735. break;
  5736. case "library":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5740. "id": "library",
  5741. "style": { "width": "90%", "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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5747. break;
  5748. case "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  5752. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5759. break;
  5760. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5764. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5771. break;
  5772. case "note":
  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/#/note?userid=" + _userid + "&org=" + _org }), {
  5776. "id": "note",
  5777. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5783. break;
  5784. // case "score":
  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 + "" }), {
  5788. // "id": "score",
  5789. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5790. // "onresize": function() {}
  5791. // }, {
  5792. // closecallback: function() {}
  5793. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5794. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5795. // break;
  5796. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5800. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5807. break;
  5808. case "doc":
  5809. // U.MD.D.I.isRoom();
  5810. _formdiv = new U.UF.UI.form(
  5811. "协同文档",
  5812. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5813. "id": "doc",
  5814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5815. "onresize": function () { }
  5816. }, {
  5817. closecallback: function () { }
  5818. }, { "style": { "height": "36px" } }).form; //创建窗体
  5819. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5820. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5821. })
  5822. _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); } }
  5823. break;
  5824. case "study":
  5825. _formdiv = new U.UF.UI.form(
  5826. "课程中心",
  5827. $$("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
  5828. "id": "study",
  5829. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5830. "onresize": function () { }
  5831. }, {
  5832. closecallback: function () { }
  5833. }, { "style": { "height": "36px" } }).form; //创建窗体
  5834. _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); } }
  5835. break;
  5836. case "mindNetwork": //好友打开
  5837. _formdiv = new U.UF.UI.form(
  5838. "思维网格",
  5839. $$("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 }), {
  5840. "id": "mindNetwork",
  5841. "style": { "width": "90%", "height": "90%", "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/mindNetwork.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": "mindNetwork",
  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 "teacherClassRoom": //好友打开
  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/#/classRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5864. "id": "teacherClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5871. setTimeout(() => {
  5872. U.UF.F.windowZooming(_formdiv)
  5873. }, 0);
  5874. break;
  5875. }
  5876. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5877. switch (str) {
  5878. case "project": //好友打开
  5879. _formdiv = new U.UF.UI.form(
  5880. "课程管理",
  5881. $$("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 }), {
  5882. "id": "project",
  5883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5884. "onresize": function () { }
  5885. }, {
  5886. closecallback: function () { }
  5887. }, { "style": { "height": "36px" } }).form; //创建窗体
  5888. _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); } }
  5889. break;
  5890. case "evaluate":
  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-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5894. "id": "evaluate",
  5895. "style": { "width": "90%", "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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5901. break;
  5902. case "notice":
  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-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5906. "id": "notice",
  5907. "style": { "width": "90%", "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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5913. break;
  5914. case "stuLibrary":
  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/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  5918. "id": "stuLibrary",
  5919. "style": { "width": "90%", "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/stuLibrary.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 "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  5942. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5949. break;
  5950. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5954. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5961. break;
  5962. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5966. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5973. break;
  5974. case "doc":
  5975. // U.MD.D.I.isRoom();
  5976. _formdiv = new U.UF.UI.form(
  5977. "协同文档",
  5978. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5979. "id": "doc",
  5980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5981. "onresize": function () { }
  5982. }, {
  5983. closecallback: function () { }
  5984. }, { "style": { "height": "36px" } }).form; //创建窗体
  5985. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5986. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5987. })
  5988. _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); } }
  5989. break;
  5990. case "study":
  5991. _formdiv = new U.UF.UI.form(
  5992. "课程中心",
  5993. $$("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
  5994. "id": "study",
  5995. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5996. "onresize": function () { }
  5997. }, {
  5998. closecallback: function () { }
  5999. }, { "style": { "height": "36px" } }).form; //创建窗体
  6000. _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); } }
  6001. break;
  6002. case "mindNetwork": //好友打开
  6003. _formdiv = new U.UF.UI.form(
  6004. "思维网格",
  6005. $$("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 }), {
  6006. "id": "mindNetwork",
  6007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6008. "onresize": function () { }
  6009. }, {
  6010. closecallback: function () { }
  6011. }, { "style": { "height": "36px" } }).form; //创建窗体
  6012. _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); } }
  6013. break;
  6014. case "train": //好友打开
  6015. _formdiv = new U.UF.UI.form(
  6016. "训练平台",
  6017. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6018. "id": "train",
  6019. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6020. "onresize": function () { }
  6021. }, {
  6022. closecallback: function () { }
  6023. }, { "style": { "height": "36px" } }).form; //创建窗体
  6024. _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); } }
  6025. break;
  6026. case "sys":
  6027. _formdiv = new U.UF.UI.form(
  6028. "目标管理",
  6029. $$("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 }), {
  6030. "id": "sys",
  6031. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6037. break;
  6038. case "courseDesign":
  6039. _formdiv = new U.UF.UI.form(
  6040. "项目设计",
  6041. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6042. "id": "courseDesign",
  6043. "style": { "width": "90%", "height": "90%", "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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6049. break;
  6050. }
  6051. } else if (!_type) {
  6052. switch (str) {
  6053. case "my":
  6054. _formdiv = new U.UF.UI.form(
  6055. "我的资料",
  6056. $$("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 }), {
  6057. "id": "my",
  6058. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6059. "onresize": function () { }
  6060. }, {
  6061. closecallback: function () { }
  6062. }, { "style": { "height": "36px" } }).form; //创建窗体
  6063. _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); } }
  6064. break;
  6065. }
  6066. }
  6067. switch (str) {
  6068. // AIprogram2 AI体验 aihub.cocorobo.cn
  6069. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6070. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6071. case "formulaEdi": //公式编辑
  6072. _formdiv = new U.UF.UI.form(
  6073. "公式编辑",
  6074. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6075. "id": "formulaEdi",
  6076. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6077. "onresize": function () { }
  6078. }, {
  6079. closecallback: function () { }
  6080. }, { "style": { "height": "36px" } }).form; //创建窗体
  6081. _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); } }
  6082. break;
  6083. case "molStr": //分子结构
  6084. _formdiv = new U.UF.UI.form(
  6085. "分子结构",
  6086. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6087. "id": "molStr",
  6088. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6089. "onresize": function () { }
  6090. }, {
  6091. closecallback: function () { }
  6092. }, { "style": { "height": "36px" } }).form; //创建窗体
  6093. _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); } }
  6094. break;
  6095. case "timeAxis": //时间轴
  6096. _formdiv = new U.UF.UI.form(
  6097. "时间轴",
  6098. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6099. "id": "timeAxis",
  6100. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6101. "onresize": function () { }
  6102. }, {
  6103. closecallback: function () { }
  6104. }, { "style": { "height": "36px" } }).form; //创建窗体
  6105. _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); } }
  6106. break;
  6107. case "AIprogram2": //AI体验
  6108. _formdiv = new U.UF.UI.form(
  6109. "AI体验",
  6110. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6111. "id": "AIprogram2",
  6112. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6113. "onresize": function () { }
  6114. }, {
  6115. closecallback: function () { }
  6116. }, { "style": { "height": "36px" } }).form; //创建窗体
  6117. _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); } }
  6118. break;
  6119. case "Pythonprogram": //python编程
  6120. _formdiv = new U.UF.UI.form(
  6121. "Python编程",
  6122. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6123. "id": "Pythonprogram",
  6124. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6125. "onresize": function () { }
  6126. }, {
  6127. closecallback: function () { }
  6128. }, { "style": { "height": "36px" } }).form; //创建窗体
  6129. _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); } }
  6130. break;
  6131. case "AIprogram": //ai编程
  6132. _formdiv = new U.UF.UI.form(
  6133. "AI编程平台",
  6134. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6135. "id": "AIprogram",
  6136. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6137. "onresize": function () { }
  6138. }, {
  6139. closecallback: function () { }
  6140. }, { "style": { "height": "36px" } }).form; //创建窗体
  6141. _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); } }
  6142. break;
  6143. case "CocoPi": //CocoPi
  6144. _formdiv = new U.UF.UI.form(
  6145. "CocoPi",
  6146. $$("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" }), {
  6147. "id": "CocoPi",
  6148. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6149. "onresize": function () { }
  6150. }, {
  6151. closecallback: function () { }
  6152. }, { "style": { "height": "36px" } }).form; //创建窗体
  6153. _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); } }
  6154. break;
  6155. case "Wood": //Wood
  6156. _formdiv = new U.UF.UI.form(
  6157. "海龟编程",
  6158. $$("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/" }), {
  6159. "id": "Wood",
  6160. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6161. "onresize": function () { }
  6162. }, {
  6163. closecallback: function () { }
  6164. }, { "style": { "height": "36px" } }).form; //创建窗体
  6165. _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); } }
  6166. break;
  6167. case "car": //模拟驾驶
  6168. _formdiv = new U.UF.UI.form(
  6169. "模拟驾驶",
  6170. $$("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/" }), {
  6171. "id": "car",
  6172. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6173. "onresize": function () { }
  6174. }, {
  6175. closecallback: function () { }
  6176. }, { "style": { "height": "36px" } }).form; //创建窗体
  6177. _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); } }
  6178. break;
  6179. case "lineSearch": //路径搜索
  6180. _formdiv = new U.UF.UI.form(
  6181. "路径搜索",
  6182. $$("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/" }), {
  6183. "id": "lineSearch",
  6184. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6185. "onresize": function () { }
  6186. }, {
  6187. closecallback: function () { }
  6188. }, { "style": { "height": "36px" } }).form; //创建窗体
  6189. _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); } }
  6190. break;
  6191. case "deepLearning": //深度学习
  6192. _formdiv = new U.UF.UI.form(
  6193. "深度学习",
  6194. $$("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/#" }), {
  6195. "id": "deepLearning",
  6196. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6197. "onresize": function () { }
  6198. }, {
  6199. closecallback: function () { }
  6200. }, { "style": { "height": "36px" } }).form; //创建窗体
  6201. _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); } }
  6202. break;
  6203. case "allHistory": //深度学习
  6204. _formdiv = new U.UF.UI.form(
  6205. "全历史",
  6206. $$("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/" }), {
  6207. "id": "allHistory",
  6208. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6209. "onresize": function () { }
  6210. }, {
  6211. closecallback: function () { }
  6212. }, { "style": { "height": "36px" } }).form; //创建窗体
  6213. _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); } }
  6214. break;
  6215. case "chatPDF": //ai编程
  6216. _formdiv = new U.UF.UI.form(
  6217. "chatPDF",
  6218. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6219. "id": "chatPDF",
  6220. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6221. "onresize": function () { }
  6222. }, {
  6223. closecallback: function () { }
  6224. }, { "style": { "height": "36px" } }).form; //创建窗体
  6225. _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); } }
  6226. break;
  6227. case "resources": //国家教育
  6228. _formdiv = new U.UF.UI.form(
  6229. "国家教育",
  6230. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6231. "id": "resources",
  6232. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _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); } }
  6238. break;
  6239. case "codeEdit": //源码编辑
  6240. _formdiv = new U.UF.UI.form(
  6241. "源码编辑",
  6242. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6243. "id": "codeEdit",
  6244. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6245. "onresize": function () { }
  6246. }, {
  6247. closecallback: function () { }
  6248. }, { "style": { "height": "36px" } }).form; //创建窗体
  6249. _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); } }
  6250. break; //
  6251. case "MindMap": //MindMap
  6252. _formdiv = new U.UF.UI.form(
  6253. "MindMap",
  6254. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6255. "id": "MindMap",
  6256. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, { "style": { "height": "36px" } }).form; //创建窗体
  6261. _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); } }
  6262. break;
  6263. case "netWorkPanel": //netWorkPanel
  6264. _formdiv = new U.UF.UI.form(
  6265. "netWorkPanel",
  6266. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6267. "id": "netWorkPanel",
  6268. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6269. "onresize": function () { }
  6270. }, {
  6271. closecallback: function () { }
  6272. }, { "style": { "height": "36px" } }).form; //创建窗体
  6273. _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); } }
  6274. break;
  6275. case "GeoGebra": //GeoGebra
  6276. _formdiv = new U.UF.UI.form(
  6277. "GeoGebra",
  6278. $$("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" }), {
  6279. "id": "GeoGebra",
  6280. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6281. "onresize": function () { }
  6282. }, {
  6283. closecallback: function () { }
  6284. }, { "style": { "height": "36px" } }).form; //创建窗体
  6285. _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); } }
  6286. break;
  6287. case "translation": //翻译
  6288. _formdiv = new U.UF.UI.form(
  6289. "翻译",
  6290. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6291. "id": "translation",
  6292. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6293. "onresize": function () { }
  6294. }, {
  6295. closecallback: function () { }
  6296. }, { "style": { "height": "36px" } }).form; //创建窗体
  6297. _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); } }
  6298. break;
  6299. case "mohe": //魔盒
  6300. _formdiv = new U.UF.UI.form(
  6301. "魔盒识字",
  6302. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6303. "id": "mohe",
  6304. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6305. "onresize": function () { }
  6306. }, {
  6307. closecallback: function () { }
  6308. }, { "style": { "height": "36px" } }).form; //创建窗体
  6309. _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); } }
  6310. break;
  6311. case "24game": //24点
  6312. _formdiv = new U.UF.UI.form(
  6313. "24点",
  6314. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6315. "id": "24game",
  6316. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6317. "onresize": function () { }
  6318. }, {
  6319. closecallback: function () { }
  6320. }, { "style": { "height": "36px" } }).form; //创建窗体
  6321. _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); } }
  6322. break;
  6323. case "case":
  6324. _formdiv = new U.UF.UI.form(
  6325. "课程进展",
  6326. $$("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 }), {
  6327. "id": "case",
  6328. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6329. "onresize": function () { }
  6330. }, {
  6331. closecallback: function () { }
  6332. }, { "style": { "height": "36px" } }).form; //创建窗体
  6333. _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); } }
  6334. break;
  6335. case "snf":
  6336. _formdiv = new U.UF.UI.form(
  6337. "赛诺梵",
  6338. $$("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" }), {
  6339. "id": "snf",
  6340. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6341. "onresize": function () { }
  6342. }, {
  6343. closecallback: function () { }
  6344. }, { "style": { "height": "36px" } }).form; //创建窗体
  6345. _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); } }
  6346. break;
  6347. case "hanFamily":
  6348. _formdiv = new U.UF.UI.form(
  6349. "汉字家族",
  6350. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6351. "id": "hanFamily",
  6352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6353. "onresize": function () { }
  6354. }, {
  6355. closecallback: function () { }
  6356. }, { "style": { "height": "36px" } }).form; //创建窗体
  6357. _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); } }
  6358. break;
  6359. case "hanClassics":
  6360. _formdiv = new U.UF.UI.form(
  6361. "国学经典",
  6362. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6363. "id": "hanClassics",
  6364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6365. "onresize": function () { }
  6366. }, {
  6367. closecallback: function () { }
  6368. }, { "style": { "height": "36px" } }).form; //创建窗体
  6369. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6370. break;
  6371. case "hanTraining":
  6372. _formdiv = new U.UF.UI.form(
  6373. "笔画训练",
  6374. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6375. "id": "hanTraining",
  6376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6377. "onresize": function () { }
  6378. }, {
  6379. closecallback: function () { }
  6380. }, { "style": { "height": "36px" } }).form; //创建窗体
  6381. _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); } }
  6382. break;
  6383. case "hanClass":
  6384. _formdiv = new U.UF.UI.form(
  6385. "书法课堂",
  6386. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6387. "id": "hanClass",
  6388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6389. "onresize": function () { }
  6390. }, {
  6391. closecallback: function () { }
  6392. }, { "style": { "height": "36px" } }).form; //创建窗体
  6393. _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); } }
  6394. break;
  6395. case "han":
  6396. _formdiv = new U.UF.UI.form(
  6397. "汉字宫",
  6398. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6399. "id": "han",
  6400. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6401. "onresize": function () { }
  6402. }, {
  6403. closecallback: function () { }
  6404. }, { "style": { "height": "36px" } }).form; //创建窗体
  6405. _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); } }
  6406. break;
  6407. case "projectGM": //课程管理
  6408. _formdiv = new U.UF.UI.form(
  6409. "课程管理",
  6410. $$("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 }), {
  6411. "id": "projectGM",
  6412. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6413. "onresize": function () { }
  6414. }, {
  6415. closecallback: function () { }
  6416. }, { "style": { "height": "36px" } }).form; //创建窗体
  6417. _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); } }
  6418. break;
  6419. case "studyGM": //课程中心
  6420. _formdiv = new U.UF.UI.form(
  6421. "课程中心",
  6422. $$("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
  6423. "id": "study",
  6424. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6425. "onresize": function () { }
  6426. }, {
  6427. closecallback: function () { }
  6428. }, { "style": { "height": "36px" } }).form; //创建窗体
  6429. _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); } }
  6430. break;
  6431. // studentGM
  6432. case "studentGM": //学生管理
  6433. _formdiv = new U.UF.UI.form(
  6434. "学生管理",
  6435. $$("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 }), {
  6436. "id": "studentGM",
  6437. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6438. "onresize": function () { }
  6439. }, {
  6440. closecallback: function () { }
  6441. }, { "style": { "height": "36px" } }).form; //创建窗体
  6442. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6443. break;
  6444. case "evaluateGM": //学生评价
  6445. _formdiv = new U.UF.UI.form(
  6446. "学生评价",
  6447. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6448. "id": "evaluateGM",
  6449. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6450. "onresize": function () { }
  6451. }, {
  6452. closecallback: function () { }
  6453. }, { "style": { "height": "36px" } }).form; //创建窗体
  6454. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6455. break;
  6456. // classGM
  6457. case "classGM": //班级管理
  6458. _formdiv = new U.UF.UI.form(
  6459. "班级管理",
  6460. $$("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 }), {
  6461. "id": "classGM",
  6462. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6463. "onresize": function () { }
  6464. }, {
  6465. closecallback: function () { }
  6466. }, { "style": { "height": "36px" } }).form; //创建窗体
  6467. _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); } }
  6468. break;
  6469. // dataGM
  6470. case "dataGM":
  6471. _formdiv = new U.UF.UI.form(
  6472. "我的资料",
  6473. $$("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 }), {
  6474. "id": "dataGM",
  6475. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6476. "onresize": function () { }
  6477. }, {
  6478. closecallback: function () { }
  6479. }, { "style": { "height": "36px" } }).form; //创建窗体
  6480. _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); } }
  6481. break;
  6482. // caseGM
  6483. case "caseGM": //课程进展
  6484. _formdiv = new U.UF.UI.form(
  6485. "课程进展",
  6486. $$("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 }), {
  6487. "id": "caseGM",
  6488. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6489. "onresize": function () { }
  6490. }, {
  6491. closecallback: function () { }
  6492. }, { "style": { "height": "36px" } }).form; //创建窗体
  6493. _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); } }
  6494. break;
  6495. // meterialGM
  6496. case "meterialGM": //素材库
  6497. _formdiv = new U.UF.UI.form(
  6498. "素材库",
  6499. $$("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 }), {
  6500. "id": "meterialGM",
  6501. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6502. "onresize": function () { }
  6503. }, {
  6504. closecallback: function () { }
  6505. }, { "style": { "height": "36px" } }).form; //创建窗体
  6506. _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); } }
  6507. break;
  6508. // evaluateSGM
  6509. case "evaluateSGM": //我的评价
  6510. _formdiv = new U.UF.UI.form(
  6511. "我的评价",
  6512. $$("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 }), {
  6513. "id": "evaluateSGM",
  6514. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6515. "onresize": function () { }
  6516. }, {
  6517. closecallback: function () { }
  6518. }, { "style": { "height": "36px" } }).form; //创建窗体
  6519. _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); } }
  6520. break;
  6521. case "jupyter": //jupyter
  6522. _formdiv = new U.UF.UI.form(
  6523. "jupyter",
  6524. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6525. "id": "jupyter",
  6526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6527. "onresize": function () { }
  6528. }, {
  6529. closecallback: function () { }
  6530. }, { "style": { "height": "36px" } }).form; //创建窗体
  6531. _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); } }
  6532. break;
  6533. case "number": //数字实验室
  6534. _formdiv = new U.UF.UI.form(
  6535. "数字实验室",
  6536. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6537. "id": "number",
  6538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6539. "onresize": function () { }
  6540. }, {
  6541. closecallback: function () { }
  6542. }, { "style": { "height": "36px" } }).form; //创建窗体
  6543. _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); } }
  6544. break;
  6545. case "studentCourse": //项目管理 学生
  6546. _formdiv = new U.UF.UI.form(
  6547. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6548. $$("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 }), {
  6549. "id": "studentCourse",
  6550. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6551. "onresize": function () { }
  6552. }, {
  6553. closecallback: function () { }
  6554. }, { "style": { "height": "36px" } }).form; //创建窗体
  6555. _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); } }
  6556. break;
  6557. case "studentCourseS": //项目管理 老师
  6558. _formdiv = new U.UF.UI.form(
  6559. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6560. $$("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 }), {
  6561. "id": "studentCourseS",
  6562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6563. "onresize": function () { }
  6564. }, {
  6565. closecallback: function () { }
  6566. }, { "style": { "height": "36px" } }).form; //创建窗体
  6567. _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); } }
  6568. break;
  6569. case "studentIndex": //项目中心
  6570. _formdiv = new U.UF.UI.form(
  6571. "项目中心",
  6572. $$("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 }), {
  6573. "id": "studentIndex",
  6574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6575. "onresize": function () { }
  6576. }, {
  6577. closecallback: function () { }
  6578. }, { "style": { "height": "36px" } }).form; //创建窗体
  6579. _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); } }
  6580. break;
  6581. case "CaseDesignS":
  6582. _formdiv = new U.UF.UI.form(
  6583. "项目进展",
  6584. $$("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 }), {
  6585. "id": "case",
  6586. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6587. "onresize": function () { }
  6588. }, {
  6589. closecallback: function () { }
  6590. }, { "style": { "height": "36px" } }).form; //创建窗体
  6591. _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); } }
  6592. break;
  6593. case "tcStudent": //腾讯学生管理
  6594. _formdiv = new U.UF.UI.form(
  6595. "学生管理",
  6596. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6597. "id": "tcStudent",
  6598. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6599. "onresize": function () { }
  6600. }, {
  6601. closecallback: function () { }
  6602. }, { "style": { "height": "36px" } }).form; //创建窗体
  6603. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6604. break;
  6605. case "tcSchool": //腾讯学校管理
  6606. _formdiv = new U.UF.UI.form(
  6607. "学校管理",
  6608. $$("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 }), {
  6609. "id": "tcSchool",
  6610. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6611. "onresize": function () { }
  6612. }, {
  6613. closecallback: function () { }
  6614. }, { "style": { "height": "36px" } }).form; //创建窗体
  6615. _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); } }
  6616. break;
  6617. case "tcTeacher": //腾讯学校管理
  6618. _formdiv = new U.UF.UI.form(
  6619. "教师管理",
  6620. $$("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 }), {
  6621. "id": "tcTeacher",
  6622. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6623. "onresize": function () { }
  6624. }, {
  6625. closecallback: function () { }
  6626. }, { "style": { "height": "36px" } }).form; //创建窗体
  6627. _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); } }
  6628. break;
  6629. case "teacher":
  6630. _formdiv = new U.UF.UI.form(
  6631. "教师管理",
  6632. $$("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 }), {
  6633. "id": "teacher",
  6634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6635. "onresize": function () { }
  6636. }, {
  6637. closecallback: function () { }
  6638. }, { "style": { "height": "36px" } }).form; //创建窗体
  6639. _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); } }
  6640. break;
  6641. case "tcData": //腾讯我的资料
  6642. _formdiv = new U.UF.UI.form(
  6643. "我的资料",
  6644. $$("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 }), {
  6645. "id": "tcData",
  6646. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6647. "onresize": function () { }
  6648. }, {
  6649. closecallback: function () { }
  6650. }, { "style": { "height": "36px" } }).form; //创建窗体
  6651. _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); } }
  6652. break;
  6653. case "tcNotice": //腾讯消息通知
  6654. _formdiv = new U.UF.UI.form(
  6655. "消息通知",
  6656. $$("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 }), {
  6657. "id": "tcNotice",
  6658. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6659. "onresize": function () { }
  6660. }, {
  6661. closecallback: function () { }
  6662. }, { "style": { "height": "36px" } }).form; //创建窗体
  6663. _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); } }
  6664. break;
  6665. case "myReport": //好友打开
  6666. _formdiv = new U.UF.UI.form(
  6667. "我的评价",
  6668. $$("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 }), {
  6669. "id": "myReport",
  6670. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6671. "onresize": function () { }
  6672. }, {
  6673. closecallback: function () { }
  6674. }, { "style": { "height": "36px" } }).form; //创建窗体
  6675. _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); } }
  6676. break;
  6677. case "learnAna": //好友打开
  6678. _formdiv = new U.UF.UI.form(
  6679. "学习分析",
  6680. $$("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 }), {
  6681. "id": "learnAna",
  6682. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6683. "onresize": function () { }
  6684. }, {
  6685. closecallback: function () { }
  6686. }, { "style": { "height": "36px" } }).form; //创建窗体
  6687. _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); } }
  6688. break;
  6689. case "AIChat": //AI共创
  6690. _formdiv = new U.UF.UI.form(
  6691. "AI共创",
  6692. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6693. "id": "AIChat",
  6694. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6695. "onresize": function () { }
  6696. }, {
  6697. istop: true,
  6698. closecallback: function () { $("#aichat_icon").remove(); },
  6699. narrowcallback: function () {
  6700. if (!$("#aichat_icon")[0]) {
  6701. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6702. }
  6703. },
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _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); } }
  6706. break;
  6707. case "ainew": //AI共创
  6708. _formdiv = new U.UF.UI.form(
  6709. "AI协同",
  6710. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6711. "id": "ainew",
  6712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //创建窗体
  6717. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6718. break;
  6719. case "gpt4": //gpt4
  6720. _formdiv = new U.UF.UI.form(
  6721. "AI助手",
  6722. $$("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 }), {
  6723. "id": "gpt4",
  6724. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //创建窗体
  6729. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6730. break;
  6731. case "aigpt": //gpt4
  6732. _formdiv = new U.UF.UI.form(
  6733. "AI助手+",
  6734. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6735. "id": "aigpt",
  6736. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () {
  6740. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6741. }
  6742. }, { "style": { "height": "36px" } }).form; //创建窗体
  6743. _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); } }
  6744. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6745. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6746. })
  6747. break;
  6748. case "aiKnowledge": //aiKnowledge
  6749. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6750. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6751. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6752. }
  6753. _formdiv = new U.UF.UI.form(
  6754. "知识建构",
  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": _url }), {
  6756. "id": "aiKnowledge",
  6757. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6758. "onresize": function () { }
  6759. }, {
  6760. closecallback: function () { }
  6761. }, { "style": { "height": "36px" } }).form; //创建窗体
  6762. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6763. break;
  6764. case "futureClass": //AI共创
  6765. _formdiv = new U.UF.UI.form(
  6766. "协同建构",
  6767. $$("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
  6768. "id": "synergyCourse",
  6769. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6770. "onresize": function () { }
  6771. }, {
  6772. closecallback: function () {
  6773. $("iframe", _formdiv)[0].contentWindow.loginout();
  6774. }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _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); } }
  6777. break;
  6778. case "aiagent": //ai agent
  6779. _formdiv = new U.UF.UI.form(
  6780. "AI Agent",
  6781. $$("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" }), {
  6782. "id": "AIAgent",
  6783. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6789. break;
  6790. case "dataBoard": //数据看板
  6791. _formdiv = new U.UF.UI.form(
  6792. "数据看板",
  6793. $$("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 }), {
  6794. "id": "dataBoard",
  6795. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6796. "onresize": function () { }
  6797. }, {
  6798. closecallback: function () { }
  6799. }, { "style": { "height": "36px" } }).form; //创建窗体
  6800. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6801. break;
  6802. case "dataBoardSies": //数据融合
  6803. _formdiv = new U.UF.UI.form(
  6804. "数据融合",
  6805. $$("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 }), {
  6806. "id": "dataBoardSies",
  6807. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6808. "onresize": function () { }
  6809. }, {
  6810. closecallback: function () { }
  6811. }, { "style": { "height": "36px" } }).form; //创建窗体
  6812. _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); } }
  6813. break;
  6814. case "dataBoardNew": //数据看板
  6815. _formdiv = new U.UF.UI.form(
  6816. "综合看板",
  6817. $$("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 }), {
  6818. "id": "dataBoardNew",
  6819. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6820. "onresize": function () { }
  6821. }, {
  6822. closecallback: function () { }
  6823. }, { "style": { "height": "36px" } }).form; //创建窗体
  6824. _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); } }
  6825. break;
  6826. case "dataBoardTest": //数据看板
  6827. _formdiv = new U.UF.UI.form(
  6828. "评测看板",
  6829. $$("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 }), {
  6830. "id": "dataBoardTest",
  6831. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6832. "onresize": function () { }
  6833. }, {
  6834. closecallback: function () { }
  6835. }, { "style": { "height": "36px" } }).form; //创建窗体
  6836. _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); } }
  6837. break;
  6838. case "AIAnalyse": //AI共创
  6839. _formdiv = new U.UF.UI.form(
  6840. "AI分析",
  6841. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6842. "id": "AIAnalyse",
  6843. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6844. "onresize": function () { }
  6845. }, {
  6846. closecallback: function () { }
  6847. }, { "style": { "height": "36px" } }).form; //创建窗体
  6848. _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); } }
  6849. break;
  6850. case "studioCourse": //AI共创
  6851. _formdiv = new U.UF.UI.form(
  6852. "工作管理",
  6853. $$("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 }), {
  6854. "id": "studioCourse",
  6855. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6856. "onresize": function () { }
  6857. }, {
  6858. closecallback: function () { }
  6859. }, { "style": { "height": "36px" } }).form; //创建窗体
  6860. _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); } }
  6861. break;
  6862. case "studioIndex": //AI共创
  6863. _formdiv = new U.UF.UI.form(
  6864. "工作中心",
  6865. $$("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 }), {
  6866. "id": "studioIndex",
  6867. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6868. "onresize": function () { }
  6869. }, {
  6870. closecallback: function () { }
  6871. }, { "style": { "height": "36px" } }).form; //创建窗体
  6872. _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); } }
  6873. break;
  6874. case "source":
  6875. _formdiv = new U.UF.UI.form(
  6876. "教学资源",
  6877. $$("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 }), {
  6878. "id": "source",
  6879. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6880. "onresize": function () { }
  6881. }, {
  6882. closecallback: function () { }
  6883. }, { "style": { "height": "36px" } }).form; //创建窗体
  6884. _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); } }
  6885. break;
  6886. case "testTeacher":
  6887. _formdiv = new U.UF.UI.form(
  6888. "智能表单",
  6889. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6890. "id": "testTeacher",
  6891. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6892. "onresize": function () { }
  6893. }, {
  6894. closecallback: function () { }
  6895. }, { "style": { "height": "36px" } }).form; //创建窗体
  6896. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6897. break;
  6898. case "testStudent":
  6899. _formdiv = new U.UF.UI.form(
  6900. "教师中心",
  6901. $$("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 }), {
  6902. "id": "testStudent",
  6903. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6904. "onresize": function () { }
  6905. }, {
  6906. closecallback: function () { }
  6907. }, { "style": { "height": "36px" } }).form; //创建窗体
  6908. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6909. break;
  6910. case "testTeacherSies":
  6911. _formdiv = new U.UF.UI.form(
  6912. "教师管理",
  6913. $$("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 }), {
  6914. "id": "testTeacherSies",
  6915. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6916. "onresize": function () { }
  6917. }, {
  6918. closecallback: function () { }
  6919. }, { "style": { "height": "36px" } }).form; //创建窗体
  6920. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6921. break;
  6922. case "testStudentSies":
  6923. _formdiv = new U.UF.UI.form(
  6924. "教师中心",
  6925. $$("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 }), {
  6926. "id": "testStudentSies",
  6927. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6928. "onresize": function () { }
  6929. }, {
  6930. closecallback: function () { }
  6931. }, { "style": { "height": "36px" } }).form; //创建窗体
  6932. _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); } }
  6933. break;
  6934. case "ytpbl": //消息通知
  6935. _formdiv = new U.UF.UI.form(
  6936. "案例征集",
  6937. $$("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 }), {
  6938. "id": "ytpbl",
  6939. "style": { "width": "100%", "height": "100%", "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/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6945. // 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");
  6946. break;
  6947. case "aiCourseResource": //人工智能窗体
  6948. _formdiv = new U.UF.UI.form(
  6949. false,
  6950. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  6951. "id": "aiCourseResource",
  6952. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6953. "onresize": function () { },
  6954. "isdrag": false,
  6955. }, {
  6956. closecallback: function () { }
  6957. }, { "style": { "height": "36px" } }).form; //创建窗体
  6958. _taskbar = ''
  6959. break;
  6960. case "szdjgCocooroboX": //图形化编程
  6961. _formdiv = new U.UF.UI.form(
  6962. "图形化编程",
  6963. $$("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" }), {
  6964. "id": "szdjgCocooroboX",
  6965. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6966. "onresize": function () { }
  6967. }, {
  6968. closecallback: function () { }
  6969. }, { "style": { "height": "36px" } }).form; //创建窗体
  6970. _taskbar = ''
  6971. break;
  6972. case "szdjgPython": //python编程
  6973. _formdiv = new U.UF.UI.form(
  6974. "Python编程",
  6975. $$("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" }), {
  6976. "id": "szdjgPython",
  6977. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6978. "onresize": function () { }
  6979. }, {
  6980. closecallback: function () { }
  6981. }, { "style": { "height": "36px" } }).form; //创建窗体
  6982. _taskbar = ''
  6983. break;
  6984. case "Record":
  6985. _formdiv = new U.UF.UI.form(
  6986. "观察记录",
  6987. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6988. "id": "Record",
  6989. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6990. "onresize": function () { }
  6991. }, {
  6992. closecallback: function () { }
  6993. }, { "style": { "height": "36px" } }).form; //创建窗体
  6994. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6995. break;
  6996. case "aigptCourse":
  6997. _formdiv = new U.UF.UI.form(
  6998. "AI智能体",
  6999. $$("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' }), {
  7000. "id": "aigptCourse",
  7001. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7002. "onresize": function () { }
  7003. }, {
  7004. closecallback: function () { }
  7005. }, { "style": { "height": "36px" } }).form; //创建窗体
  7006. _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); } }
  7007. break;
  7008. case "classroomObservation":
  7009. _formdiv = new U.UF.UI.form(
  7010. "课堂观察",
  7011. $$("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 }), {
  7012. "id": "classroomObservation",
  7013. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7014. "onresize": function () { }
  7015. }, {
  7016. closecallback: function () { }
  7017. }, { "style": { "height": "36px" } }).form; //创建窗体
  7018. _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); } }
  7019. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7020. break;
  7021. case "pblCourse":
  7022. _formdiv = new U.UF.UI.form(
  7023. "学生PBL",
  7024. $$("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 }), {
  7025. "id": "pblCourse",
  7026. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7027. "onresize": function () { }
  7028. }, {
  7029. closecallback: function () { }
  7030. }, { "style": { "height": "36px" } }).form; //创建窗体
  7031. _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); } }
  7032. break;
  7033. case "appStore":
  7034. _formdiv = new U.UF.UI.form(
  7035. "CocoFlow",
  7036. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7037. "id": "appStore",
  7038. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7039. "onresize": function () { }
  7040. }, {
  7041. closecallback: function () { }
  7042. }, { "style": { "height": "36px" } }).form; //创建窗体
  7043. _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); } }
  7044. break;
  7045. case "EDU":
  7046. _formdiv = new U.UF.UI.form(
  7047. "EDU",
  7048. $$("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" }), {
  7049. "id": "EDU",
  7050. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7051. "onresize": function () { }
  7052. }, {
  7053. closecallback: function () { }
  7054. }, { "style": { "height": "36px" } }).form; //创建窗体
  7055. _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); } }
  7056. break;
  7057. case "knowledge":
  7058. _formdiv = new U.UF.UI.form(
  7059. "知识库",
  7060. $$("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 }), {
  7061. "id": "knowledge",
  7062. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7063. "onresize": function () { }
  7064. }, {
  7065. closecallback: function () { }
  7066. }, { "style": { "height": "36px" } }).form; //创建窗体
  7067. _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); } }
  7068. break;
  7069. case "userExamine":
  7070. _formdiv = new U.UF.UI.form(
  7071. "账号申请",
  7072. $$("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" }), {
  7073. "id": "userExamine",
  7074. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7075. "onresize": function () { }
  7076. }, {
  7077. closecallback: function () { }
  7078. }, { "style": { "height": "36px" } }).form; //创建窗体
  7079. break;
  7080. }
  7081. //U.MD.D.I.openClick(str);
  7082. //如果有任务栏信息
  7083. if (_taskbar) {
  7084. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7085. }
  7086. }
  7087. // U.MD.D.I.openClick = function(str){
  7088. // var click = '';
  7089. // switch(str){
  7090. // case 'friend':
  7091. // click = '我的好友';
  7092. // break;
  7093. // case 'domain':
  7094. // click = '域名管理';
  7095. // break;
  7096. // case 'disk':
  7097. // click = '我的云盘';
  7098. // break;
  7099. // case 'word':
  7100. // click = 'Word';
  7101. // break;
  7102. // case 'excel':
  7103. // click = 'Execl';
  7104. // break;
  7105. // case 'txt':
  7106. // click = '文本文件';
  7107. // break;
  7108. // case 'lookupFriend':
  7109. // click = '查找好友';
  7110. // break;
  7111. // case 'ftp':
  7112. // click = 'FTP';
  7113. // break;
  7114. // case 'group':
  7115. // click = '群组';
  7116. // break;
  7117. // case 'set':
  7118. // click = '我的设置';
  7119. // break;
  7120. // case 'systemSet':
  7121. // click = '系统设置';
  7122. // break;
  7123. // case 'boomYun':
  7124. // click = '互联办公';
  7125. // break;
  7126. // case 'xz':
  7127. // click = '云端下载';
  7128. // break;
  7129. // case 'client':
  7130. // click = '有思浏览器';
  7131. // break;
  7132. // case 'backEndProgramming':
  7133. // click = '在线后台编程';
  7134. // break;
  7135. // case 'frontEndProgramming':
  7136. // click = '在线前端编程';
  7137. // break;
  7138. // default: break;
  7139. // }
  7140. // if(U.MD.D.I.Ip && click){
  7141. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7142. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7143. // })
  7144. // }
  7145. // }
  7146. /**
  7147. *函数作用:ajax简易函数,使用post格式
  7148. *@param url {data} 后台地址
  7149. *@param data {data} 参数json
  7150. *@param fn {data} 回调函数
  7151. *
  7152. */
  7153. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7154. // var xhr = new XMLHttpRequest();
  7155. // xhr.open("GET",url,true);
  7156. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7157. // xhr.onreadystatechange = function(){
  7158. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7159. // fn.call(this,xhr.responseText);
  7160. // }
  7161. // };
  7162. // xhr.send();
  7163. // }
  7164. /*判断是否是内网IP*/
  7165. // U.MD.D.I.isInnerIPFn = function(str){
  7166. // var curPageUrl = str;
  7167. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7168. // curPageUrl =curPageUrl.replace(reg1,'');
  7169. // // console.log('curPageUrl-1 '+curPageUrl);
  7170. // var reg2 = /\:+/g;//替换冒号为一点
  7171. // curPageUrl =curPageUrl.replace(reg2,'.');
  7172. // // console.log('curPageUrl-2 '+curPageUrl);
  7173. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7174. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7175. // if(curPageUrl[2] != '16'){
  7176. // return ipAddress;
  7177. // }else{
  7178. // return false;
  7179. // }
  7180. // }
  7181. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7182. // //compatibility for firefox and chrome
  7183. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7184. // var pc = new myPeerConnection({
  7185. // iceServers: []
  7186. // }),
  7187. // noop = function() {},
  7188. // localIPs = {},
  7189. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7190. // key;
  7191. // function iterateIP(ip) {
  7192. // if (!localIPs[ip]) onNewIP(ip);
  7193. // localIPs[ip] = true;
  7194. // }
  7195. // //create a bogus data channel
  7196. // pc.createDataChannel("");
  7197. // // create offer and set local description
  7198. // pc.createOffer().then(function(sdp) {
  7199. // sdp.sdp.split('\n').forEach(function(line) {
  7200. // if (line.indexOf('candidate') < 0) return;
  7201. // line.match(ipRegex).forEach(iterateIP);
  7202. // });
  7203. // pc.setLocalDescription(sdp, noop, noop);
  7204. // }).catch(function(reason) {
  7205. // // An error occurred, so handle the failure to connect
  7206. // });
  7207. // //sten for candidate events
  7208. // pc.onicecandidate = function(ice) {
  7209. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7210. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7211. // };
  7212. // }
  7213. // U.MD.D.I.getUserIpBool = function(callback){
  7214. // U.MD.D.I.getUserIP(function(ip){
  7215. // alert("Got IP! :" + ip);
  7216. // });
  7217. //}
  7218. //#endregion
  7219. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7220. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7221. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7222. _userinfo = US.userInfo, //登录用户信息
  7223. _userid = US.userInfo.userid //登录用户id
  7224. let _iframe;
  7225. let _cid = cid,
  7226. _stage = stage,
  7227. _task = task,
  7228. _tool = tool;
  7229. var _jie = $$("div", {
  7230. "style": {
  7231. "position": "absolute",
  7232. "bottom": "50px",
  7233. "right": "50px",
  7234. "zIndex": "9999",
  7235. "backgroundColor": "#2268bc",
  7236. "color": "#fff",
  7237. "padding": "12px 20px",
  7238. "cursor": "pointer",
  7239. "borderRadius": "4px",
  7240. },
  7241. "innerHTML": "提交作业"
  7242. })
  7243. let aTool = ''
  7244. let _loading = document.createElement('div')
  7245. _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;"
  7246. // _loading.id = "";
  7247. let _lchild = document.createElement('div')
  7248. let _limg = document.createElement('img')
  7249. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7250. _limg.style = "width: 26px;margin-right: 10px;"
  7251. _lchild.appendChild(_limg)
  7252. let _lspan = document.createElement('span')
  7253. _lspan.innerHTML = "上传中..."
  7254. _lchild.appendChild(_lspan)
  7255. _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%);"
  7256. _loading.appendChild(_lchild)
  7257. var _box = $$('div', {
  7258. "style": {
  7259. "position": "relative",
  7260. "width": "100%",
  7261. "height": "100%",
  7262. },
  7263. })
  7264. _box.appendChild(_loading)
  7265. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7266. switch (str) {
  7267. case "whiteboard":
  7268. aTool = 1;
  7269. _iframe = $$("iframe", {
  7270. "frameborder": "no",
  7271. "border": "0",
  7272. "scrolling ": "no",
  7273. "style": {
  7274. "cssText": "border:0;width:100%;height:100%"
  7275. },
  7276. "src": "https://beta.iwb.cocorobo.cn/"
  7277. })
  7278. _box.appendChild(_iframe);
  7279. _box.appendChild(_jie);
  7280. _formdiv = new U.UF.UI.form(
  7281. "电子白板",
  7282. _box, {
  7283. "id": "whiteboard" + cid + stage + task + tool,
  7284. "style": {
  7285. "width": "90%",
  7286. "height": "90%",
  7287. "overflow": 'hidden'
  7288. },
  7289. "onresize": function () { }
  7290. }, {
  7291. closecallback: function () { }
  7292. }, {
  7293. "style": {
  7294. "height": "36px"
  7295. }
  7296. }).form; //创建窗体
  7297. _taskbar = {
  7298. "id": str + _formdiv.id,
  7299. "style": {
  7300. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7301. },
  7302. "name": "电子白板",
  7303. "forms": _formdiv,
  7304. "click": function () {
  7305. U.MD.D.I.openApplication(str, obj, info);
  7306. }
  7307. }
  7308. break;
  7309. case "mind":
  7310. aTool = 3;
  7311. _iframe = $$("iframe", {
  7312. "frameborder": "no",
  7313. "border": "0",
  7314. "scrolling ": "no",
  7315. "style": {
  7316. "cssText": "border:0;width:100%;height:100%"
  7317. },
  7318. "src": "/kityminder-editor/dist/index.html"
  7319. })
  7320. _box.appendChild(_iframe);
  7321. _box.appendChild(_jie);
  7322. _formdiv = new U.UF.UI.form(
  7323. "思维导图",
  7324. _box, { //"/jsmind/example/demo.html"
  7325. "id": "mind" + cid + stage + task + tool,
  7326. "style": {
  7327. "width": "90%",
  7328. "height": "90%",
  7329. "overflow": 'hidden'
  7330. },
  7331. "onresize": function () { }
  7332. }, {
  7333. closecallback: function () { }
  7334. }, {
  7335. "style": {
  7336. "height": "36px"
  7337. }
  7338. }).form; //创建窗体
  7339. _taskbar = {
  7340. "id": str + _formdiv.id,
  7341. "style": {
  7342. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7343. },
  7344. "name": "思维导图",
  7345. "forms": _formdiv,
  7346. "click": function () {
  7347. U.MD.D.I.openApplication(str, obj, info);
  7348. }
  7349. }
  7350. break;
  7351. case "MindMap":
  7352. aTool = 3;
  7353. _iframe = $$("iframe", {
  7354. "frameborder": "no",
  7355. "border": "0",
  7356. "scrolling ": "no",
  7357. "style": {
  7358. "cssText": "border:0;width:100%;height:100%"
  7359. },
  7360. "src": "//cloud.cocorobo.cn/mind/"
  7361. })
  7362. _box.appendChild(_iframe);
  7363. _box.appendChild(_jie);
  7364. _formdiv = new U.UF.UI.form(
  7365. "思维导图",
  7366. _box, { //"/jsmind/example/demo.html"
  7367. "id": "mind" + cid + stage + task + tool,
  7368. "style": {
  7369. "width": "90%",
  7370. "height": "90%",
  7371. "overflow": 'hidden'
  7372. },
  7373. "onresize": function () { }
  7374. }, {
  7375. closecallback: function () { }
  7376. }, {
  7377. "style": {
  7378. "height": "36px"
  7379. }
  7380. }).form; //创建窗体
  7381. _taskbar = {
  7382. "id": str + _formdiv.id,
  7383. "style": {
  7384. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7385. },
  7386. "name": "思维导图",
  7387. "forms": _formdiv,
  7388. "click": function () {
  7389. U.MD.D.I.openApplication(str, obj, info);
  7390. }
  7391. }
  7392. break;
  7393. case "doc":
  7394. aTool = 6;
  7395. _iframe = $$("iframe", {
  7396. "frameborder": "no",
  7397. "border": "0",
  7398. "scrolling ": "no",
  7399. "style": {
  7400. "cssText": "border:0;width:100%;height:100%"
  7401. },
  7402. "src": "/Office/Word/WordEditArea.htm"
  7403. })
  7404. _box.appendChild(_iframe);
  7405. _box.appendChild(_jie);
  7406. _formdiv = new U.UF.UI.form(
  7407. "协同文档",
  7408. _box, {
  7409. "id": "doc" + cid + stage + task + tool,
  7410. "style": {
  7411. "width": "90%",
  7412. "height": "90%",
  7413. "overflow": 'hidden'
  7414. },
  7415. "onresize": function () { }
  7416. }, {
  7417. closecallback: function () { }
  7418. }, {
  7419. "style": {
  7420. "height": "36px"
  7421. }
  7422. }).form; //创建窗体
  7423. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7424. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7425. })
  7426. _taskbar = {
  7427. "id": str + _formdiv.id,
  7428. "style": {
  7429. "backgroundImage": "url(/img/icon/doc.png)"
  7430. },
  7431. "name": "协同文档",
  7432. "forms": _formdiv,
  7433. "click": function () {
  7434. U.MD.D.I.openApplication(str, obj, info);
  7435. }
  7436. }
  7437. break;
  7438. case "mindNetwork": //好友打开
  7439. aTool = 7;
  7440. _iframe = $$("iframe", {
  7441. "webkitallowfullscreen": "",
  7442. "mozallowfullscreen": "",
  7443. "allowfullscreen": "",
  7444. "frameborder": "no",
  7445. "border": "0",
  7446. "scrolling ": "no",
  7447. "style": {
  7448. "cssText": "border:0; width:100%; height:100%;"
  7449. },
  7450. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7451. })
  7452. _box.appendChild(_iframe);
  7453. _box.appendChild(_jie);
  7454. _formdiv = new U.UF.UI.form(
  7455. "思维网格",
  7456. _box, {
  7457. "id": "mindNetwork" + cid + stage + task + tool,
  7458. "style": {
  7459. "width": "90%",
  7460. "height": "90%",
  7461. "overflow": 'hidden'
  7462. },
  7463. "onresize": function () { }
  7464. }, {
  7465. closecallback: function () { }
  7466. }, {
  7467. "style": {
  7468. "height": "36px"
  7469. }
  7470. }).form; //创建窗体
  7471. _taskbar = {
  7472. "id": str + _formdiv.id,
  7473. "style": {
  7474. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7475. },
  7476. "name": "思维网格",
  7477. "forms": _formdiv,
  7478. "click": function () {
  7479. U.MD.D.I.openApplication(str, obj, info);
  7480. }
  7481. }
  7482. break;
  7483. case "courseDesign":
  7484. _iframe = $$("iframe", {
  7485. "webkitallowfullscreen": "",
  7486. "mozallowfullscreen": "",
  7487. "allowfullscreen": "",
  7488. "frameborder": "no",
  7489. "border": "0",
  7490. "scrolling ": "no",
  7491. "style": {
  7492. "cssText": "border:0; width:100%; height:100%;"
  7493. },
  7494. "src": "/course-design-vue"
  7495. })
  7496. _box.appendChild(_iframe);
  7497. _box.appendChild(_jie);
  7498. _formdiv = new U.UF.UI.form(
  7499. "项目设计",
  7500. _box, {
  7501. "id": "courseDesign" + cid + stage + task + tool,
  7502. "style": {
  7503. "width": "90%",
  7504. "height": "90%",
  7505. "overflow": 'hidden'
  7506. },
  7507. "onresize": function () { }
  7508. }, {
  7509. closecallback: function () { }
  7510. }, {
  7511. "style": {
  7512. "height": "36px"
  7513. }
  7514. }).form; //创建窗体
  7515. _taskbar = {
  7516. "id": str + _formdiv.id,
  7517. "style": {
  7518. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7519. },
  7520. "name": "项目设计",
  7521. "forms": _formdiv,
  7522. "click": function () {
  7523. U.MD.D.I.openApplication(str, obj, info);
  7524. }
  7525. }
  7526. break;
  7527. }
  7528. const script1 = document.createElement("script");
  7529. script1.type = "text/javascript";
  7530. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7531. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7532. const script2 = document.createElement("script");
  7533. script2.type = "text/javascript";
  7534. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7535. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7536. const script3 = document.createElement("script");
  7537. script3.type = "text/javascript";
  7538. script3.charset = "UTF-8";
  7539. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7540. const script4 = document.createElement("script");
  7541. script4.type = "text/javascript";
  7542. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7543. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7544. if (_iframe) {
  7545. if (str == 'doc') {
  7546. _iframe = _formdiv.querySelector('iframe')
  7547. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7548. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7549. _iframe.contentWindow.document.body.appendChild(script1);
  7550. _iframe.contentWindow.document.body.appendChild(script2);
  7551. // _iframe.contentWindow.document.body.appendChild(script3);
  7552. _iframe.contentWindow.document.body.appendChild(script4);
  7553. })
  7554. if (onloadListener) {
  7555. _iframe.contentDocument.location.reload()
  7556. } else {
  7557. _iframe.contentDocument.location.reload()
  7558. }
  7559. } else if (str == 'courseDesign') {
  7560. U.UF.DL.iframeLoad(_iframe, function () {
  7561. // _iframe.contentWindow.U.MD.O.W.load();
  7562. // _iframe.contentWindow.document.body.appendChild(script1);
  7563. _iframe.contentWindow.document.body.appendChild(script2);
  7564. _iframe.contentWindow.document.body.appendChild(script4);
  7565. })
  7566. } else if (str == 'mind') {
  7567. _iframe = _formdiv.querySelector('iframe')
  7568. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7569. //
  7570. _iframe.contentWindow.document.body.appendChild(script1);
  7571. _iframe.contentWindow.document.body.appendChild(script2);
  7572. _iframe.contentWindow.document.body.appendChild(script4);
  7573. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7574. })
  7575. if (onloadListener) {
  7576. _iframe.contentDocument.location.reload()
  7577. } else {
  7578. _iframe.contentDocument.location.reload()
  7579. }
  7580. } else if (str == 'whiteboard') {
  7581. _iframe = _formdiv.querySelector('iframe')
  7582. let onloadListener = _iframe.onload = () => {
  7583. _iframe.contentWindow.document.body.appendChild(script1);
  7584. _iframe.contentWindow.document.body.appendChild(script2);
  7585. _iframe.contentWindow.document.body.appendChild(script4);
  7586. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7587. };
  7588. // if (onloadListener) {
  7589. // try {
  7590. // _iframe.src += "?cocorobo="+new Date().getTime()
  7591. // _iframe.contentWindow.document.location.reload()
  7592. // } catch (error) {
  7593. // }
  7594. // } else {
  7595. // _iframe.contentDocument.location.reload()
  7596. // }
  7597. } else {
  7598. _iframe.onload = () => {
  7599. _iframe.contentWindow.document.body.appendChild(script1);
  7600. _iframe.contentWindow.document.body.appendChild(script2);
  7601. // _iframe.contentWindow.document.body.appendChild(script3);
  7602. _iframe.contentWindow.document.body.appendChild(script4);
  7603. };
  7604. }
  7605. _jie.onclick = async () => {
  7606. let text = ''
  7607. if (aTool == 1) {
  7608. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7609. } else if (aTool == 6) {
  7610. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7611. } else if (aTool == 3) {
  7612. text = await U.MD.D.I.getEditorContent(_iframe);
  7613. }
  7614. _loading.style.display = 'flex'
  7615. console.log(_loading);
  7616. var _ajs = _iframe.contentWindow.document.createElement("script");
  7617. _ajs.type = "text/javascript";
  7618. _ajs.innerHTML =
  7619. // 'console.log(' + _loading + ');\n' +
  7620. 'var _js = document.createElement("script");\n' +
  7621. '_js.type="text/javascript";\n' +
  7622. '_js.charset="UTF-8";\n' +
  7623. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7624. "_js.onload = function(){\n" +
  7625. ' var a = document.getElementsByTagName("img")\n' +
  7626. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7627. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7628. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7629. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7630. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7631. "beforeUpload_shishi(file," +
  7632. "'" +
  7633. _userid +
  7634. "'" +
  7635. ", " +
  7636. "'" +
  7637. _cid +
  7638. "'" +
  7639. ", " +
  7640. "'" +
  7641. _stage +
  7642. "'" +
  7643. ", " +
  7644. "'" +
  7645. _task +
  7646. "'" +
  7647. ", " +
  7648. "'" +
  7649. _tool +
  7650. "'" +
  7651. ", " +
  7652. "'" +
  7653. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7654. "'" +
  7655. ", " +
  7656. "'" +
  7657. aTool +
  7658. "'" +
  7659. ", " +
  7660. "`" +
  7661. text +
  7662. "`" +
  7663. ")\n" +
  7664. " });\n" +
  7665. "}\n" +
  7666. "document.head.appendChild(_js);\n";
  7667. _iframe.contentWindow.document.head.appendChild(_ajs);
  7668. }
  7669. }
  7670. //U.MD.D.I.openClick(str);
  7671. //如果有任务栏信息
  7672. // if (_taskbar) {
  7673. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7674. // }
  7675. }
  7676. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7677. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7678. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7679. _userinfo = US.userInfo, //登录用户信息
  7680. _userid = US.userInfo.userid //登录用户id
  7681. let _iframe;
  7682. let _cid = cid,
  7683. _stage = stage,
  7684. _task = task,
  7685. _tool = tool;
  7686. var _jie = $$("div", {
  7687. "style": {
  7688. "position": "absolute",
  7689. "bottom": "50px",
  7690. "right": "50px",
  7691. "zIndex": "9999",
  7692. "backgroundColor": "#2268bc",
  7693. "color": "#fff",
  7694. "padding": "12px 20px",
  7695. "cursor": "pointer",
  7696. "borderRadius": "4px",
  7697. },
  7698. "innerHTML": "提交作业"
  7699. })
  7700. let aTool = ''
  7701. let _loading = document.createElement('div')
  7702. _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;"
  7703. // _loading.id = "";
  7704. let _lchild = document.createElement('div')
  7705. let _limg = document.createElement('img')
  7706. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7707. _limg.style = "width: 26px;margin-right: 10px;"
  7708. _lchild.appendChild(_limg)
  7709. let _lspan = document.createElement('span')
  7710. _lspan.innerHTML = "上传中..."
  7711. _lchild.appendChild(_lspan)
  7712. _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%);"
  7713. _loading.appendChild(_lchild)
  7714. let _box = $$('div', {
  7715. "style": {
  7716. "position": "relative",
  7717. "width": "100%",
  7718. "height": "100%",
  7719. },
  7720. })
  7721. _box.appendChild(_loading)
  7722. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7723. switch (str) {
  7724. case "whiteboard":
  7725. aTool = 1;
  7726. _iframe = $$("iframe", {
  7727. "frameborder": "no",
  7728. "border": "0",
  7729. "scrolling ": "no",
  7730. "style": {
  7731. "cssText": "border:0;width:100%;height:100%"
  7732. },
  7733. "src": "https://beta.iwb.cocorobo.cn/"
  7734. })
  7735. _box.appendChild(_iframe);
  7736. _box.appendChild(_jie);
  7737. _formdiv = new U.UF.UI.form(
  7738. "电子白板",
  7739. _box, {
  7740. "id": "whiteboard" + cid + stage + task + tool,
  7741. "style": {
  7742. "width": "90%",
  7743. "height": "90%",
  7744. "overflow": 'hidden'
  7745. },
  7746. "onresize": function () { }
  7747. }, {
  7748. closecallback: function () { }
  7749. }, {
  7750. "style": {
  7751. "height": "36px"
  7752. }
  7753. }).form; //创建窗体
  7754. _taskbar = {
  7755. "id": str + _formdiv.id,
  7756. "style": {
  7757. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7758. },
  7759. "name": "电子白板",
  7760. "forms": _formdiv,
  7761. "click": function () {
  7762. U.MD.D.I.openApplication(str, obj, info);
  7763. }
  7764. }
  7765. break;
  7766. case "mind":
  7767. aTool = 3;
  7768. _iframe = $$("iframe", {
  7769. "frameborder": "no",
  7770. "border": "0",
  7771. "scrolling ": "no",
  7772. "style": {
  7773. "cssText": "border:0;width:100%;height:100%"
  7774. },
  7775. "src": "/kityminder-editor/dist/index.html"
  7776. })
  7777. _box.appendChild(_iframe);
  7778. _box.appendChild(_jie);
  7779. _formdiv = new U.UF.UI.form(
  7780. "思维导图",
  7781. _box, { //"/jsmind/example/demo.html"
  7782. "id": "mind" + cid + stage + task + tool,
  7783. "style": {
  7784. "width": "90%",
  7785. "height": "90%",
  7786. "overflow": 'hidden'
  7787. },
  7788. "onresize": function () { }
  7789. }, {
  7790. closecallback: function () { }
  7791. }, {
  7792. "style": {
  7793. "height": "36px"
  7794. }
  7795. }).form; //创建窗体
  7796. _taskbar = {
  7797. "id": str + _formdiv.id,
  7798. "style": {
  7799. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7800. },
  7801. "name": "思维导图",
  7802. "forms": _formdiv,
  7803. "click": function () {
  7804. U.MD.D.I.openApplication(str, obj, info);
  7805. }
  7806. }
  7807. break;
  7808. case "MindMap":
  7809. aTool = 3;
  7810. _iframe = $$("iframe", {
  7811. "frameborder": "no",
  7812. "border": "0",
  7813. "scrolling ": "no",
  7814. "style": {
  7815. "cssText": "border:0;width:100%;height:100%"
  7816. },
  7817. "src": "//cloud.cocorobo.cn/mind/"
  7818. })
  7819. _box.appendChild(_iframe);
  7820. _box.appendChild(_jie);
  7821. _formdiv = new U.UF.UI.form(
  7822. "思维导图",
  7823. _box, { //"/jsmind/example/demo.html"
  7824. "id": "mind" + cid + stage + task + tool,
  7825. "style": {
  7826. "width": "90%",
  7827. "height": "90%",
  7828. "overflow": 'hidden'
  7829. },
  7830. "onresize": function () { }
  7831. }, {
  7832. closecallback: function () { }
  7833. }, {
  7834. "style": {
  7835. "height": "36px"
  7836. }
  7837. }).form; //创建窗体
  7838. _taskbar = {
  7839. "id": str + _formdiv.id,
  7840. "style": {
  7841. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7842. },
  7843. "name": "思维导图",
  7844. "forms": _formdiv,
  7845. "click": function () {
  7846. U.MD.D.I.openApplication(str, obj, info);
  7847. }
  7848. }
  7849. break;
  7850. case "doc":
  7851. aTool = 6;
  7852. _iframe = $$("iframe", {
  7853. "frameborder": "no",
  7854. "border": "0",
  7855. "scrolling ": "no",
  7856. "style": {
  7857. "cssText": "border:0;width:100%;height:100%"
  7858. },
  7859. "src": "/Office/Word/WordEditArea.htm"
  7860. })
  7861. _box.appendChild(_iframe);
  7862. _box.appendChild(_jie);
  7863. _formdiv = new U.UF.UI.form(
  7864. "协同文档",
  7865. _box, {
  7866. "id": "doc" + cid + stage + task + tool,
  7867. "style": {
  7868. "width": "90%",
  7869. "height": "90%",
  7870. "overflow": 'hidden'
  7871. },
  7872. "onresize": function () { }
  7873. }, {
  7874. closecallback: function () { }
  7875. }, {
  7876. "style": {
  7877. "height": "36px"
  7878. }
  7879. }).form; //创建窗体
  7880. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7881. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7882. })
  7883. _taskbar = {
  7884. "id": str + _formdiv.id,
  7885. "style": {
  7886. "backgroundImage": "url(/img/icon/doc.png)"
  7887. },
  7888. "name": "协同文档",
  7889. "forms": _formdiv,
  7890. "click": function () {
  7891. U.MD.D.I.openApplication(str, obj, info);
  7892. }
  7893. }
  7894. break;
  7895. case "mindNetwork": //好友打开
  7896. aTool = 7;
  7897. _iframe = $$("iframe", {
  7898. "webkitallowfullscreen": "",
  7899. "mozallowfullscreen": "",
  7900. "allowfullscreen": "",
  7901. "frameborder": "no",
  7902. "border": "0",
  7903. "scrolling ": "no",
  7904. "style": {
  7905. "cssText": "border:0; width:100%; height:100%;"
  7906. },
  7907. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7908. })
  7909. _box.appendChild(_iframe);
  7910. _box.appendChild(_jie);
  7911. _formdiv = new U.UF.UI.form(
  7912. "思维网格",
  7913. _box, {
  7914. "id": "mindNetwork" + cid + stage + task + tool,
  7915. "style": {
  7916. "width": "90%",
  7917. "height": "90%",
  7918. "overflow": 'hidden'
  7919. },
  7920. "onresize": function () { }
  7921. }, {
  7922. closecallback: function () { }
  7923. }, {
  7924. "style": {
  7925. "height": "36px"
  7926. }
  7927. }).form; //创建窗体
  7928. _taskbar = {
  7929. "id": str + _formdiv.id,
  7930. "style": {
  7931. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7932. },
  7933. "name": "思维网格",
  7934. "forms": _formdiv,
  7935. "click": function () {
  7936. U.MD.D.I.openApplication(str, obj, info);
  7937. }
  7938. }
  7939. break;
  7940. case "courseDesign":
  7941. _iframe = $$("iframe", {
  7942. "webkitallowfullscreen": "",
  7943. "mozallowfullscreen": "",
  7944. "allowfullscreen": "",
  7945. "frameborder": "no",
  7946. "border": "0",
  7947. "scrolling ": "no",
  7948. "style": {
  7949. "cssText": "border:0; width:100%; height:100%;"
  7950. },
  7951. "src": "/course-design-vue"
  7952. })
  7953. _box.appendChild(_iframe);
  7954. _box.appendChild(_jie);
  7955. _formdiv = new U.UF.UI.form(
  7956. "项目设计",
  7957. _box, {
  7958. "id": "courseDesign" + cid + stage + task + tool,
  7959. "style": {
  7960. "width": "90%",
  7961. "height": "90%",
  7962. "overflow": 'hidden'
  7963. },
  7964. "onresize": function () { }
  7965. }, {
  7966. closecallback: function () { }
  7967. }, {
  7968. "style": {
  7969. "height": "36px"
  7970. }
  7971. }).form; //创建窗体
  7972. _taskbar = {
  7973. "id": str + _formdiv.id,
  7974. "style": {
  7975. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7976. },
  7977. "name": "项目设计",
  7978. "forms": _formdiv,
  7979. "click": function () {
  7980. U.MD.D.I.openApplication(str, obj, info);
  7981. }
  7982. }
  7983. break;
  7984. }
  7985. const script1 = document.createElement("script");
  7986. script1.type = "text/javascript";
  7987. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7988. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7989. const script2 = document.createElement("script");
  7990. script2.type = "text/javascript";
  7991. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7992. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7993. const script3 = document.createElement("script");
  7994. script3.type = "text/javascript";
  7995. script3.charset = "UTF-8";
  7996. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7997. const script4 = document.createElement("script");
  7998. script4.type = "text/javascript";
  7999. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8000. script4.src = window.origin + "/js/Common/jietu2E.js";
  8001. if (_iframe) {
  8002. if (str == 'doc') {
  8003. _iframe = _formdiv.querySelector('iframe')
  8004. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8005. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8006. _iframe.contentWindow.document.body.appendChild(script1);
  8007. _iframe.contentWindow.document.body.appendChild(script2);
  8008. // _iframe.contentWindow.document.body.appendChild(script3);
  8009. _iframe.contentWindow.document.body.appendChild(script4);
  8010. })
  8011. if (onloadListener) {
  8012. _iframe.contentDocument.location.reload()
  8013. } else {
  8014. _iframe.contentDocument.location.reload()
  8015. }
  8016. } else if (str == 'courseDesign') {
  8017. U.UF.DL.iframeLoad(_iframe, function () {
  8018. // _iframe.contentWindow.U.MD.O.W.load();
  8019. // _iframe.contentWindow.document.body.appendChild(script1);
  8020. _iframe.contentWindow.document.body.appendChild(script2);
  8021. _iframe.contentWindow.document.body.appendChild(script4);
  8022. })
  8023. } else if (str == 'mind') {
  8024. _iframe = _formdiv.querySelector('iframe')
  8025. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8026. //
  8027. _iframe.contentWindow.document.body.appendChild(script1);
  8028. _iframe.contentWindow.document.body.appendChild(script2);
  8029. _iframe.contentWindow.document.body.appendChild(script4);
  8030. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8031. })
  8032. if (onloadListener) {
  8033. _iframe.contentDocument.location.reload()
  8034. } else {
  8035. _iframe.contentDocument.location.reload()
  8036. }
  8037. } else if (str == 'whiteboard') {
  8038. _iframe = _formdiv.querySelector('iframe')
  8039. let onloadListener = _iframe.onload = () => {
  8040. _iframe.contentWindow.document.body.appendChild(script1);
  8041. _iframe.contentWindow.document.body.appendChild(script2);
  8042. _iframe.contentWindow.document.body.appendChild(script4);
  8043. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8044. };
  8045. // if (onloadListener) {
  8046. // try {
  8047. // _iframe.src += "?cocorobo="+new Date().getTime()
  8048. // _iframe.contentWindow.document.location.reload()
  8049. // } catch (error) {
  8050. // }
  8051. // } else {
  8052. // _iframe.contentDocument.location.reload()
  8053. // }
  8054. } else {
  8055. _iframe.onload = () => {
  8056. _iframe.contentWindow.document.body.appendChild(script1);
  8057. _iframe.contentWindow.document.body.appendChild(script2);
  8058. // _iframe.contentWindow.document.body.appendChild(script3);
  8059. _iframe.contentWindow.document.body.appendChild(script4);
  8060. };
  8061. }
  8062. _jie.onclick = async () => {
  8063. let text = ''
  8064. if (aTool == 1) {
  8065. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8066. } else if (aTool == 6) {
  8067. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8068. } else if (aTool == 3) {
  8069. text = await U.MD.D.I.getEditorContent(_iframe);
  8070. }
  8071. _loading.style.display = 'flex'
  8072. console.log(_loading);
  8073. var _ajs = _iframe.contentWindow.document.createElement("script");
  8074. _ajs.type = "text/javascript";
  8075. _ajs.innerHTML =
  8076. // 'console.log(' + _loading + ');\n' +
  8077. 'var _js = document.createElement("script");\n' +
  8078. '_js.type="text/javascript";\n' +
  8079. '_js.charset="UTF-8";\n' +
  8080. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8081. "_js.onload = function(){\n" +
  8082. ' var a = document.getElementsByTagName("img")\n' +
  8083. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8084. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8085. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8086. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8087. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8088. "beforeUpload_shishi(file," +
  8089. "'" +
  8090. _userid +
  8091. "'" +
  8092. ", " +
  8093. "'" +
  8094. _cid +
  8095. "'" +
  8096. ", " +
  8097. "'" +
  8098. _stage +
  8099. "'" +
  8100. ", " +
  8101. "'" +
  8102. _task +
  8103. "'" +
  8104. ", " +
  8105. "'" +
  8106. _tool +
  8107. "'" +
  8108. ", " +
  8109. "'" +
  8110. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8111. "'" +
  8112. ", " +
  8113. "'" +
  8114. aTool +
  8115. "'" +
  8116. ", " +
  8117. "`" +
  8118. text +
  8119. "`" +
  8120. ")\n" +
  8121. " });\n" +
  8122. "}\n" +
  8123. "document.head.appendChild(_js);\n";
  8124. _iframe.contentWindow.document.head.appendChild(_ajs);
  8125. }
  8126. }
  8127. //U.MD.D.I.openClick(str);
  8128. //如果有任务栏信息
  8129. // if (_taskbar) {
  8130. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8131. // }
  8132. }
  8133. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8134. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8135. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8136. _userid = student.userid, //登录用户id
  8137. _username = student.student //用户名字
  8138. let _iframe;
  8139. let _cid = cid,
  8140. _stage = stage,
  8141. _task = task,
  8142. _tool = tool;
  8143. var _jie = $$("div", {
  8144. "style": {
  8145. "position": "absolute",
  8146. "bottom": "50px",
  8147. "right": "50px",
  8148. "zIndex": "9999",
  8149. "backgroundColor": "#2268bc",
  8150. "color": "#fff",
  8151. "padding": "12px 20px",
  8152. "cursor": "pointer",
  8153. "borderRadius": "4px",
  8154. },
  8155. "innerHTML": "提交作业"
  8156. })
  8157. let aTool = ''
  8158. let _loading = document.createElement('div')
  8159. _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;"
  8160. // _loading.id = "";
  8161. let _lchild = document.createElement('div')
  8162. let _limg = document.createElement('img')
  8163. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8164. _limg.style = "width: 26px;margin-right: 10px;"
  8165. _lchild.appendChild(_limg)
  8166. let _lspan = document.createElement('span')
  8167. _lspan.innerHTML = "上传中..."
  8168. _lchild.appendChild(_lspan)
  8169. _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%);"
  8170. _loading.appendChild(_lchild)
  8171. var _box = $$('div', {
  8172. "style": {
  8173. "position": "relative",
  8174. "width": "100%",
  8175. "height": "100%",
  8176. },
  8177. })
  8178. _box.appendChild(_loading)
  8179. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8180. switch (str) {
  8181. case "whiteboard":
  8182. aTool = 1;
  8183. _iframe = $$("iframe", {
  8184. "frameborder": "no",
  8185. "border": "0",
  8186. "scrolling ": "no",
  8187. "style": {
  8188. "cssText": "border:0;width:100%;height:100%"
  8189. },
  8190. "src": "https://beta.iwb.cocorobo.cn/"
  8191. })
  8192. _box.appendChild(_iframe);
  8193. _box.appendChild(_jie);
  8194. _formdiv = new U.UF.UI.form(
  8195. "电子白板-" + _username,
  8196. _box, {
  8197. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8198. "style": {
  8199. "width": "90%",
  8200. "height": "90%",
  8201. "overflow": 'hidden'
  8202. },
  8203. "onresize": function () { }
  8204. }, {
  8205. closecallback: function () { }
  8206. }, {
  8207. "style": {
  8208. "height": "36px"
  8209. }
  8210. }).form; //创建窗体
  8211. _taskbar = {
  8212. "id": str + _formdiv.id,
  8213. "style": {
  8214. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8215. },
  8216. "name": "电子白板",
  8217. "forms": _formdiv,
  8218. "click": function () {
  8219. U.MD.D.I.openApplication(str, obj, info);
  8220. }
  8221. }
  8222. break;
  8223. case "mind":
  8224. aTool = 3;
  8225. _iframe = $$("iframe", {
  8226. "frameborder": "no",
  8227. "border": "0",
  8228. "scrolling ": "no",
  8229. "style": {
  8230. "cssText": "border:0;width:100%;height:100%"
  8231. },
  8232. "src": "/kityminder-editor/dist/index.html"
  8233. })
  8234. _box.appendChild(_iframe);
  8235. _box.appendChild(_jie);
  8236. _formdiv = new U.UF.UI.form(
  8237. "思维导图-" + _username,
  8238. _box, { //"/jsmind/example/demo.html"
  8239. "id": "mind" + cid + stage + task + tool + _userid,
  8240. "style": {
  8241. "width": "90%",
  8242. "height": "90%",
  8243. "overflow": 'hidden'
  8244. },
  8245. "onresize": function () { }
  8246. }, {
  8247. closecallback: function () { }
  8248. }, {
  8249. "style": {
  8250. "height": "36px"
  8251. }
  8252. }).form; //创建窗体
  8253. _taskbar = {
  8254. "id": str + _formdiv.id,
  8255. "style": {
  8256. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8257. },
  8258. "name": "思维导图",
  8259. "forms": _formdiv,
  8260. "click": function () {
  8261. U.MD.D.I.openApplication(str, obj, info);
  8262. }
  8263. }
  8264. break;
  8265. case "MindMap":
  8266. aTool = 3;
  8267. _iframe = $$("iframe", {
  8268. "frameborder": "no",
  8269. "border": "0",
  8270. "scrolling ": "no",
  8271. "style": {
  8272. "cssText": "border:0;width:100%;height:100%"
  8273. },
  8274. "src": "//cloud.cocorobo.cn/mind/"
  8275. })
  8276. _box.appendChild(_iframe);
  8277. _box.appendChild(_jie);
  8278. _formdiv = new U.UF.UI.form(
  8279. "思维导图-" + _username,
  8280. _box, { //"/jsmind/example/demo.html"
  8281. "id": "mind" + cid + stage + task + tool + _userid,
  8282. "style": {
  8283. "width": "90%",
  8284. "height": "90%",
  8285. "overflow": 'hidden'
  8286. },
  8287. "onresize": function () { }
  8288. }, {
  8289. closecallback: function () { }
  8290. }, {
  8291. "style": {
  8292. "height": "36px"
  8293. }
  8294. }).form; //创建窗体
  8295. _taskbar = {
  8296. "id": str + _formdiv.id,
  8297. "style": {
  8298. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8299. },
  8300. "name": "思维导图",
  8301. "forms": _formdiv,
  8302. "click": function () {
  8303. U.MD.D.I.openApplication(str, obj, info);
  8304. }
  8305. }
  8306. break;
  8307. case "doc":
  8308. aTool = 6;
  8309. _iframe = $$("iframe", {
  8310. "frameborder": "no",
  8311. "border": "0",
  8312. "scrolling ": "no",
  8313. "style": {
  8314. "cssText": "border:0;width:100%;height:100%"
  8315. },
  8316. "src": "/Office/Word/WordEditArea.htm"
  8317. })
  8318. _box.appendChild(_iframe);
  8319. _box.appendChild(_jie);
  8320. _formdiv = new U.UF.UI.form(
  8321. "协同文档-" + _username,
  8322. _box, {
  8323. "id": "doc" + cid + stage + task + tool + _userid,
  8324. "style": {
  8325. "width": "90%",
  8326. "height": "90%",
  8327. "overflow": 'hidden'
  8328. },
  8329. "onresize": function () { }
  8330. }, {
  8331. closecallback: function () { }
  8332. }, {
  8333. "style": {
  8334. "height": "36px"
  8335. }
  8336. }).form; //创建窗体
  8337. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8338. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8339. })
  8340. _taskbar = {
  8341. "id": str + _formdiv.id,
  8342. "style": {
  8343. "backgroundImage": "url(/img/icon/doc.png)"
  8344. },
  8345. "name": "协同文档",
  8346. "forms": _formdiv,
  8347. "click": function () {
  8348. U.MD.D.I.openApplication(str, obj, info);
  8349. }
  8350. }
  8351. break;
  8352. case "mindNetwork": //好友打开
  8353. aTool = 7;
  8354. _iframe = $$("iframe", {
  8355. "webkitallowfullscreen": "",
  8356. "mozallowfullscreen": "",
  8357. "allowfullscreen": "",
  8358. "frameborder": "no",
  8359. "border": "0",
  8360. "scrolling ": "no",
  8361. "style": {
  8362. "cssText": "border:0; width:100%; height:100%;"
  8363. },
  8364. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8365. })
  8366. _box.appendChild(_iframe);
  8367. _box.appendChild(_jie);
  8368. _formdiv = new U.UF.UI.form(
  8369. "思维网格-" + _username,
  8370. _box, {
  8371. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8372. "style": {
  8373. "width": "90%",
  8374. "height": "90%",
  8375. "overflow": 'hidden'
  8376. },
  8377. "onresize": function () { }
  8378. }, {
  8379. closecallback: function () { }
  8380. }, {
  8381. "style": {
  8382. "height": "36px"
  8383. }
  8384. }).form; //创建窗体
  8385. _taskbar = {
  8386. "id": str + _formdiv.id,
  8387. "style": {
  8388. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8389. },
  8390. "name": "思维网格",
  8391. "forms": _formdiv,
  8392. "click": function () {
  8393. U.MD.D.I.openApplication(str, obj, info);
  8394. }
  8395. }
  8396. break;
  8397. case "courseDesign":
  8398. _iframe = $$("iframe", {
  8399. "webkitallowfullscreen": "",
  8400. "mozallowfullscreen": "",
  8401. "allowfullscreen": "",
  8402. "frameborder": "no",
  8403. "border": "0",
  8404. "scrolling ": "no",
  8405. "style": {
  8406. "cssText": "border:0; width:100%; height:100%;"
  8407. },
  8408. "src": "/course-design-vue"
  8409. })
  8410. _box.appendChild(_iframe);
  8411. _box.appendChild(_jie);
  8412. _formdiv = new U.UF.UI.form(
  8413. "项目设计-" + _username,
  8414. _box, {
  8415. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8416. "style": {
  8417. "width": "90%",
  8418. "height": "90%",
  8419. "overflow": 'hidden'
  8420. },
  8421. "onresize": function () { }
  8422. }, {
  8423. closecallback: function () { }
  8424. }, {
  8425. "style": {
  8426. "height": "36px"
  8427. }
  8428. }).form; //创建窗体
  8429. _taskbar = {
  8430. "id": str + _formdiv.id,
  8431. "style": {
  8432. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8433. },
  8434. "name": "项目设计",
  8435. "forms": _formdiv,
  8436. "click": function () {
  8437. U.MD.D.I.openApplication(str, obj, info);
  8438. }
  8439. }
  8440. break;
  8441. }
  8442. const script1 = document.createElement("script");
  8443. script1.type = "text/javascript";
  8444. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8445. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8446. const script2 = document.createElement("script");
  8447. script2.type = "text/javascript";
  8448. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8449. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8450. const script3 = document.createElement("script");
  8451. script3.type = "text/javascript";
  8452. script3.charset = "UTF-8";
  8453. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8454. const script4 = document.createElement("script");
  8455. script4.type = "text/javascript";
  8456. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8457. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8458. if (_iframe) {
  8459. if (str == 'doc') {
  8460. _iframe = _formdiv.querySelector('iframe')
  8461. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8462. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8463. _iframe.contentWindow.document.body.appendChild(script1);
  8464. _iframe.contentWindow.document.body.appendChild(script2);
  8465. // _iframe.contentWindow.document.body.appendChild(script3);
  8466. _iframe.contentWindow.document.body.appendChild(script4);
  8467. })
  8468. if (onloadListener) {
  8469. _iframe.contentDocument.location.reload()
  8470. } else {
  8471. _iframe.contentDocument.location.reload()
  8472. }
  8473. } else if (str == 'courseDesign') {
  8474. U.UF.DL.iframeLoad(_iframe, function () {
  8475. // _iframe.contentWindow.U.MD.O.W.load();
  8476. // _iframe.contentWindow.document.body.appendChild(script1);
  8477. _iframe.contentWindow.document.body.appendChild(script2);
  8478. _iframe.contentWindow.document.body.appendChild(script4);
  8479. })
  8480. } else if (str == 'mind') {
  8481. _iframe = _formdiv.querySelector('iframe')
  8482. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8483. //
  8484. _iframe.contentWindow.document.body.appendChild(script1);
  8485. _iframe.contentWindow.document.body.appendChild(script2);
  8486. _iframe.contentWindow.document.body.appendChild(script4);
  8487. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8488. })
  8489. if (onloadListener) {
  8490. _iframe.contentDocument.location.reload()
  8491. } else {
  8492. _iframe.contentDocument.location.reload()
  8493. }
  8494. } else if (str == 'whiteboard') {
  8495. _iframe = _formdiv.querySelector('iframe')
  8496. let onloadListener = _iframe.onload = () => {
  8497. _iframe.contentWindow.document.body.appendChild(script1);
  8498. _iframe.contentWindow.document.body.appendChild(script2);
  8499. _iframe.contentWindow.document.body.appendChild(script4);
  8500. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8501. };
  8502. // if (onloadListener) {
  8503. // try {
  8504. // _iframe.src += "?cocorobo="+new Date().getTime()
  8505. // _iframe.contentWindow.document.location.reload()
  8506. // } catch (error) {
  8507. // }
  8508. // } else {
  8509. // _iframe.contentDocument.location.reload()
  8510. // }
  8511. } else {
  8512. _iframe.onload = () => {
  8513. _iframe.contentWindow.document.body.appendChild(script1);
  8514. _iframe.contentWindow.document.body.appendChild(script2);
  8515. // _iframe.contentWindow.document.body.appendChild(script3);
  8516. _iframe.contentWindow.document.body.appendChild(script4);
  8517. };
  8518. }
  8519. _jie.onclick = async () => {
  8520. let text = ''
  8521. if (aTool == 1) {
  8522. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8523. } else if (aTool == 6) {
  8524. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8525. } else if (aTool == 3) {
  8526. text = await U.MD.D.I.getEditorContent(_iframe);
  8527. }
  8528. _loading.style.display = 'flex'
  8529. console.log(_loading);
  8530. var _ajs = _iframe.contentWindow.document.createElement("script");
  8531. _ajs.type = "text/javascript";
  8532. _ajs.innerHTML =
  8533. // 'console.log(' + _loading + ');\n' +
  8534. 'var _js = document.createElement("script");\n' +
  8535. '_js.type="text/javascript";\n' +
  8536. '_js.charset="UTF-8";\n' +
  8537. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8538. "_js.onload = function(){\n" +
  8539. ' var a = document.getElementsByTagName("img")\n' +
  8540. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8541. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8542. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8543. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8544. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8545. "beforeUpload_shishi(file," +
  8546. "'" +
  8547. _userid +
  8548. "'" +
  8549. ", " +
  8550. "'" +
  8551. _cid +
  8552. "'" +
  8553. ", " +
  8554. "'" +
  8555. _stage +
  8556. "'" +
  8557. ", " +
  8558. "'" +
  8559. _task +
  8560. "'" +
  8561. ", " +
  8562. "'" +
  8563. _tool +
  8564. "'" +
  8565. ", " +
  8566. "'" +
  8567. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8568. "'" +
  8569. ", " +
  8570. "'" +
  8571. aTool +
  8572. "'" +
  8573. ", " +
  8574. "`" +
  8575. text +
  8576. "`" +
  8577. ")\n" +
  8578. " });\n" +
  8579. "}\n" +
  8580. "document.head.appendChild(_js);\n";
  8581. _iframe.contentWindow.document.head.appendChild(_ajs);
  8582. }
  8583. }
  8584. }
  8585. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8586. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8587. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8588. _userid = student.userid, //登录用户id
  8589. _username = student.student //用户名字
  8590. let _iframe;
  8591. let _cid = cid,
  8592. _stage = stage,
  8593. _task = task,
  8594. _tool = tool;
  8595. var _jie = $$("div", {
  8596. "style": {
  8597. "position": "absolute",
  8598. "bottom": "50px",
  8599. "right": "50px",
  8600. "zIndex": "9999",
  8601. "backgroundColor": "#2268bc",
  8602. "color": "#fff",
  8603. "padding": "12px 20px",
  8604. "cursor": "pointer",
  8605. "borderRadius": "4px",
  8606. },
  8607. "innerHTML": "提交作业"
  8608. })
  8609. let aTool = ''
  8610. let _loading = document.createElement('div')
  8611. _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;"
  8612. // _loading.id = "";
  8613. let _lchild = document.createElement('div')
  8614. let _limg = document.createElement('img')
  8615. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8616. _limg.style = "width: 26px;margin-right: 10px;"
  8617. _lchild.appendChild(_limg)
  8618. let _lspan = document.createElement('span')
  8619. _lspan.innerHTML = "上传中..."
  8620. _lchild.appendChild(_lspan)
  8621. _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%);"
  8622. _loading.appendChild(_lchild)
  8623. var _box = $$('div', {
  8624. "style": {
  8625. "position": "relative",
  8626. "width": "100%",
  8627. "height": "100%",
  8628. },
  8629. })
  8630. _box.appendChild(_loading)
  8631. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8632. switch (str) {
  8633. case "whiteboard":
  8634. aTool = 1;
  8635. _iframe = $$("iframe", {
  8636. "frameborder": "no",
  8637. "border": "0",
  8638. "scrolling ": "no",
  8639. "style": {
  8640. "cssText": "border:0;width:100%;height:100%"
  8641. },
  8642. "src": "https://beta.iwb.cocorobo.cn/"
  8643. })
  8644. _box.appendChild(_iframe);
  8645. _box.appendChild(_jie);
  8646. _formdiv = new U.UF.UI.form(
  8647. "电子白板-" + _username,
  8648. _box, {
  8649. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8650. "style": {
  8651. "width": "90%",
  8652. "height": "90%",
  8653. "overflow": 'hidden'
  8654. },
  8655. "onresize": function () { }
  8656. }, {
  8657. closecallback: function () { }
  8658. }, {
  8659. "style": {
  8660. "height": "36px"
  8661. }
  8662. }).form; //创建窗体
  8663. _taskbar = {
  8664. "id": str + _formdiv.id,
  8665. "style": {
  8666. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8667. },
  8668. "name": "电子白板",
  8669. "forms": _formdiv,
  8670. "click": function () {
  8671. U.MD.D.I.openApplication(str, obj, info);
  8672. }
  8673. }
  8674. break;
  8675. case "mind":
  8676. aTool = 3;
  8677. _iframe = $$("iframe", {
  8678. "frameborder": "no",
  8679. "border": "0",
  8680. "scrolling ": "no",
  8681. "style": {
  8682. "cssText": "border:0;width:100%;height:100%"
  8683. },
  8684. "src": "/kityminder-editor/dist/index.html"
  8685. })
  8686. _box.appendChild(_iframe);
  8687. _box.appendChild(_jie);
  8688. _formdiv = new U.UF.UI.form(
  8689. "思维导图-" + _username,
  8690. _box, { //"/jsmind/example/demo.html"
  8691. "id": "mind" + cid + stage + task + tool + _userid,
  8692. "style": {
  8693. "width": "90%",
  8694. "height": "90%",
  8695. "overflow": 'hidden'
  8696. },
  8697. "onresize": function () { }
  8698. }, {
  8699. closecallback: function () { }
  8700. }, {
  8701. "style": {
  8702. "height": "36px"
  8703. }
  8704. }).form; //创建窗体
  8705. _taskbar = {
  8706. "id": str + _formdiv.id,
  8707. "style": {
  8708. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8709. },
  8710. "name": "思维导图",
  8711. "forms": _formdiv,
  8712. "click": function () {
  8713. U.MD.D.I.openApplication(str, obj, info);
  8714. }
  8715. }
  8716. break;
  8717. case "MindMap":
  8718. aTool = 3;
  8719. _iframe = $$("iframe", {
  8720. "frameborder": "no",
  8721. "border": "0",
  8722. "scrolling ": "no",
  8723. "style": {
  8724. "cssText": "border:0;width:100%;height:100%"
  8725. },
  8726. "src": "//cloud.cocorobo.cn/mind/"
  8727. })
  8728. _box.appendChild(_iframe);
  8729. _box.appendChild(_jie);
  8730. _formdiv = new U.UF.UI.form(
  8731. "思维导图-" + _username,
  8732. _box, { //"/jsmind/example/demo.html"
  8733. "id": "mind" + cid + stage + task + tool + _userid,
  8734. "style": {
  8735. "width": "90%",
  8736. "height": "90%",
  8737. "overflow": 'hidden'
  8738. },
  8739. "onresize": function () { }
  8740. }, {
  8741. closecallback: function () { }
  8742. }, {
  8743. "style": {
  8744. "height": "36px"
  8745. }
  8746. }).form; //创建窗体
  8747. _taskbar = {
  8748. "id": str + _formdiv.id,
  8749. "style": {
  8750. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8751. },
  8752. "name": "思维导图",
  8753. "forms": _formdiv,
  8754. "click": function () {
  8755. U.MD.D.I.openApplication(str, obj, info);
  8756. }
  8757. }
  8758. break;
  8759. case "doc":
  8760. aTool = 6;
  8761. _iframe = $$("iframe", {
  8762. "frameborder": "no",
  8763. "border": "0",
  8764. "scrolling ": "no",
  8765. "style": {
  8766. "cssText": "border:0;width:100%;height:100%"
  8767. },
  8768. "src": "/Office/Word/WordEditArea.htm"
  8769. })
  8770. _box.appendChild(_iframe);
  8771. _box.appendChild(_jie);
  8772. _formdiv = new U.UF.UI.form(
  8773. "协同文档-" + _username,
  8774. _box, {
  8775. "id": "doc" + cid + stage + task + tool + _userid,
  8776. "style": {
  8777. "width": "90%",
  8778. "height": "90%",
  8779. "overflow": 'hidden'
  8780. },
  8781. "onresize": function () { }
  8782. }, {
  8783. closecallback: function () { }
  8784. }, {
  8785. "style": {
  8786. "height": "36px"
  8787. }
  8788. }).form; //创建窗体
  8789. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8790. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8791. })
  8792. _taskbar = {
  8793. "id": str + _formdiv.id,
  8794. "style": {
  8795. "backgroundImage": "url(/img/icon/doc.png)"
  8796. },
  8797. "name": "协同文档",
  8798. "forms": _formdiv,
  8799. "click": function () {
  8800. U.MD.D.I.openApplication(str, obj, info);
  8801. }
  8802. }
  8803. break;
  8804. case "mindNetwork": //好友打开
  8805. aTool = 7;
  8806. _iframe = $$("iframe", {
  8807. "webkitallowfullscreen": "",
  8808. "mozallowfullscreen": "",
  8809. "allowfullscreen": "",
  8810. "frameborder": "no",
  8811. "border": "0",
  8812. "scrolling ": "no",
  8813. "style": {
  8814. "cssText": "border:0; width:100%; height:100%;"
  8815. },
  8816. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8817. })
  8818. _box.appendChild(_iframe);
  8819. _box.appendChild(_jie);
  8820. _formdiv = new U.UF.UI.form(
  8821. "思维网格-" + _username,
  8822. _box, {
  8823. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8824. "style": {
  8825. "width": "90%",
  8826. "height": "90%",
  8827. "overflow": 'hidden'
  8828. },
  8829. "onresize": function () { }
  8830. }, {
  8831. closecallback: function () { }
  8832. }, {
  8833. "style": {
  8834. "height": "36px"
  8835. }
  8836. }).form; //创建窗体
  8837. _taskbar = {
  8838. "id": str + _formdiv.id,
  8839. "style": {
  8840. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8841. },
  8842. "name": "思维网格",
  8843. "forms": _formdiv,
  8844. "click": function () {
  8845. U.MD.D.I.openApplication(str, obj, info);
  8846. }
  8847. }
  8848. break;
  8849. case "courseDesign":
  8850. _iframe = $$("iframe", {
  8851. "webkitallowfullscreen": "",
  8852. "mozallowfullscreen": "",
  8853. "allowfullscreen": "",
  8854. "frameborder": "no",
  8855. "border": "0",
  8856. "scrolling ": "no",
  8857. "style": {
  8858. "cssText": "border:0; width:100%; height:100%;"
  8859. },
  8860. "src": "/course-design-vue"
  8861. })
  8862. _box.appendChild(_iframe);
  8863. _box.appendChild(_jie);
  8864. _formdiv = new U.UF.UI.form(
  8865. "项目设计-" + _username,
  8866. _box, {
  8867. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8868. "style": {
  8869. "width": "90%",
  8870. "height": "90%",
  8871. "overflow": 'hidden'
  8872. },
  8873. "onresize": function () { }
  8874. }, {
  8875. closecallback: function () { }
  8876. }, {
  8877. "style": {
  8878. "height": "36px"
  8879. }
  8880. }).form; //创建窗体
  8881. _taskbar = {
  8882. "id": str + _formdiv.id,
  8883. "style": {
  8884. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8885. },
  8886. "name": "项目设计",
  8887. "forms": _formdiv,
  8888. "click": function () {
  8889. U.MD.D.I.openApplication(str, obj, info);
  8890. }
  8891. }
  8892. break;
  8893. }
  8894. const script1 = document.createElement("script");
  8895. script1.type = "text/javascript";
  8896. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8897. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8898. const script2 = document.createElement("script");
  8899. script2.type = "text/javascript";
  8900. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8901. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8902. const script3 = document.createElement("script");
  8903. script3.type = "text/javascript";
  8904. script3.charset = "UTF-8";
  8905. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8906. const script4 = document.createElement("script");
  8907. script4.type = "text/javascript";
  8908. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8909. script4.src = window.origin + "/js/Common/jietu2E.js";
  8910. if (_iframe) {
  8911. if (str == 'doc') {
  8912. _iframe = _formdiv.querySelector('iframe')
  8913. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8914. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8915. _iframe.contentWindow.document.body.appendChild(script1);
  8916. _iframe.contentWindow.document.body.appendChild(script2);
  8917. // _iframe.contentWindow.document.body.appendChild(script3);
  8918. _iframe.contentWindow.document.body.appendChild(script4);
  8919. })
  8920. if (onloadListener) {
  8921. _iframe.contentDocument.location.reload()
  8922. } else {
  8923. _iframe.contentDocument.location.reload()
  8924. }
  8925. } else if (str == 'courseDesign') {
  8926. U.UF.DL.iframeLoad(_iframe, function () {
  8927. // _iframe.contentWindow.U.MD.O.W.load();
  8928. // _iframe.contentWindow.document.body.appendChild(script1);
  8929. _iframe.contentWindow.document.body.appendChild(script2);
  8930. _iframe.contentWindow.document.body.appendChild(script4);
  8931. })
  8932. } else if (str == 'mind') {
  8933. _iframe = _formdiv.querySelector('iframe')
  8934. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8935. //
  8936. _iframe.contentWindow.document.body.appendChild(script1);
  8937. _iframe.contentWindow.document.body.appendChild(script2);
  8938. _iframe.contentWindow.document.body.appendChild(script4);
  8939. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8940. })
  8941. if (onloadListener) {
  8942. _iframe.contentDocument.location.reload()
  8943. } else {
  8944. _iframe.contentDocument.location.reload()
  8945. }
  8946. } else if (str == 'whiteboard') {
  8947. _iframe = _formdiv.querySelector('iframe')
  8948. let onloadListener = _iframe.onload = () => {
  8949. _iframe.contentWindow.document.body.appendChild(script1);
  8950. _iframe.contentWindow.document.body.appendChild(script2);
  8951. _iframe.contentWindow.document.body.appendChild(script4);
  8952. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8953. };
  8954. // if (onloadListener) {
  8955. // try {
  8956. // _iframe.src += "?cocorobo="+new Date().getTime()
  8957. // _iframe.contentWindow.document.location.reload()
  8958. // } catch (error) {
  8959. // }
  8960. // } else {
  8961. // _iframe.contentDocument.location.reload()
  8962. // }
  8963. } else {
  8964. _iframe.onload = () => {
  8965. _iframe.contentWindow.document.body.appendChild(script1);
  8966. _iframe.contentWindow.document.body.appendChild(script2);
  8967. // _iframe.contentWindow.document.body.appendChild(script3);
  8968. _iframe.contentWindow.document.body.appendChild(script4);
  8969. };
  8970. }
  8971. _jie.onclick = async () => {
  8972. let text = ''
  8973. if (aTool == 1) {
  8974. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8975. } else if (aTool == 6) {
  8976. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8977. } else if (aTool == 3) {
  8978. text = await U.MD.D.I.getEditorContent(_iframe);
  8979. }
  8980. _loading.style.display = 'flex'
  8981. console.log(_loading);
  8982. var _ajs = _iframe.contentWindow.document.createElement("script");
  8983. _ajs.type = "text/javascript";
  8984. _ajs.innerHTML =
  8985. // 'console.log(' + _loading + ');\n' +
  8986. 'var _js = document.createElement("script");\n' +
  8987. '_js.type="text/javascript";\n' +
  8988. '_js.charset="UTF-8";\n' +
  8989. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8990. "_js.onload = function(){\n" +
  8991. ' var a = document.getElementsByTagName("img")\n' +
  8992. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8993. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8994. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8995. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8996. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8997. "beforeUpload_shishi(file," +
  8998. "'" +
  8999. _userid +
  9000. "'" +
  9001. ", " +
  9002. "'" +
  9003. _cid +
  9004. "'" +
  9005. ", " +
  9006. "'" +
  9007. _stage +
  9008. "'" +
  9009. ", " +
  9010. "'" +
  9011. _task +
  9012. "'" +
  9013. ", " +
  9014. "'" +
  9015. _tool +
  9016. "'" +
  9017. ", " +
  9018. "'" +
  9019. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9020. "'" +
  9021. ", " +
  9022. "'" +
  9023. aTool +
  9024. "'" +
  9025. ", " +
  9026. "`" +
  9027. text +
  9028. "`" +
  9029. ")\n" +
  9030. " });\n" +
  9031. "}\n" +
  9032. "document.head.appendChild(_js);\n";
  9033. _iframe.contentWindow.document.head.appendChild(_ajs);
  9034. }
  9035. }
  9036. }
  9037. U.MD.D.I.getEditorContent = function (iframe) {
  9038. return new Promise((resolve, reject) => {
  9039. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9040. console.log(content);
  9041. resolve(content)
  9042. });
  9043. });
  9044. }
  9045. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9046. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9047. // if (res.value[0].length > 0) {
  9048. // // resolve(res.value[0][0].text);
  9049. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9050. // $(fileInput).val('');
  9051. // });
  9052. // }
  9053. // }, [], { "type": "GET", "withCredentials": true });
  9054. var xmlhttp;
  9055. var Mac, Sn, DeviceId
  9056. if (window.XMLHttpRequest) {
  9057. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9058. xmlhttp = new XMLHttpRequest();
  9059. } else {
  9060. // IE6, IE5 浏览器执行代码
  9061. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9062. }
  9063. xmlhttp.onreadystatechange = function () {
  9064. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9065. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9066. // resolve(res.value[0][0].text);
  9067. if (type == '2') {
  9068. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9069. } else if (type == '3') {
  9070. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9071. }
  9072. } else {
  9073. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9074. }
  9075. }
  9076. }
  9077. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9078. xmlhttp.send();
  9079. }
  9080. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9081. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9082. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9083. _userinfo = US.userInfo, //登录用户信息
  9084. _userid = US.userInfo.userid //登录用户id
  9085. let _iframe;
  9086. let _cid = cid,
  9087. _stage = stage,
  9088. _task = task,
  9089. _tool = tool;
  9090. var _jie = $$("div", {
  9091. "style": {
  9092. "position": "absolute",
  9093. "bottom": "50px",
  9094. "right": "50px",
  9095. "zIndex": "9999",
  9096. "backgroundColor": "#2268bc",
  9097. "color": "#fff",
  9098. "padding": "12px 20px",
  9099. "cursor": "pointer",
  9100. "borderRadius": "4px",
  9101. },
  9102. "innerHTML": "确认并提交"
  9103. })
  9104. let aTool = ''
  9105. let _loading = document.createElement('div')
  9106. _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;"
  9107. // _loading.id = "";
  9108. let _lchild = document.createElement('div')
  9109. let _limg = document.createElement('img')
  9110. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9111. _limg.style = "width: 26px;margin-right: 10px;"
  9112. _lchild.appendChild(_limg)
  9113. let _lspan = document.createElement('span')
  9114. _lspan.innerHTML = "上传中..."
  9115. _lchild.appendChild(_lspan)
  9116. _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%);"
  9117. _loading.appendChild(_lchild)
  9118. var _box = $$('div', {
  9119. "style": {
  9120. "position": "relative",
  9121. "width": "100%",
  9122. "height": "100%",
  9123. },
  9124. })
  9125. _box.appendChild(_loading)
  9126. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9127. switch (str) {
  9128. case "whiteboard":
  9129. aTool = 1;
  9130. _iframe = $$("iframe", {
  9131. "frameborder": "no",
  9132. "border": "0",
  9133. "scrolling ": "no",
  9134. "style": {
  9135. "cssText": "border:0;width:100%;height:100%"
  9136. },
  9137. "src": "https://beta.iwb.cocorobo.cn/"
  9138. })
  9139. _box.appendChild(_iframe);
  9140. _box.appendChild(_jie);
  9141. _formdiv = new U.UF.UI.form(
  9142. "电子白板",
  9143. _box, {
  9144. "id": "whiteboards" + cid + stage + task + tool,
  9145. "style": {
  9146. "width": "90%",
  9147. "height": "90%",
  9148. "overflow": 'hidden'
  9149. },
  9150. "onresize": function () { }
  9151. }, {
  9152. closecallback: function () { }
  9153. }, {
  9154. "style": {
  9155. "height": "36px"
  9156. }
  9157. }).form; //创建窗体
  9158. _taskbar = {
  9159. "id": str + _formdiv.id,
  9160. "style": {
  9161. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9162. },
  9163. "name": "电子白板",
  9164. "forms": _formdiv,
  9165. "click": function () {
  9166. U.MD.D.I.openApplication(str, obj, info);
  9167. }
  9168. }
  9169. break;
  9170. case "mind":
  9171. aTool = 3;
  9172. _iframe = $$("iframe", {
  9173. "frameborder": "no",
  9174. "border": "0",
  9175. "scrolling ": "no",
  9176. "style": {
  9177. "cssText": "border:0;width:100%;height:100%"
  9178. },
  9179. "src": "/kityminder-editor/dist/index.html"
  9180. });
  9181. _box.appendChild(_iframe);
  9182. _box.appendChild(_jie);
  9183. _formdiv = new U.UF.UI.form(
  9184. "思维导图",
  9185. _box, { //"/jsmind/example/demo.html"
  9186. "id": "minds" + cid + stage + task + tool,
  9187. "style": {
  9188. "width": "90%",
  9189. "height": "90%",
  9190. "overflow": 'hidden'
  9191. },
  9192. "onresize": function () { }
  9193. }, {
  9194. closecallback: function () { }
  9195. }, {
  9196. "style": {
  9197. "height": "36px"
  9198. }
  9199. }).form; //创建窗体
  9200. _taskbar = {
  9201. "id": str + _formdiv.id,
  9202. "style": {
  9203. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9204. },
  9205. "name": "思维导图",
  9206. "forms": _formdiv,
  9207. "click": function () {
  9208. U.MD.D.I.openApplication(str, obj, info);
  9209. }
  9210. }
  9211. break;
  9212. case "doc":
  9213. aTool = 6;
  9214. _iframe = $$("iframe", {
  9215. "frameborder": "no",
  9216. "border": "0",
  9217. "scrolling ": "no",
  9218. "style": {
  9219. "cssText": "border:0;width:100%;height:100%"
  9220. },
  9221. "src": "/Office/Word/WordEditArea.htm"
  9222. })
  9223. _box.appendChild(_iframe);
  9224. _box.appendChild(_jie);
  9225. _formdiv = new U.UF.UI.form(
  9226. "协同文档",
  9227. _box, {
  9228. "id": "docs" + cid + stage + task + tool,
  9229. "style": {
  9230. "width": "90%",
  9231. "height": "90%",
  9232. "overflow": 'hidden'
  9233. },
  9234. "onresize": function () { }
  9235. }, {
  9236. closecallback: function () { }
  9237. }, {
  9238. "style": {
  9239. "height": "36px"
  9240. }
  9241. }).form; //创建窗体
  9242. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9243. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9244. })
  9245. _taskbar = {
  9246. "id": str + _formdiv.id,
  9247. "style": {
  9248. "backgroundImage": "url(/img/icon/doc.png)"
  9249. },
  9250. "name": "协同文档",
  9251. "forms": _formdiv,
  9252. "click": function () {
  9253. U.MD.D.I.openApplication(str, obj, info);
  9254. }
  9255. }
  9256. break;
  9257. }
  9258. const script1 = document.createElement("script");
  9259. script1.type = "text/javascript";
  9260. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9261. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9262. const script2 = document.createElement("script");
  9263. script2.type = "text/javascript";
  9264. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9265. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9266. const script3 = document.createElement("script");
  9267. script3.type = "text/javascript";
  9268. script3.charset = "UTF-8";
  9269. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9270. const script4 = document.createElement("script");
  9271. script4.type = "text/javascript";
  9272. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9273. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9274. if (_iframe) {
  9275. if (str == 'doc') {
  9276. _iframe = _formdiv.querySelector('iframe')
  9277. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9278. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9279. _iframe.contentWindow.document.body.appendChild(script1);
  9280. _iframe.contentWindow.document.body.appendChild(script2);
  9281. // _iframe.contentWindow.document.body.appendChild(script3);
  9282. _iframe.contentWindow.document.body.appendChild(script4);
  9283. })
  9284. if (onloadListener) {
  9285. _iframe.contentDocument.location.reload()
  9286. } else {
  9287. _iframe.contentDocument.location.reload()
  9288. }
  9289. } else if (str == 'mind') {
  9290. _iframe = _formdiv.querySelector('iframe')
  9291. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9292. _iframe.contentWindow.document.body.appendChild(script1);
  9293. _iframe.contentWindow.document.body.appendChild(script2);
  9294. _iframe.contentWindow.document.body.appendChild(script4);
  9295. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9296. })
  9297. if (onloadListener) {
  9298. _iframe.contentDocument.location.reload()
  9299. } else {
  9300. _iframe.contentDocument.location.reload()
  9301. }
  9302. } else {
  9303. _iframe.onload = () => {
  9304. _iframe.contentWindow.document.body.appendChild(script1);
  9305. _iframe.contentWindow.document.body.appendChild(script2);
  9306. // _iframe.contentWindow.document.body.appendChild(script3);
  9307. _iframe.contentWindow.document.body.appendChild(script4);
  9308. };
  9309. }
  9310. _jie.onclick = async () => {
  9311. let text = ''
  9312. if (aTool == 6) {
  9313. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9314. } else if (aTool == 3) {
  9315. text = await U.MD.D.I.getEditorContent(_iframe);
  9316. }
  9317. _loading.style.display = 'flex'
  9318. console.log(_loading);
  9319. var _ajs = _iframe.contentWindow.document.createElement("script");
  9320. _ajs.type = "text/javascript";
  9321. _ajs.innerHTML =
  9322. // 'console.log(' + _loading + ');\n' +
  9323. 'var _js = document.createElement("script");\n' +
  9324. '_js.type="text/javascript";\n' +
  9325. '_js.charset="UTF-8";\n' +
  9326. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9327. "_js.onload = function(){\n" +
  9328. ' var a = document.getElementsByTagName("img")\n' +
  9329. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9330. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9331. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9332. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9333. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9334. "beforeUpload_shishi(file," +
  9335. "'" +
  9336. _userid +
  9337. "'" +
  9338. ", " +
  9339. "'" +
  9340. _cid +
  9341. "'" +
  9342. ", " +
  9343. "'" +
  9344. _stage +
  9345. "'" +
  9346. ", " +
  9347. "'" +
  9348. _task +
  9349. "'" +
  9350. ", " +
  9351. "'" +
  9352. _tool +
  9353. "'" +
  9354. ", " +
  9355. "'" +
  9356. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9357. "'" +
  9358. ", " +
  9359. "'" +
  9360. aTool +
  9361. "'" +
  9362. ", " +
  9363. "`" +
  9364. text +
  9365. "`" +
  9366. ")\n" +
  9367. " });\n" +
  9368. "}\n" +
  9369. "document.head.appendChild(_js);\n";
  9370. _iframe.contentWindow.document.head.appendChild(_ajs);
  9371. }
  9372. }
  9373. //U.MD.D.I.openClick(str);
  9374. //如果有任务栏信息
  9375. // if (_taskbar) {
  9376. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9377. // }
  9378. }
  9379. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9380. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9381. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9382. _userinfo = US.userInfo, //登录用户信息
  9383. _userid = US.userInfo.userid //登录用户id
  9384. let _iframe;
  9385. let _cid = cid,
  9386. _stage = stage,
  9387. _task = task,
  9388. _tool = tool;
  9389. var _jie = $$("div", {
  9390. "style": {
  9391. "position": "absolute",
  9392. "bottom": "50px",
  9393. "right": "50px",
  9394. "zIndex": "9999",
  9395. "backgroundColor": "#2268bc",
  9396. "color": "#fff",
  9397. "padding": "12px 20px",
  9398. "cursor": "pointer",
  9399. "borderRadius": "4px",
  9400. },
  9401. "innerHTML": "确认并提交"
  9402. })
  9403. let aTool = ''
  9404. let _loading = document.createElement('div')
  9405. _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;"
  9406. // _loading.id = "";
  9407. let _lchild = document.createElement('div')
  9408. let _limg = document.createElement('img')
  9409. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9410. _limg.style = "width: 26px;margin-right: 10px;"
  9411. _lchild.appendChild(_limg)
  9412. let _lspan = document.createElement('span')
  9413. _lspan.innerHTML = "上传中..."
  9414. _lchild.appendChild(_lspan)
  9415. _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%);"
  9416. _loading.appendChild(_lchild)
  9417. var _box = $$('div', {
  9418. "style": {
  9419. "position": "relative",
  9420. "width": "100%",
  9421. "height": "100%",
  9422. },
  9423. })
  9424. _box.appendChild(_loading)
  9425. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9426. switch (str) {
  9427. case "whiteboard":
  9428. aTool = 1;
  9429. _iframe = $$("iframe", {
  9430. "frameborder": "no",
  9431. "border": "0",
  9432. "scrolling ": "no",
  9433. "style": {
  9434. "cssText": "border:0;width:100%;height:100%"
  9435. },
  9436. "src": "https://beta.iwb.cocorobo.cn/"
  9437. })
  9438. _box.appendChild(_iframe);
  9439. _box.appendChild(_jie);
  9440. _formdiv = new U.UF.UI.form(
  9441. "电子白板",
  9442. _box, {
  9443. "id": "whiteboards" + cid + stage + task + tool,
  9444. "style": {
  9445. "width": "90%",
  9446. "height": "90%",
  9447. "overflow": 'hidden'
  9448. },
  9449. "onresize": function () { }
  9450. }, {
  9451. closecallback: function () { }
  9452. }, {
  9453. "style": {
  9454. "height": "36px"
  9455. }
  9456. }).form; //创建窗体
  9457. _taskbar = {
  9458. "id": str + _formdiv.id,
  9459. "style": {
  9460. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9461. },
  9462. "name": "电子白板",
  9463. "forms": _formdiv,
  9464. "click": function () {
  9465. U.MD.D.I.openApplication(str, obj, info);
  9466. }
  9467. }
  9468. break;
  9469. case "mind":
  9470. aTool = 3;
  9471. _iframe = $$("iframe", {
  9472. "frameborder": "no",
  9473. "border": "0",
  9474. "scrolling ": "no",
  9475. "style": {
  9476. "cssText": "border:0;width:100%;height:100%"
  9477. },
  9478. "src": "/kityminder-editor/dist/index.html"
  9479. });
  9480. _box.appendChild(_iframe);
  9481. _box.appendChild(_jie);
  9482. _formdiv = new U.UF.UI.form(
  9483. "思维导图",
  9484. _box, { //"/jsmind/example/demo.html"
  9485. "id": "minds" + cid + stage + task + tool,
  9486. "style": {
  9487. "width": "90%",
  9488. "height": "90%",
  9489. "overflow": 'hidden'
  9490. },
  9491. "onresize": function () { }
  9492. }, {
  9493. closecallback: function () { }
  9494. }, {
  9495. "style": {
  9496. "height": "36px"
  9497. }
  9498. }).form; //创建窗体
  9499. _taskbar = {
  9500. "id": str + _formdiv.id,
  9501. "style": {
  9502. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9503. },
  9504. "name": "思维导图",
  9505. "forms": _formdiv,
  9506. "click": function () {
  9507. U.MD.D.I.openApplication(str, obj, info);
  9508. }
  9509. }
  9510. break;
  9511. case "doc":
  9512. aTool = 6;
  9513. _iframe = $$("iframe", {
  9514. "frameborder": "no",
  9515. "border": "0",
  9516. "scrolling ": "no",
  9517. "style": {
  9518. "cssText": "border:0;width:100%;height:100%"
  9519. },
  9520. "src": "/Office/Word/WordEditArea.htm"
  9521. })
  9522. _box.appendChild(_iframe);
  9523. _box.appendChild(_jie);
  9524. _formdiv = new U.UF.UI.form(
  9525. "协同文档",
  9526. _box, {
  9527. "id": "docs" + cid + stage + task + tool,
  9528. "style": {
  9529. "width": "90%",
  9530. "height": "90%",
  9531. "overflow": 'hidden'
  9532. },
  9533. "onresize": function () { }
  9534. }, {
  9535. closecallback: function () { }
  9536. }, {
  9537. "style": {
  9538. "height": "36px"
  9539. }
  9540. }).form; //创建窗体
  9541. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9542. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9543. })
  9544. _taskbar = {
  9545. "id": str + _formdiv.id,
  9546. "style": {
  9547. "backgroundImage": "url(/img/icon/doc.png)"
  9548. },
  9549. "name": "协同文档",
  9550. "forms": _formdiv,
  9551. "click": function () {
  9552. U.MD.D.I.openApplication(str, obj, info);
  9553. }
  9554. }
  9555. break;
  9556. }
  9557. const script1 = document.createElement("script");
  9558. script1.type = "text/javascript";
  9559. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9560. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9561. const script2 = document.createElement("script");
  9562. script2.type = "text/javascript";
  9563. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9564. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9565. const script3 = document.createElement("script");
  9566. script3.type = "text/javascript";
  9567. script3.charset = "UTF-8";
  9568. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9569. const script4 = document.createElement("script");
  9570. script4.type = "text/javascript";
  9571. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9572. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9573. if (_iframe) {
  9574. if (str == 'doc') {
  9575. _iframe = _formdiv.querySelector('iframe')
  9576. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9577. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9578. _iframe.contentWindow.document.body.appendChild(script1);
  9579. _iframe.contentWindow.document.body.appendChild(script2);
  9580. // _iframe.contentWindow.document.body.appendChild(script3);
  9581. _iframe.contentWindow.document.body.appendChild(script4);
  9582. })
  9583. if (onloadListener) {
  9584. _iframe.contentDocument.location.reload()
  9585. } else {
  9586. _iframe.contentDocument.location.reload()
  9587. }
  9588. } else if (str == 'mind') {
  9589. _iframe = _formdiv.querySelector('iframe')
  9590. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9591. _iframe.contentWindow.document.body.appendChild(script1);
  9592. _iframe.contentWindow.document.body.appendChild(script2);
  9593. _iframe.contentWindow.document.body.appendChild(script4);
  9594. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9595. })
  9596. if (onloadListener) {
  9597. _iframe.contentDocument.location.reload()
  9598. } else {
  9599. _iframe.contentDocument.location.reload()
  9600. }
  9601. } else {
  9602. _iframe.onload = () => {
  9603. _iframe.contentWindow.document.body.appendChild(script1);
  9604. _iframe.contentWindow.document.body.appendChild(script2);
  9605. // _iframe.contentWindow.document.body.appendChild(script3);
  9606. _iframe.contentWindow.document.body.appendChild(script4);
  9607. };
  9608. }
  9609. _jie.onclick = async () => {
  9610. let text = ''
  9611. if (aTool == 6) {
  9612. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9613. } else if (aTool == 3) {
  9614. text = await U.MD.D.I.getEditorContent(_iframe);
  9615. }
  9616. _loading.style.display = 'flex'
  9617. console.log(_loading);
  9618. var _ajs = _iframe.contentWindow.document.createElement("script");
  9619. _ajs.type = "text/javascript";
  9620. _ajs.innerHTML =
  9621. // 'console.log(' + _loading + ');\n' +
  9622. 'var _js = document.createElement("script");\n' +
  9623. '_js.type="text/javascript";\n' +
  9624. '_js.charset="UTF-8";\n' +
  9625. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9626. "_js.onload = function(){\n" +
  9627. ' var a = document.getElementsByTagName("img")\n' +
  9628. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9629. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9630. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9631. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9632. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9633. "beforeUpload_shishi(file," +
  9634. "'" +
  9635. _userid +
  9636. "'" +
  9637. ", " +
  9638. "'" +
  9639. _cid +
  9640. "'" +
  9641. ", " +
  9642. "'" +
  9643. _stage +
  9644. "'" +
  9645. ", " +
  9646. "'" +
  9647. _task +
  9648. "'" +
  9649. ", " +
  9650. "'" +
  9651. _tool +
  9652. "'" +
  9653. ", " +
  9654. "'" +
  9655. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9656. "'" +
  9657. ", " +
  9658. "'" +
  9659. aTool +
  9660. "'" +
  9661. ", " +
  9662. "`" +
  9663. text +
  9664. "`" +
  9665. ")\n" +
  9666. " });\n" +
  9667. "}\n" +
  9668. "document.head.appendChild(_js);\n";
  9669. _iframe.contentWindow.document.head.appendChild(_ajs);
  9670. }
  9671. }
  9672. //U.MD.D.I.openClick(str);
  9673. //如果有任务栏信息
  9674. // if (_taskbar) {
  9675. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9676. // }
  9677. }
  9678. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9679. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9680. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9681. _userinfo = US.userInfo, //登录用户信息
  9682. _userid = US.userInfo.userid //登录用户id
  9683. let _iframe;
  9684. let _cid = cid,
  9685. _stage = stage,
  9686. _task = task,
  9687. _tool = tool;
  9688. var _jie = $$("div", {
  9689. "style": {
  9690. "position": "absolute",
  9691. "bottom": "50px",
  9692. "right": "50px",
  9693. "zIndex": "9999",
  9694. "backgroundColor": "#2268bc",
  9695. "color": "#fff",
  9696. "padding": "12px 20px",
  9697. "cursor": "pointer",
  9698. "borderRadius": "4px",
  9699. },
  9700. "innerHTML": "上传模板"
  9701. })
  9702. let aTool = ''
  9703. let _loading = document.createElement('div')
  9704. _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;"
  9705. // _loading.id = "";
  9706. let _lchild = document.createElement('div')
  9707. let _limg = document.createElement('img')
  9708. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9709. _limg.style = "width: 26px;margin-right: 10px;"
  9710. _lchild.appendChild(_limg)
  9711. let _lspan = document.createElement('span')
  9712. _lspan.innerHTML = "上传中..."
  9713. _lchild.appendChild(_lspan)
  9714. _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%);"
  9715. _loading.appendChild(_lchild)
  9716. var _box = $$('div', {
  9717. "style": {
  9718. "position": "relative",
  9719. "width": "100%",
  9720. "height": "100%",
  9721. },
  9722. })
  9723. _box.appendChild(_loading)
  9724. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9725. switch (str) {
  9726. case "whiteboard":
  9727. aTool = 1;
  9728. _iframe = $$("iframe", {
  9729. "frameborder": "no",
  9730. "border": "0",
  9731. "scrolling ": "no",
  9732. "style": {
  9733. "cssText": "border:0;width:100%;height:100%"
  9734. },
  9735. "src": "https://beta.iwb.cocorobo.cn/"
  9736. })
  9737. _box.appendChild(_iframe);
  9738. _box.appendChild(_jie);
  9739. _formdiv = new U.UF.UI.form(
  9740. "电子白板",
  9741. _box, {
  9742. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9743. "style": {
  9744. "width": "90%",
  9745. "height": "90%",
  9746. "overflow": 'hidden'
  9747. },
  9748. "onresize": function () { }
  9749. }, {
  9750. closecallback: function () { }
  9751. }, {
  9752. "style": {
  9753. "height": "36px"
  9754. }
  9755. }).form; //创建窗体
  9756. _taskbar = {
  9757. "id": str + _formdiv.id,
  9758. "style": {
  9759. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9760. },
  9761. "name": "电子白板",
  9762. "forms": _formdiv,
  9763. "click": function () {
  9764. U.MD.D.I.openApplication(str, obj, info);
  9765. }
  9766. }
  9767. break;
  9768. case "mind":
  9769. aTool = 3;
  9770. _iframe = $$("iframe", {
  9771. "frameborder": "no",
  9772. "border": "0",
  9773. "scrolling ": "no",
  9774. "style": {
  9775. "cssText": "border:0;width:100%;height:100%"
  9776. },
  9777. "src": "/kityminder-editor/dist/index.html"
  9778. });
  9779. _box.appendChild(_iframe);
  9780. _box.appendChild(_jie);
  9781. _formdiv = new U.UF.UI.form(
  9782. "思维导图",
  9783. _box, { //"/jsmind/example/demo.html"
  9784. "id": "minds_Yu" + cid + stage + task + tool,
  9785. "style": {
  9786. "width": "90%",
  9787. "height": "90%",
  9788. "overflow": 'hidden'
  9789. },
  9790. "onresize": function () { }
  9791. }, {
  9792. closecallback: function () { }
  9793. }, {
  9794. "style": {
  9795. "height": "36px"
  9796. }
  9797. }).form; //创建窗体
  9798. _taskbar = {
  9799. "id": str + _formdiv.id,
  9800. "style": {
  9801. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9802. },
  9803. "name": "思维导图",
  9804. "forms": _formdiv,
  9805. "click": function () {
  9806. U.MD.D.I.openApplication(str, obj, info);
  9807. }
  9808. }
  9809. break;
  9810. case "doc":
  9811. aTool = 6;
  9812. _iframe = $$("iframe", {
  9813. "frameborder": "no",
  9814. "border": "0",
  9815. "scrolling ": "no",
  9816. "style": {
  9817. "cssText": "border:0;width:100%;height:100%"
  9818. },
  9819. "src": "/Office/Word/WordEditArea.htm"
  9820. })
  9821. _box.appendChild(_iframe);
  9822. _box.appendChild(_jie);
  9823. _formdiv = new U.UF.UI.form(
  9824. "协同文档",
  9825. _box, {
  9826. "id": "docs_Yu" + cid + stage + task + tool,
  9827. "style": {
  9828. "width": "90%",
  9829. "height": "90%",
  9830. "overflow": 'hidden'
  9831. },
  9832. "onresize": function () { }
  9833. }, {
  9834. closecallback: function () { }
  9835. }, {
  9836. "style": {
  9837. "height": "36px"
  9838. }
  9839. }).form; //创建窗体
  9840. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9841. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9842. })
  9843. _taskbar = {
  9844. "id": str + _formdiv.id,
  9845. "style": {
  9846. "backgroundImage": "url(/img/icon/doc.png)"
  9847. },
  9848. "name": "协同文档",
  9849. "forms": _formdiv,
  9850. "click": function () {
  9851. U.MD.D.I.openApplication(str, obj, info);
  9852. }
  9853. }
  9854. break;
  9855. case "CocoPi":
  9856. aTool = 57;
  9857. _iframe = $$("iframe", {
  9858. "allowpaymentrequest": "allowpaymentrequest",
  9859. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9860. "webkitallowfullscreen": "",
  9861. "mozallowfullscreen": "",
  9862. "frameborder": "no",
  9863. "border": "0",
  9864. "scrolling ": "no",
  9865. "style": {
  9866. "cssText": "border:0;width:100%;height:100%"
  9867. },
  9868. "src": "https://pi.cocorobo.cn/"
  9869. })
  9870. _box.appendChild(_iframe);
  9871. _box.appendChild(_jie);
  9872. _formdiv = new U.UF.UI.form(
  9873. "CocoPi",
  9874. _box, {
  9875. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9876. "style": {
  9877. "width": "90%",
  9878. "height": "90%",
  9879. "overflow": 'hidden'
  9880. },
  9881. "onresize": function () { }
  9882. }, {
  9883. closecallback: function () { }
  9884. }, {
  9885. "style": {
  9886. "height": "36px"
  9887. }
  9888. }).form; //创建窗体
  9889. _taskbar = {
  9890. "id": str + _formdiv.id,
  9891. "style": {
  9892. "backgroundImage": "url(/img/icon/cocopi.png)"
  9893. },
  9894. "name": "CocoPi",
  9895. "forms": _formdiv,
  9896. "click": function () {
  9897. U.MD.D.I.openApplication(str, obj, info);
  9898. }
  9899. }
  9900. break;
  9901. }
  9902. if (_iframe) {
  9903. if (str == 'doc') {
  9904. _iframe = _formdiv.querySelector('iframe')
  9905. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9906. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9907. })
  9908. if (onloadListener) {
  9909. _iframe.contentDocument.location.reload()
  9910. } else {
  9911. _iframe.contentDocument.location.reload()
  9912. }
  9913. } else if (str == 'mind') {
  9914. _iframe = _formdiv.querySelector('iframe')
  9915. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9916. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9917. })
  9918. if (onloadListener) {
  9919. _iframe.contentDocument.location.reload()
  9920. } else {
  9921. _iframe.contentDocument.location.reload()
  9922. }
  9923. } else if (str == 'whiteboard') {
  9924. _iframe = _formdiv.querySelector('iframe')
  9925. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9926. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9927. })
  9928. // if (onloadListener) {
  9929. // try {
  9930. // _iframe.src += "?cocorobo="+new Date().getTime()
  9931. // _iframe.contentWindow.document.location.reload()
  9932. // } catch (error) {
  9933. // }
  9934. // } else {
  9935. // _iframe.contentDocument.location.reload()
  9936. // }
  9937. } else if (str == 'CocoPi') {
  9938. _iframe = _formdiv.querySelector('iframe')
  9939. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9940. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9941. })
  9942. if (onloadListener) {
  9943. _iframe.contentDocument.location.reload()
  9944. } else {
  9945. _iframe.contentDocument.location.reload()
  9946. }
  9947. } else {
  9948. _iframe.onload = () => { };
  9949. }
  9950. _jie.onclick = async () => {
  9951. let text = ''
  9952. let type = '2'
  9953. if (aTool == 1) {
  9954. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9955. type = '3'
  9956. } else if (aTool == 6) {
  9957. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9958. type = '1'
  9959. } else if (aTool == 3) {
  9960. text = await U.MD.D.I.getEditorContent(_iframe);
  9961. type = '2'
  9962. } else if (aTool == 57) {
  9963. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9964. type = '4'
  9965. }
  9966. _loading.style.display = 'flex'
  9967. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9968. }
  9969. }
  9970. //U.MD.D.I.openClick(str);
  9971. //如果有任务栏信息
  9972. // if (_taskbar) {
  9973. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9974. // }
  9975. }
  9976. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9977. var xmlhttp;
  9978. var Mac, Sn, DeviceId
  9979. if (window.XMLHttpRequest) {
  9980. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9981. xmlhttp = new XMLHttpRequest();
  9982. } else {
  9983. // IE6, IE5 浏览器执行代码
  9984. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9985. }
  9986. xmlhttp.onreadystatechange = function () {
  9987. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9988. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9989. // resolve(res.value[0][0].text);
  9990. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9991. }
  9992. }
  9993. }
  9994. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9995. xmlhttp.send();
  9996. }
  9997. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9998. var xmlhttp;
  9999. var Mac, Sn, DeviceId
  10000. if (window.XMLHttpRequest) {
  10001. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10002. xmlhttp = new XMLHttpRequest();
  10003. } else {
  10004. // IE6, IE5 浏览器执行代码
  10005. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10006. }
  10007. xmlhttp.onreadystatechange = function () {
  10008. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10009. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10010. // resolve(res.value[0][0].text);
  10011. if (type == '2') {
  10012. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10013. } else if (type == '3') {
  10014. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10015. } else if (type == '4') {
  10016. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10017. }
  10018. } else {
  10019. if (type == '2') {
  10020. iframe.contentWindow.editor.minder.importData('json', '')
  10021. } else if (type == '3') {
  10022. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10023. } else if (type == '4') {
  10024. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10025. }
  10026. }
  10027. }
  10028. }
  10029. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10030. xmlhttp.send();
  10031. }
  10032. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10033. var xmlhttp;
  10034. var Mac, Sn, DeviceId
  10035. if (window.XMLHttpRequest) {
  10036. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10037. xmlhttp = new XMLHttpRequest();
  10038. } else {
  10039. // IE6, IE5 浏览器执行代码
  10040. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10041. }
  10042. xmlhttp.onreadystatechange = function () {
  10043. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10044. if (xmlhttp.response) {
  10045. // resolve(res.value[0][0].text);
  10046. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10047. // $(fileInput).val('');
  10048. // });
  10049. span.innerHTML = '上传成功'
  10050. setTimeout(() => {
  10051. loading.style.display = 'none'
  10052. }, 1000);
  10053. }
  10054. }
  10055. }
  10056. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10057. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10058. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10059. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10060. // 设置请求头,表示请求体的编码格式
  10061. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10062. // 设置请求体,使用url-encoded格式的数据
  10063. }
  10064. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10065. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10066. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10067. _userinfo = US.userInfo, //登录用户信息
  10068. _userid = US.userInfo.userid //登录用户id
  10069. let _iframe;
  10070. let _cid = cid,
  10071. _stage = stage,
  10072. _task = task,
  10073. _tool = tool;
  10074. var _jie = $$("div", {
  10075. "style": {
  10076. "position": "absolute",
  10077. "bottom": "50px",
  10078. "right": "50px",
  10079. "zIndex": "9999",
  10080. "backgroundColor": "#2268bc",
  10081. "color": "#fff",
  10082. "padding": "12px 20px",
  10083. "cursor": "pointer",
  10084. "borderRadius": "4px",
  10085. },
  10086. "innerHTML": "提交作业"
  10087. })
  10088. let aTool = ''
  10089. let _loading = document.createElement('div')
  10090. _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;"
  10091. // _loading.id = "";
  10092. let _lchild = document.createElement('div')
  10093. let _limg = document.createElement('img')
  10094. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10095. _limg.style = "width: 26px;margin-right: 10px;"
  10096. _lchild.appendChild(_limg)
  10097. let _lspan = document.createElement('span')
  10098. _lspan.innerHTML = "上传中..."
  10099. _lchild.appendChild(_lspan)
  10100. _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%);"
  10101. _loading.appendChild(_lchild)
  10102. var _box = $$('div', {
  10103. "style": {
  10104. "position": "relative",
  10105. "width": "100%",
  10106. "height": "100%",
  10107. },
  10108. })
  10109. _box.appendChild(_loading)
  10110. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10111. switch (str) {
  10112. case "CocoPi":
  10113. aTool = 57;
  10114. _iframe = $$("iframe", {
  10115. "allowpaymentrequest": "allowpaymentrequest",
  10116. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10117. "webkitallowfullscreen": "",
  10118. "mozallowfullscreen": "",
  10119. "frameborder": "no",
  10120. "border": "0",
  10121. "scrolling ": "no",
  10122. "style": {
  10123. "cssText": "border:0;width:100%;height:100%"
  10124. },
  10125. "src": "https://pi.cocorobo.cn/"
  10126. })
  10127. _box.appendChild(_iframe);
  10128. _box.appendChild(_jie);
  10129. _formdiv = new U.UF.UI.form(
  10130. "CocoPi",
  10131. _box, {
  10132. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10133. "style": {
  10134. "width": "90%",
  10135. "height": "90%",
  10136. "overflow": 'hidden'
  10137. },
  10138. "onresize": function () { }
  10139. }, {
  10140. closecallback: function () { }
  10141. }, {
  10142. "style": {
  10143. "height": "36px"
  10144. }
  10145. }).form; //创建窗体
  10146. _taskbar = {
  10147. "id": str + _formdiv.id,
  10148. "style": {
  10149. "backgroundImage": "url(/img/icon/cocopi.png)"
  10150. },
  10151. "name": "CocoPi",
  10152. "forms": _formdiv,
  10153. "click": function () {
  10154. U.MD.D.I.openApplication(str, obj, info);
  10155. }
  10156. }
  10157. break;
  10158. }
  10159. if (_iframe) {
  10160. if (str == 'CocoPi') {
  10161. _iframe = _formdiv.querySelector('iframe')
  10162. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10163. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10164. })
  10165. if (onloadListener) {
  10166. _iframe.contentDocument.location.reload()
  10167. } else {
  10168. _iframe.contentDocument.location.reload()
  10169. }
  10170. }
  10171. _jie.onclick = async () => {
  10172. let text = ''
  10173. if (aTool == 57) {
  10174. text = _iframe.contentWindow.getLoadXmlStr()
  10175. }
  10176. _loading.style.display = 'flex'
  10177. console.log(_loading);
  10178. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10179. _loading.style.display = 'none'
  10180. let _div = document.createElement('div')
  10181. _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;"
  10182. let _inner = document.createElement('div')
  10183. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10184. _inner.innerHTML = "上传成功"
  10185. _div.appendChild(_inner)
  10186. _iframe.contentWindow.window.document.body.appendChild(_div)
  10187. _div.onclick = () => {
  10188. _iframe.contentWindow.window.document.body.removeChild(_div)
  10189. }
  10190. setTimeout(() => {
  10191. _iframe.contentWindow.window.document.body.removeChild(_div)
  10192. }, 1000);
  10193. }, [], { "type": "POST", "withCredentials": true });
  10194. }
  10195. }
  10196. }
  10197. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10198. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10199. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10200. _userid = student.userid, //登录用户id
  10201. _username = student.student //用户名字
  10202. let _iframe;
  10203. let _cid = cid,
  10204. _stage = stage,
  10205. _task = task,
  10206. _tool = tool;
  10207. var _jie = $$("div", {
  10208. "style": {
  10209. "position": "absolute",
  10210. "bottom": "50px",
  10211. "right": "50px",
  10212. "zIndex": "9999",
  10213. "backgroundColor": "#2268bc",
  10214. "color": "#fff",
  10215. "padding": "12px 20px",
  10216. "cursor": "pointer",
  10217. "borderRadius": "4px",
  10218. },
  10219. "innerHTML": "提交作业"
  10220. })
  10221. let aTool = ''
  10222. let _loading = document.createElement('div')
  10223. _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;"
  10224. // _loading.id = "";
  10225. let _lchild = document.createElement('div')
  10226. let _limg = document.createElement('img')
  10227. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10228. _limg.style = "width: 26px;margin-right: 10px;"
  10229. _lchild.appendChild(_limg)
  10230. let _lspan = document.createElement('span')
  10231. _lspan.innerHTML = "上传中..."
  10232. _lchild.appendChild(_lspan)
  10233. _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%);"
  10234. _loading.appendChild(_lchild)
  10235. var _box = $$('div', {
  10236. "style": {
  10237. "position": "relative",
  10238. "width": "100%",
  10239. "height": "100%",
  10240. },
  10241. })
  10242. _box.appendChild(_loading)
  10243. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10244. switch (str) {
  10245. case "CocoPi":
  10246. aTool = 57;
  10247. _iframe = $$("iframe", {
  10248. "allowpaymentrequest": "allowpaymentrequest",
  10249. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10250. "webkitallowfullscreen": "",
  10251. "mozallowfullscreen": "",
  10252. "frameborder": "no",
  10253. "border": "0",
  10254. "scrolling ": "no",
  10255. "style": {
  10256. "cssText": "border:0;width:100%;height:100%"
  10257. },
  10258. "src": "https://pi.cocorobo.cn/"
  10259. })
  10260. _box.appendChild(_iframe);
  10261. _box.appendChild(_jie);
  10262. _formdiv = new U.UF.UI.form(
  10263. "CocoPi-" + _username,
  10264. _box, {
  10265. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10266. "style": {
  10267. "width": "90%",
  10268. "height": "90%",
  10269. "overflow": 'hidden'
  10270. },
  10271. "onresize": function () { }
  10272. }, {
  10273. closecallback: function () { }
  10274. }, {
  10275. "style": {
  10276. "height": "36px"
  10277. }
  10278. }).form; //创建窗体
  10279. _taskbar = {
  10280. "id": str + _formdiv.id,
  10281. "style": {
  10282. "backgroundImage": "url(/img/icon/cocopi.png)"
  10283. },
  10284. "name": "CocoPi",
  10285. "forms": _formdiv,
  10286. "click": function () {
  10287. U.MD.D.I.openApplication(str, obj, info);
  10288. }
  10289. }
  10290. break;
  10291. }
  10292. if (_iframe) {
  10293. if (str == 'CocoPi') {
  10294. _iframe = _formdiv.querySelector('iframe')
  10295. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10296. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10297. })
  10298. if (onloadListener) {
  10299. _iframe.contentDocument.location.reload()
  10300. } else {
  10301. _iframe.contentDocument.location.reload()
  10302. }
  10303. }
  10304. _jie.onclick = async () => {
  10305. let text = ''
  10306. if (aTool == 57) {
  10307. text = _iframe.contentWindow.getLoadXmlStr()
  10308. }
  10309. _loading.style.display = 'flex'
  10310. console.log(_loading);
  10311. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10312. _loading.style.display = 'none'
  10313. let _div = document.createElement('div')
  10314. _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;"
  10315. let _inner = document.createElement('div')
  10316. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10317. _inner.innerHTML = "上传成功"
  10318. _div.appendChild(_inner)
  10319. _iframe.contentWindow.window.document.body.appendChild(_div)
  10320. _div.onclick = () => {
  10321. _iframe.contentWindow.window.document.body.removeChild(_div)
  10322. }
  10323. setTimeout(() => {
  10324. _iframe.contentWindow.window.document.body.removeChild(_div)
  10325. }, 1000);
  10326. }, [], { "type": "POST", "withCredentials": true });
  10327. }
  10328. }
  10329. }
  10330. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10331. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10332. if (res.value[0].length > 0) {
  10333. if (atool == 57) {
  10334. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10335. }
  10336. } else {
  10337. if (atool == 57) {
  10338. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10339. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10340. }
  10341. }
  10342. }, [], { "type": "POST", "withCredentials": true });
  10343. }