DeskTop.js 662 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  594. ];
  595. //教科院实小教师桌面图标的全局变量
  596. U.MD.D.I.siesStudentDeskIcon = [
  597. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  598. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  599. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  600. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  601. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  602. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  603. ];
  604. //中山小学教师桌面图标的全局变量
  605. U.MD.D.I.guzmsteacherDeskIcon = [
  606. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  607. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  608. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  609. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  610. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  611. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  612. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  614. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  615. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  616. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  617. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  621. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  622. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  623. ];
  624. //中山小学学生桌面图标的全局变量
  625. U.MD.D.I.guzmsStudentDeskIcon = [
  626. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  627. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  628. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  629. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  630. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  631. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  632. ];
  633. //福田
  634. U.MD.D.I.gdjgTeacherDeskIcon = [
  635. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  636. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  637. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  638. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  639. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  640. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  641. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  642. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  643. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  644. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  646. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  647. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  649. ];
  650. //gdjg
  651. U.MD.D.I.gdjgAdminDeskIcon = [
  652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  654. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  655. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  656. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  657. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  658. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  659. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  660. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  662. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  663. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  664. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  665. ];
  666. //hk
  667. U.MD.D.I.hkteacherDeskIcon = [
  668. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  669. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  670. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  671. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  672. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  673. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  674. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  675. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  676. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  677. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  678. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  679. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  680. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  681. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  683. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  684. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  685. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  686. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  687. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  688. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  690. ];
  691. //hk
  692. U.MD.D.I.hkStudentDeskIcon = [
  693. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  696. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  698. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  699. ];
  700. //hk
  701. U.MD.D.I.hkaceteacherDeskIcon = [
  702. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  703. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  706. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  707. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  708. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  709. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  710. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  711. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  712. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  713. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  714. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  715. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  717. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  718. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  719. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  720. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  721. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  722. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  723. ];
  724. //hk
  725. U.MD.D.I.hkaceStudentDeskIcon = [
  726. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  727. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  728. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  729. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  732. ];
  733. //香海正覺蓮社佛教正覺中學
  734. U.MD.D.I.hkZJLSteacherDeskIcon = [
  735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  737. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  738. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  739. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  740. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  741. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  742. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  743. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  744. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  745. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  746. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  747. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  748. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  749. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  750. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  751. ];
  752. //香海正覺蓮社佛教正覺中學
  753. U.MD.D.I.hkZJLSStudentDeskIcon = [
  754. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  758. ];
  759. //云海
  760. U.MD.D.I.yunhaiTeacherDeskIcon = [
  761. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  762. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  765. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  766. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  767. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  768. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  769. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  770. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  771. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  772. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  773. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  774. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  775. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  776. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  778. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  779. ];
  780. //福田
  781. U.MD.D.I.heyuanTeacherDeskIcon = [
  782. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  783. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  784. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  786. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  787. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  788. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  789. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  790. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  791. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  794. ];
  795. //福田
  796. U.MD.D.I.heyuanAdminDeskIcon = [
  797. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  798. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  799. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  800. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  801. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  802. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  803. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  804. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  805. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  806. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  807. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  808. ];
  809. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  810. U.MD.D.I.szherTeacherDeskIcon = [
  811. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  812. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  813. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  814. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  815. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  816. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  818. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  820. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  821. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  822. ];
  823. //dsei
  824. U.MD.D.I.dseiTeacherDeskIcon = [
  825. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  826. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  827. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  828. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  834. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  835. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  836. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  837. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  838. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  839. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  840. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  841. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  842. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  843. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  844. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  845. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  846. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  847. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  848. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  849. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  850. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  851. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  852. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  853. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  854. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  855. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  856. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  857. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  858. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  859. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  860. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  861. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  862. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  864. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  865. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  866. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  867. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  868. ];
  869. //dsei
  870. U.MD.D.I.dseiAdminDeskIcon = [
  871. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  872. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  873. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  874. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  875. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  876. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  877. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  878. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  879. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  880. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  881. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  882. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  883. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  884. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  885. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  886. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  887. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  888. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  889. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  890. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  891. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  892. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  893. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  894. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  895. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  896. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  897. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  898. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  899. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  900. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  901. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  902. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  903. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  904. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  905. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  906. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  907. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  908. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  910. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  911. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  912. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  913. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  914. ];
  915. //dsei
  916. U.MD.D.I.dseiStudentDeskIcon = [
  917. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  918. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  919. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  920. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  922. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  923. ];
  924. //未来教育基地
  925. U.MD.D.I.szjkyTeacherDeskIcon = [
  926. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  927. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  928. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  929. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  930. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  931. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  932. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  933. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  934. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  935. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  936. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  937. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  938. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  939. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  941. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  942. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  943. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  944. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  945. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  946. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  947. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  948. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  949. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  950. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  951. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  952. ];
  953. //未来教育基地
  954. U.MD.D.I.szjkyAdminDeskIcon = [
  955. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  956. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  957. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  958. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  959. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  960. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  961. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  962. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  963. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  964. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  965. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  966. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  967. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  968. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  969. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  970. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  971. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  972. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  973. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  974. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  975. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  976. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  977. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  978. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  979. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  980. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  981. ];
  982. //未来教育基地
  983. U.MD.D.I.szjkyStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  988. ];
  989. //成华教育局
  990. U.MD.D.I.chjyjTeacherDeskIcon = [
  991. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  992. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  995. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  996. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  999. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1000. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1001. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1002. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1005. ];
  1006. //成华教育局chjyj
  1007. U.MD.D.I.chjyjAdminDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1019. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1021. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1022. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1023. ];
  1024. //成华教育局chjyj
  1025. U.MD.D.I.chjyjStudentDeskIcon = [
  1026. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1030. ];
  1031. //tpc
  1032. U.MD.D.I.tpcStudentDeskIcon = [
  1033. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1034. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1035. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1036. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcTeacherDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcAdminDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1056. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1057. ];
  1058. //THU-IOE
  1059. U.MD.D.I.thuioeTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1063. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1064. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1065. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1066. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1067. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1070. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1071. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1072. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1073. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1074. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1075. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1076. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1077. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1078. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1079. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1080. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1081. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1082. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1083. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1084. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1085. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1086. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1087. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1088. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1089. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1090. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1091. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1092. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1093. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1094. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1095. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1096. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1097. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1098. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1099. ];
  1100. //THU-IOE
  1101. U.MD.D.I.thuioeStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //jccssyl
  1108. U.MD.D.I.jccssylTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1112. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1113. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1114. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1115. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1116. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1117. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1118. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1119. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1120. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1121. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1122. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1123. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1126. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1128. ];
  1129. //jccssyl
  1130. U.MD.D.I.jccssylStudentDeskIcon = [
  1131. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1135. ];
  1136. //cale
  1137. U.MD.D.I.caleTeacherDeskIcon = [
  1138. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1139. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1140. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1141. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1142. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1143. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1144. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1145. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1146. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1147. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1148. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1149. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1150. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1151. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1152. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1155. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1157. ];
  1158. //cale
  1159. U.MD.D.I.caleStudentDeskIcon = [
  1160. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1164. ];
  1165. //lqwmsgzs
  1166. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1167. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1168. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1169. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1170. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1174. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1175. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1176. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1177. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1178. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1179. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1180. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1181. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1182. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1183. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1184. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1185. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1186. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1187. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1188. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1189. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1190. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1191. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1192. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1193. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1194. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1195. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1196. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1197. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1198. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1199. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1200. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1201. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1202. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1203. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1204. ];
  1205. //lqwmsgzs
  1206. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1207. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1210. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1211. ];
  1212. //盐田区幼儿园
  1213. U.MD.D.I.ytyTeacherDeskIcon = [
  1214. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1215. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1216. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1217. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1218. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1219. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1220. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1221. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1226. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1227. ];
  1228. //盐田区幼儿园
  1229. U.MD.D.I.ytyStudentDeskIcon = [
  1230. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1231. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1232. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1233. ];
  1234. //scnuai
  1235. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1239. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1240. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1241. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1242. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1245. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1246. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1247. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1248. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1249. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1250. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1251. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1252. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1253. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1254. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1255. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1256. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1257. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1258. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1259. ];
  1260. //scnuai
  1261. U.MD.D.I.scnuaiAdminDeskIcon = [
  1262. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1263. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1264. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1265. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1266. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1267. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1268. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1269. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1270. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1271. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1272. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1273. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1274. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1275. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1276. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1277. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1278. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1279. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1280. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1281. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1282. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1283. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1284. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1285. ];
  1286. //scnuai
  1287. U.MD.D.I.scnuaiStudentDeskIcon = [
  1288. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1289. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1290. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. ];
  1293. //cocobiz
  1294. U.MD.D.I.cocobizteacherDeskIcon = [
  1295. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1296. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1297. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1298. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1302. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1303. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1304. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1305. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1306. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1307. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1308. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1309. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1310. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1311. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1312. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1313. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1314. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1315. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1316. ];
  1317. //cocobiz
  1318. U.MD.D.I.cocobizStudentDeskIcon = [
  1319. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1320. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1321. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1322. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1323. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1324. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1325. ];
  1326. //xxzjky
  1327. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1328. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1330. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1331. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1337. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1338. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1339. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1340. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1341. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1342. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1344. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1345. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1347. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1348. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1349. ];
  1350. //xxzjky
  1351. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1352. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1353. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1354. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1355. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1356. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1357. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1358. ];
  1359. //nsfx
  1360. U.MD.D.I.nsfxTeacherDeskIcon = [
  1361. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1362. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1363. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1364. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1367. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1368. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1369. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1370. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1374. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1375. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1376. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1377. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1378. ];
  1379. //nsfx
  1380. U.MD.D.I.nsfxStudentDeskIcon = [
  1381. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. ];
  1386. //stia
  1387. U.MD.D.I.stiaTeacherDeskIcon = [
  1388. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1389. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1390. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1391. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1392. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1393. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1394. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1395. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1396. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1397. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1398. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1399. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1400. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1401. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1402. ];
  1403. //stia
  1404. U.MD.D.I.stiaStudentDeskIcon = [
  1405. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //szdjg
  1411. U.MD.D.I.szdjgTeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgStudentDeskIcon = [
  1417. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1418. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1419. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1420. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1421. ];
  1422. //010607
  1423. U.MD.D.I.x010607TeacherDeskIcon = [
  1424. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1425. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1426. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1427. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1428. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1429. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1430. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1431. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1432. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1435. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1436. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1437. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1438. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1439. ];
  1440. //010607
  1441. U.MD.D.I.x010607StudentDeskIcon = [
  1442. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1443. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1444. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. ];
  1447. //010608
  1448. U.MD.D.I.x010608TeacherDeskIcon = [
  1449. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1450. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1451. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1452. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1453. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1454. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1455. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1456. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1459. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1460. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1461. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1462. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1463. ];
  1464. //010608
  1465. U.MD.D.I.x010608StudentDeskIcon = [
  1466. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1467. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1468. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1469. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1470. ];
  1471. //xhly
  1472. U.MD.D.I.xhlyTeacherDeskIcon = [
  1473. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1474. ];
  1475. //010608
  1476. U.MD.D.I.xhlyStudentDeskIcon = [
  1477. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1478. ];
  1479. //北师大
  1480. U.MD.D.I.BSDNSteacherDeskIcon = [
  1481. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1482. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1484. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1485. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1488. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1489. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1490. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1491. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1492. ];
  1493. //北师大
  1494. U.MD.D.I.BSDNSstudentDeskIcon = [
  1495. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1496. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1497. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. ];
  1500. //CUHK_EDU
  1501. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1504. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1505. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1508. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1512. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1513. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1514. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1515. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1516. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1517. ];
  1518. //CUHK_EDU
  1519. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1520. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1522. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1524. ];
  1525. //010503
  1526. U.MD.D.I.x010503TeacherDeskIcon = [
  1527. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1528. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1529. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1530. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1531. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1532. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1533. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1535. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1536. ];
  1537. //010503
  1538. U.MD.D.I.x010503StudentDeskIcon = [
  1539. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //SPROUT Lab
  1545. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1553. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. ];
  1556. //SPROUT Lab
  1557. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1558. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1559. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. ];
  1563. //010204
  1564. U.MD.D.I.x010204TeacherDeskIcon = [
  1565. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1566. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204StudentDeskIcon = [
  1570. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1571. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1572. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1574. ];
  1575. //trail
  1576. U.MD.D.I.trailTeacherDeskIcon = [
  1577. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1578. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailStudentDeskIcon = [
  1582. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1583. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1584. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1586. ];
  1587. //010504
  1588. U.MD.D.I.x010504TeacherDeskIcon = [
  1589. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1590. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1592. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1593. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1596. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1598. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1599. ];
  1600. //010504
  1601. U.MD.D.I.x010504StudentDeskIcon = [
  1602. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1606. ];
  1607. //SCNUET
  1608. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1614. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1615. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1616. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1617. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1618. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1619. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1620. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1621. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1622. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1623. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1625. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1626. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1627. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1628. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1630. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1631. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1632. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1633. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1634. ];
  1635. //SCNUET
  1636. U.MD.D.I.SCNUETAdminDeskIcon = [
  1637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1641. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1642. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1643. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1644. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1645. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1646. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1647. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1648. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1649. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1650. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1651. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1652. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1653. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1654. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1655. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1656. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1657. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1658. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1659. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1660. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1661. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1662. ];
  1663. //SCNUET
  1664. U.MD.D.I.SCNUETStudentDeskIcon = [
  1665. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1666. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1667. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1668. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. ];
  1670. //x020201
  1671. U.MD.D.I.x020201TeacherDeskIcon = [
  1672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1677. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1678. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1679. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1680. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1682. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1683. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1684. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1685. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1686. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1687. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1688. ];
  1689. //x020201
  1690. U.MD.D.I.x020201AdminDeskIcon = [
  1691. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1692. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1693. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1695. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1696. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1697. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1698. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1699. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1701. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1702. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1704. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1705. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1706. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1707. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1708. ];
  1709. //020201
  1710. U.MD.D.I.x020201StudentDeskIcon = [
  1711. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1712. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1713. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1715. ];
  1716. //010611
  1717. U.MD.D.I.x010611TeacherDeskIcon = [
  1718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1722. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1725. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1726. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1727. ];
  1728. //010611
  1729. U.MD.D.I.x010611StudentDeskIcon = [
  1730. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1731. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1732. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1734. ];
  1735. //tianyuan
  1736. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1743. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1744. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1745. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1746. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1747. ];
  1748. //010611
  1749. U.MD.D.I.tianyuanStudentDeskIcon = [
  1750. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1751. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1752. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1754. ];
  1755. //#region 桌面初始化a
  1756. /**
  1757. * 初始化桌面的起始函数
  1758. *
  1759. */
  1760. U.MD.D.I.init = function () {
  1761. if ($("#U_MD_D_K")[0]) {
  1762. //初始化桌面图标
  1763. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1764. // var clickUrl = ':12588/requestIp.php';
  1765. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1766. // U.MD.D.I.Ip = data;
  1767. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1768. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1769. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1770. // })
  1771. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1772. // })
  1773. }
  1774. }
  1775. /**
  1776. * 模式切换
  1777. *
  1778. */
  1779. U.MD.D.I.ModeCheck = function (type) {
  1780. if (US.Config.type == type) {
  1781. return
  1782. }
  1783. US.Config.type = type
  1784. $('.U_PBL_Check .active')[0].className = ''
  1785. if (type == 1) {
  1786. $('.U_PBL_Check div')[0].className = 'active'
  1787. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1788. } else {
  1789. $('.U_PBL_Check div')[1].className = 'active'
  1790. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1791. }
  1792. //初始化桌面图标
  1793. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1794. if (type == 2) {
  1795. U.MD.D.I.openApplication("project")
  1796. }
  1797. }
  1798. /**
  1799. * 隐藏任务栏
  1800. *
  1801. * @param {element} 桌面元素
  1802. */
  1803. U.MD.D.I.hiddenTaskbar = function (el) {
  1804. //任务栏位置变小
  1805. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1806. //桌面的位置变大
  1807. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1808. }
  1809. /**
  1810. * 隐藏任务栏
  1811. *
  1812. * @param {element} 桌面元素
  1813. */
  1814. U.MD.D.I.hiddenTaskbarout = function (el) {
  1815. //任务栏位置变小
  1816. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1817. //任务栏位置变化
  1818. U.selectEl(el).css({ "bottom": "-60px" });
  1819. //桌面的位置变大
  1820. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1821. }
  1822. }
  1823. /**
  1824. * 初始化打印桌面图标
  1825. *
  1826. * @param {element} 桌面元素
  1827. */
  1828. U.MD.D.I.initDesktopIcons = function (el, type) {
  1829. var i, //用于循环
  1830. _content, //桌面图标元素
  1831. _iconcontent, //桌面图标元素
  1832. _frag = $$("frag"), //定义一个碎片元素
  1833. _type = US.userInfo.type,
  1834. _org = US.userInfo.org,
  1835. _oid = US.userInfo.organizeid,
  1836. _role = US.userInfo.role,
  1837. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1838. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1839. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1840. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1841. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1842. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1843. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1844. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1845. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1846. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1847. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1848. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1849. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1850. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1851. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1852. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1853. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1854. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1855. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1856. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1857. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1858. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1859. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1860. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1861. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1862. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1863. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1864. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1865. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1866. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1867. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1868. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1869. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1870. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1871. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1872. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1873. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1874. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1875. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1876. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1877. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1878. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1879. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1880. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1881. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1882. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1883. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1884. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1885. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1886. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1887. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1888. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1889. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1890. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1891. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1892. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1893. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1894. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1895. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1896. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1897. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1898. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1899. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1900. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1901. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1902. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1903. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1904. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1905. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1906. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1907. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1908. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1909. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1910. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1911. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1912. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1913. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1914. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1915. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1916. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1917. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1918. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1919. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1920. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1921. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1922. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1923. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1924. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1925. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1926. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1927. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1928. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1929. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1930. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1931. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1932. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1933. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1934. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1935. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1936. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1937. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1938. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1939. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1940. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1941. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1942. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1943. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1944. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1945. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1946. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1947. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1948. 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'];
  1949. 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'];
  1950. //清楚桌面图标
  1951. el.innerHTML = "";
  1952. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1953. _teacherDesktopIconInfo.push(
  1954. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1955. { "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)" } },
  1956. )
  1957. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1958. }
  1959. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1960. _teacherDesktopIconInfo.push(
  1961. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1962. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1963. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1964. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1965. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1966. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1967. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1968. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1969. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1970. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1971. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1972. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1973. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1974. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1975. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1976. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1977. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1978. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1979. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1980. )
  1981. }
  1982. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1983. _teacherDesktopIconInfo.push(
  1984. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1985. )
  1986. }
  1987. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1988. // _teacherDesktopIconInfo.push(
  1989. // )
  1990. // }
  1991. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1992. _teacherDesktopIconInfo.push(
  1993. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1994. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1995. )
  1996. }
  1997. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1998. _teacherDesktopIconInfo.push(
  1999. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2000. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2001. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2002. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2003. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2004. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2005. )
  2006. _studentDesktopIconInfo.push(
  2007. )
  2008. }
  2009. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2010. _teacherDesktopIconInfo.push(
  2011. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2012. )
  2013. _studentDesktopIconInfo.push(
  2014. )
  2015. }
  2016. //010606 组织
  2017. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2018. _teacherDesktopIconInfo.push(
  2019. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2020. )
  2021. _studentDesktopIconInfo.push(
  2022. )
  2023. }
  2024. //麒麟二中 和 民新小学
  2025. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2026. _teacherDesktopIconInfo.push(
  2027. )
  2028. }
  2029. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2030. _teacherDesktopIconInfo.push(
  2031. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2032. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2033. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2034. )
  2035. }
  2036. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2037. _hkTeacherDeskIconInfo.push(
  2038. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2039. )
  2040. }
  2041. //北师大附中(010601)
  2042. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2043. // _teacherDesktopIconInfo.push(
  2044. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2045. // )
  2046. // _studentDesktopIconInfo.push(
  2047. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2048. // )
  2049. // }
  2050. //樂善堂余近卿中學
  2051. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2052. _teacherDesktopIconInfo.push(
  2053. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2054. )
  2055. }
  2056. // Education Artificial Intelligence
  2057. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2058. _teacherDesktopIconInfo.push(
  2059. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2060. )
  2061. }
  2062. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2063. _teacherDesktopIconInfo.push(
  2064. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2065. )
  2066. }
  2067. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2068. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2069. _teacherDesktopIconInfo.push(
  2070. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2071. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2072. )
  2073. }
  2074. //麒麟二中
  2075. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2076. _studentDesktopIconInfo.push(
  2077. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2078. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2079. )
  2080. }
  2081. //万科双语
  2082. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2083. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2084. if (el.Name == '项目管理') {
  2085. el.Name = 'PBL项目'
  2086. }
  2087. return el
  2088. })
  2089. _studentDesktopIconInfo3.push(
  2090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2091. )
  2092. }
  2093. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2094. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2095. return el.Name != '魔盒识字' && el.Name != '24点'
  2096. })
  2097. }
  2098. 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) {
  2099. _studentDesktopIconInfo.push(
  2100. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2101. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2102. )
  2103. }
  2104. //循环创建桌面图标
  2105. if (type == 1) {
  2106. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2107. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2108. _content = $$("div", {
  2109. className: "U_MD_D_KO",
  2110. "onmousedown": U.UF.C.closure(function (obj) {
  2111. //防止拖动图标即打开了桌面应用
  2112. U.MD.D.click(this, obj);
  2113. }, [_studentDesktopIconInfo[i]]),
  2114. "onclick": U.UF.C.closure(function (obj) {
  2115. //防止拖动图标即打开了桌面应用
  2116. U.MD.D.click(this, obj);
  2117. }, [_studentDesktopIconInfo[i]])
  2118. }, _frag); //
  2119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2122. }
  2123. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2124. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2125. _content = $$("div", {
  2126. className: "U_MD_D_KO",
  2127. "onmousedown": U.UF.C.closure(function (obj) {
  2128. //防止拖动图标即打开了桌面应用
  2129. U.MD.D.click(this, obj);
  2130. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2131. "onclick": U.UF.C.closure(function (obj) {
  2132. //防止拖动图标即打开了桌面应用
  2133. U.MD.D.click(this, obj);
  2134. }, [_hkZJLSStudentDeskIconInfo[i]])
  2135. }, _frag); //
  2136. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2137. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2138. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2139. } //
  2140. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2141. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2142. _content = $$("div", {
  2143. className: "U_MD_D_KO",
  2144. "onmousedown": U.UF.C.closure(function (obj) {
  2145. //防止拖动图标即打开了桌面应用
  2146. U.MD.D.click(this, obj);
  2147. }, [_ytyStudentDeskIconInfo[i]]),
  2148. "onclick": U.UF.C.closure(function (obj) {
  2149. //防止拖动图标即打开了桌面应用
  2150. U.MD.D.click(this, obj);
  2151. }, [_ytyStudentDeskIconInfo[i]])
  2152. }, _frag); //
  2153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2156. } //
  2157. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2158. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2159. _content = $$("div", {
  2160. className: "U_MD_D_KO",
  2161. "onmousedown": U.UF.C.closure(function (obj) {
  2162. //防止拖动图标即打开了桌面应用
  2163. U.MD.D.click(this, obj);
  2164. }, [_jccssylStudentDeskIconInfo[i]]),
  2165. "onclick": U.UF.C.closure(function (obj) {
  2166. //防止拖动图标即打开了桌面应用
  2167. U.MD.D.click(this, obj);
  2168. }, [_jccssylStudentDeskIconInfo[i]])
  2169. }, _frag); //
  2170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2173. }
  2174. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2175. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2176. _content = $$("div", {
  2177. className: "U_MD_D_KO",
  2178. "onmousedown": U.UF.C.closure(function (obj) {
  2179. //防止拖动图标即打开了桌面应用
  2180. U.MD.D.click(this, obj);
  2181. }, [_scnuaiStudentDeskIconInfo[i]]),
  2182. "onclick": U.UF.C.closure(function (obj) {
  2183. //防止拖动图标即打开了桌面应用
  2184. U.MD.D.click(this, obj);
  2185. }, [_scnuaiStudentDeskIconInfo[i]])
  2186. }, _frag); //
  2187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2190. }
  2191. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2192. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2193. _content = $$("div", {
  2194. className: "U_MD_D_KO",
  2195. "onmousedown": U.UF.C.closure(function (obj) {
  2196. //防止拖动图标即打开了桌面应用
  2197. U.MD.D.click(this, obj);
  2198. }, [_caleStudentDeskIconInfo[i]]),
  2199. "onclick": U.UF.C.closure(function (obj) {
  2200. //防止拖动图标即打开了桌面应用
  2201. U.MD.D.click(this, obj);
  2202. }, [_caleStudentDeskIconInfo[i]])
  2203. }, _frag); //
  2204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2207. }
  2208. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2209. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2210. _content = $$("div", {
  2211. className: "U_MD_D_KO",
  2212. "onmousedown": U.UF.C.closure(function (obj) {
  2213. //防止拖动图标即打开了桌面应用
  2214. U.MD.D.click(this, obj);
  2215. }, [_thuioeStudentDeskIconInfo[i]]),
  2216. "onclick": U.UF.C.closure(function (obj) {
  2217. //防止拖动图标即打开了桌面应用
  2218. U.MD.D.click(this, obj);
  2219. }, [_thuioeStudentDeskIconInfo[i]])
  2220. }, _frag); //
  2221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2224. }
  2225. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2226. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2227. _content = $$("div", {
  2228. className: "U_MD_D_KO",
  2229. "onmousedown": U.UF.C.closure(function (obj) {
  2230. //防止拖动图标即打开了桌面应用
  2231. U.MD.D.click(this, obj);
  2232. }, [_tpcStudentDeskIconInfo[i]]),
  2233. "onclick": U.UF.C.closure(function (obj) {
  2234. //防止拖动图标即打开了桌面应用
  2235. U.MD.D.click(this, obj);
  2236. }, [_tpcStudentDeskIconInfo[i]])
  2237. }, _frag); //
  2238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2241. } //
  2242. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2243. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2244. _content = $$("div", {
  2245. className: "U_MD_D_KO",
  2246. "onmousedown": U.UF.C.closure(function (obj) {
  2247. //防止拖动图标即打开了桌面应用
  2248. U.MD.D.click(this, obj);
  2249. }, [_chjyjStudentDeskIconInfo[i]]),
  2250. "onclick": U.UF.C.closure(function (obj) {
  2251. //防止拖动图标即打开了桌面应用
  2252. U.MD.D.click(this, obj);
  2253. }, [_chjyjStudentDeskIconInfo[i]])
  2254. }, _frag); //
  2255. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2256. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2257. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2258. }
  2259. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2260. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2261. _content = $$("div", {
  2262. className: "U_MD_D_KO",
  2263. "onmousedown": U.UF.C.closure(function (obj) {
  2264. //防止拖动图标即打开了桌面应用
  2265. U.MD.D.click(this, obj);
  2266. }, [_szjkyStudentDeskIconInfo[i]]),
  2267. "onclick": U.UF.C.closure(function (obj) {
  2268. //防止拖动图标即打开了桌面应用
  2269. U.MD.D.click(this, obj);
  2270. }, [_szjkyStudentDeskIconInfo[i]])
  2271. }, _frag); //
  2272. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2273. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2274. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2275. }
  2276. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2277. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2278. _content = $$("div", {
  2279. className: "U_MD_D_KO",
  2280. "onmousedown": U.UF.C.closure(function (obj) {
  2281. //防止拖动图标即打开了桌面应用
  2282. U.MD.D.click(this, obj);
  2283. }, [_x020201StudentDeskIconInfo[i]]),
  2284. "onclick": U.UF.C.closure(function (obj) {
  2285. //防止拖动图标即打开了桌面应用
  2286. U.MD.D.click(this, obj);
  2287. }, [_x020201StudentDeskIconInfo[i]])
  2288. }, _frag); //
  2289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2292. }
  2293. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2294. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2295. _content = $$("div", {
  2296. className: "U_MD_D_KO",
  2297. "onmousedown": U.UF.C.closure(function (obj) {
  2298. //防止拖动图标即打开了桌面应用
  2299. U.MD.D.click(this, obj);
  2300. }, [_SCNUETStudentDeskIconInfo[i]]),
  2301. "onclick": U.UF.C.closure(function (obj) {
  2302. //防止拖动图标即打开了桌面应用
  2303. U.MD.D.click(this, obj);
  2304. }, [_SCNUETStudentDeskIconInfo[i]])
  2305. }, _frag); //
  2306. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2307. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2308. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2309. }
  2310. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2311. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2312. _content = $$("div", {
  2313. className: "U_MD_D_KO",
  2314. "onmousedown": U.UF.C.closure(function (obj) {
  2315. //防止拖动图标即打开了桌面应用
  2316. U.MD.D.click(this, obj);
  2317. }, [_dseiStudentDeskIconInfo[i]]),
  2318. "onclick": U.UF.C.closure(function (obj) {
  2319. //防止拖动图标即打开了桌面应用
  2320. U.MD.D.click(this, obj);
  2321. }, [_dseiStudentDeskIconInfo[i]])
  2322. }, _frag); //
  2323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2326. }
  2327. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2328. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2329. _content = $$("div", {
  2330. className: "U_MD_D_KO",
  2331. "onmousedown": U.UF.C.closure(function (obj) {
  2332. //防止拖动图标即打开了桌面应用
  2333. U.MD.D.click(this, obj);
  2334. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2335. "onclick": U.UF.C.closure(function (obj) {
  2336. //防止拖动图标即打开了桌面应用
  2337. U.MD.D.click(this, obj);
  2338. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2339. }, _frag); //
  2340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2343. }
  2344. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2345. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2346. _content = $$("div", {
  2347. className: "U_MD_D_KO",
  2348. "onmousedown": U.UF.C.closure(function (obj) {
  2349. //防止拖动图标即打开了桌面应用
  2350. U.MD.D.click(this, obj);
  2351. }, [_nsfxStudentDeskIconInfo[i]]),
  2352. "onclick": U.UF.C.closure(function (obj) {
  2353. //防止拖动图标即打开了桌面应用
  2354. U.MD.D.click(this, obj);
  2355. }, [_nsfxStudentDeskIconInfo[i]])
  2356. }, _frag); //
  2357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2360. }
  2361. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2362. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2363. _content = $$("div", {
  2364. className: "U_MD_D_KO",
  2365. "onmousedown": U.UF.C.closure(function (obj) {
  2366. //防止拖动图标即打开了桌面应用
  2367. U.MD.D.click(this, obj);
  2368. }, [_stiaStudentDeskIconInfo[i]]),
  2369. "onclick": U.UF.C.closure(function (obj) {
  2370. //防止拖动图标即打开了桌面应用
  2371. U.MD.D.click(this, obj);
  2372. }, [_stiaStudentDeskIconInfo[i]])
  2373. }, _frag); //
  2374. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2375. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2376. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2377. }
  2378. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2379. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2380. _content = $$("div", {
  2381. className: "U_MD_D_KO",
  2382. "onmousedown": U.UF.C.closure(function (obj) {
  2383. //防止拖动图标即打开了桌面应用
  2384. U.MD.D.click(this, obj);
  2385. }, [_szdjgStudentDeskIconInfo[i]]),
  2386. "onclick": U.UF.C.closure(function (obj) {
  2387. //防止拖动图标即打开了桌面应用
  2388. U.MD.D.click(this, obj);
  2389. }, [_szdjgStudentDeskIconInfo[i]])
  2390. }, _frag); //
  2391. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2392. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2393. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2394. }
  2395. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2396. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2397. _content = $$("div", {
  2398. className: "U_MD_D_KO",
  2399. "onmousedown": U.UF.C.closure(function (obj) {
  2400. //防止拖动图标即打开了桌面应用
  2401. U.MD.D.click(this, obj);
  2402. }, [_x010607StudentDeskIconInfo[i]]),
  2403. "onclick": U.UF.C.closure(function (obj) {
  2404. //防止拖动图标即打开了桌面应用
  2405. U.MD.D.click(this, obj);
  2406. }, [_x010607StudentDeskIconInfo[i]])
  2407. }, _frag); //
  2408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2411. }
  2412. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2413. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2414. _content = $$("div", {
  2415. className: "U_MD_D_KO",
  2416. "onmousedown": U.UF.C.closure(function (obj) {
  2417. //防止拖动图标即打开了桌面应用
  2418. U.MD.D.click(this, obj);
  2419. }, [_xhlyStudentDeskIconInfo[i]]),
  2420. "onclick": U.UF.C.closure(function (obj) {
  2421. //防止拖动图标即打开了桌面应用
  2422. U.MD.D.click(this, obj);
  2423. }, [_xhlyStudentDeskIconInfo[i]])
  2424. }, _frag); //
  2425. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2426. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2427. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2428. }
  2429. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2430. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2431. _content = $$("div", {
  2432. className: "U_MD_D_KO",
  2433. "onmousedown": U.UF.C.closure(function (obj) {
  2434. //防止拖动图标即打开了桌面应用
  2435. U.MD.D.click(this, obj);
  2436. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2437. "onclick": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2441. }, _frag); //
  2442. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2443. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2444. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2445. }
  2446. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2447. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2448. _content = $$("div", {
  2449. className: "U_MD_D_KO",
  2450. "onmousedown": U.UF.C.closure(function (obj) {
  2451. //防止拖动图标即打开了桌面应用
  2452. U.MD.D.click(this, obj);
  2453. }, [_x010503StudentDeskIconInfo[i]]),
  2454. "onclick": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_x010503StudentDeskIconInfo[i]])
  2458. }, _frag); //
  2459. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2460. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2461. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2462. }
  2463. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2464. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2465. _content = $$("div", {
  2466. className: "U_MD_D_KO",
  2467. "onmousedown": U.UF.C.closure(function (obj) {
  2468. //防止拖动图标即打开了桌面应用
  2469. U.MD.D.click(this, obj);
  2470. }, [_x010504StudentDeskIconInfo[i]]),
  2471. "onclick": U.UF.C.closure(function (obj) {
  2472. //防止拖动图标即打开了桌面应用
  2473. U.MD.D.click(this, obj);
  2474. }, [_x010504StudentDeskIconInfo[i]])
  2475. }, _frag); //
  2476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2479. }
  2480. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2481. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2482. _content = $$("div", {
  2483. className: "U_MD_D_KO",
  2484. "onmousedown": U.UF.C.closure(function (obj) {
  2485. //防止拖动图标即打开了桌面应用
  2486. U.MD.D.click(this, obj);
  2487. }, [_x010204StudentDeskIconInfo[i]]),
  2488. "onclick": U.UF.C.closure(function (obj) {
  2489. //防止拖动图标即打开了桌面应用
  2490. U.MD.D.click(this, obj);
  2491. }, [_x010204StudentDeskIconInfo[i]])
  2492. }, _frag); //
  2493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2496. }
  2497. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2498. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2499. _content = $$("div", {
  2500. className: "U_MD_D_KO",
  2501. "onmousedown": U.UF.C.closure(function (obj) {
  2502. //防止拖动图标即打开了桌面应用
  2503. U.MD.D.click(this, obj);
  2504. }, [_trailStudentDeskIconInfo[i]]),
  2505. "onclick": U.UF.C.closure(function (obj) {
  2506. //防止拖动图标即打开了桌面应用
  2507. U.MD.D.click(this, obj);
  2508. }, [_trailStudentDeskIconInfo[i]])
  2509. }, _frag); //
  2510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2513. }
  2514. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2515. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2516. _content = $$("div", {
  2517. className: "U_MD_D_KO",
  2518. "onmousedown": U.UF.C.closure(function (obj) {
  2519. //防止拖动图标即打开了桌面应用
  2520. U.MD.D.click(this, obj);
  2521. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2522. "onclick": U.UF.C.closure(function (obj) {
  2523. //防止拖动图标即打开了桌面应用
  2524. U.MD.D.click(this, obj);
  2525. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2526. }, _frag); //
  2527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2530. }
  2531. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2532. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2533. _content = $$("div", {
  2534. className: "U_MD_D_KO",
  2535. "onmousedown": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_x010608StudentDeskIconInfo[i]]),
  2539. "onclick": U.UF.C.closure(function (obj) {
  2540. //防止拖动图标即打开了桌面应用
  2541. U.MD.D.click(this, obj);
  2542. }, [_x010608StudentDeskIconInfo[i]])
  2543. }, _frag); //
  2544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2547. }
  2548. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2549. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2550. _content = $$("div", {
  2551. className: "U_MD_D_KO",
  2552. "onmousedown": U.UF.C.closure(function (obj) {
  2553. //防止拖动图标即打开了桌面应用
  2554. U.MD.D.click(this, obj);
  2555. }, [_x010611StudentDeskIconInfo[i]]),
  2556. "onclick": U.UF.C.closure(function (obj) {
  2557. //防止拖动图标即打开了桌面应用
  2558. U.MD.D.click(this, obj);
  2559. }, [_x010611StudentDeskIconInfo[i]])
  2560. }, _frag); //
  2561. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2562. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2563. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2564. }
  2565. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2566. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2567. _content = $$("div", {
  2568. className: "U_MD_D_KO",
  2569. "onmousedown": U.UF.C.closure(function (obj) {
  2570. //防止拖动图标即打开了桌面应用
  2571. U.MD.D.click(this, obj);
  2572. }, [_tianyuantudentDeskIconInfo[i]]),
  2573. "onclick": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_tianyuantudentDeskIconInfo[i]])
  2577. }, _frag); //
  2578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2581. }
  2582. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2583. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2584. _content = $$("div", {
  2585. className: "U_MD_D_KO",
  2586. "onmousedown": U.UF.C.closure(function (obj) {
  2587. //防止拖动图标即打开了桌面应用
  2588. U.MD.D.click(this, obj);
  2589. }, [_siesStudentDeskIconInfo[i]]),
  2590. "onclick": U.UF.C.closure(function (obj) {
  2591. //防止拖动图标即打开了桌面应用
  2592. U.MD.D.click(this, obj);
  2593. }, [_siesStudentDeskIconInfo[i]])
  2594. }, _frag); //
  2595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2598. }
  2599. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2600. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2601. _content = $$("div", {
  2602. className: "U_MD_D_KO",
  2603. "onmousedown": U.UF.C.closure(function (obj) {
  2604. //防止拖动图标即打开了桌面应用
  2605. U.MD.D.click(this, obj);
  2606. }, [_guzmsStudentDeskIconInfo[i]]),
  2607. "onclick": U.UF.C.closure(function (obj) {
  2608. //防止拖动图标即打开了桌面应用
  2609. U.MD.D.click(this, obj);
  2610. }, [_guzmsStudentDeskIconInfo[i]])
  2611. }, _frag); //
  2612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2615. }
  2616. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2617. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2618. _content = $$("div", {
  2619. className: "U_MD_D_KO",
  2620. "onmousedown": U.UF.C.closure(function (obj) {
  2621. //防止拖动图标即打开了桌面应用
  2622. U.MD.D.click(this, obj);
  2623. }, [_hkStudentDeskIconInfo[i]]),
  2624. "onclick": U.UF.C.closure(function (obj) {
  2625. //防止拖动图标即打开了桌面应用
  2626. U.MD.D.click(this, obj);
  2627. }, [_hkStudentDeskIconInfo[i]])
  2628. }, _frag); //
  2629. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2630. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2631. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2632. }
  2633. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2634. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2635. _content = $$("div", {
  2636. className: "U_MD_D_KO",
  2637. "onmousedown": U.UF.C.closure(function (obj) {
  2638. //防止拖动图标即打开了桌面应用
  2639. U.MD.D.click(this, obj);
  2640. }, [_hkaceStudentDeskIconInfo[i]]),
  2641. "onclick": U.UF.C.closure(function (obj) {
  2642. //防止拖动图标即打开了桌面应用
  2643. U.MD.D.click(this, obj);
  2644. }, [_hkaceStudentDeskIconInfo[i]])
  2645. }, _frag); //
  2646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2649. }
  2650. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2651. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2652. _content = $$("div", {
  2653. className: "U_MD_D_KO",
  2654. "onmousedown": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2658. "onclick": U.UF.C.closure(function (obj) {
  2659. //防止拖动图标即打开了桌面应用
  2660. U.MD.D.click(this, obj);
  2661. }, [_BSDNSstudentDesktopIconInfo[i]])
  2662. }, _frag); //
  2663. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2664. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2665. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2666. }
  2667. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2668. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2669. _content = $$("div", {
  2670. className: "U_MD_D_KO",
  2671. "onmousedown": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_cocobizStudentDeskIconInfo[i]]),
  2675. "onclick": U.UF.C.closure(function (obj) {
  2676. //防止拖动图标即打开了桌面应用
  2677. U.MD.D.click(this, obj);
  2678. }, [_cocobizStudentDeskIconInfo[i]])
  2679. }, _frag); //
  2680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2683. }
  2684. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2685. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2686. _content = $$("div", {
  2687. className: "U_MD_D_KO",
  2688. "onmousedown": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2692. "onclick": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_xxzjkyStudentDeskIconInfo[i]])
  2696. }, _frag); //
  2697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2700. }
  2701. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2702. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2703. _content = $$("div", {
  2704. className: "U_MD_D_KO",
  2705. "onmousedown": U.UF.C.closure(function (obj) {
  2706. //防止拖动图标即打开了桌面应用
  2707. U.MD.D.click(this, obj);
  2708. }, [_studentDesktopIconInfo[i]]),
  2709. "onclick": U.UF.C.closure(function (obj) {
  2710. //防止拖动图标即打开了桌面应用
  2711. U.MD.D.click(this, obj);
  2712. }, [_studentDesktopIconInfo[i]])
  2713. }, _frag); //
  2714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2717. }
  2718. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2719. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2720. _content = $$("div", {
  2721. className: "U_MD_D_KO",
  2722. "onmousedown": U.UF.C.closure(function (obj) {
  2723. //防止拖动图标即打开了桌面应用
  2724. U.MD.D.click(this, obj);
  2725. }, [_tcStudentDeskIconInfo[i]]),
  2726. "onclick": U.UF.C.closure(function (obj) {
  2727. //防止拖动图标即打开了桌面应用
  2728. U.MD.D.click(this, obj);
  2729. }, [_tcStudentDeskIconInfo[i]])
  2730. }, _frag); //
  2731. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2732. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2733. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2734. }
  2735. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2736. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2737. _content = $$("div", {
  2738. className: "U_MD_D_KO",
  2739. "onmousedown": U.UF.C.closure(function (obj) {
  2740. //防止拖动图标即打开了桌面应用
  2741. U.MD.D.click(this, obj);
  2742. }, [_szscStudentDeskIconInfo[i]]),
  2743. "onclick": U.UF.C.closure(function (obj) {
  2744. //防止拖动图标即打开了桌面应用
  2745. U.MD.D.click(this, obj);
  2746. }, [_szscStudentDeskIconInfo[i]])
  2747. }, _frag); //
  2748. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2749. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2750. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2751. }
  2752. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2753. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2754. _content = $$("div", {
  2755. className: "U_MD_D_KO",
  2756. "onmousedown": U.UF.C.closure(function (obj) {
  2757. //防止拖动图标即打开了桌面应用
  2758. U.MD.D.click(this, obj);
  2759. }, [_studentDesktopIconInfo3[i]]),
  2760. "onclick": U.UF.C.closure(function (obj) {
  2761. //防止拖动图标即打开了桌面应用
  2762. U.MD.D.click(this, obj);
  2763. }, [_studentDesktopIconInfo3[i]])
  2764. }, _frag); //
  2765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2768. }
  2769. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2770. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2771. _content = $$("div", {
  2772. className: "U_MD_D_KO",
  2773. "onmousedown": U.UF.C.closure(function (obj) {
  2774. //防止拖动图标即打开了桌面应用
  2775. U.MD.D.click(this, obj);
  2776. }, [_studentDesktopIconInfo2[i]]),
  2777. "onclick": U.UF.C.closure(function (obj) {
  2778. //防止拖动图标即打开了桌面应用
  2779. U.MD.D.click(this, obj);
  2780. }, [_studentDesktopIconInfo2[i]])
  2781. }, _frag); //
  2782. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2783. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2784. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2785. }
  2786. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2787. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2788. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2789. continue
  2790. }
  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. }, [_wanketeacherDesktopIconInfo[i]]),
  2797. "onclick": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_wanketeacherDesktopIconInfo[i]])
  2801. }, _frag); //
  2802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2805. }
  2806. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2807. for (i = 0; i < _wankeAdminDesktopIconInfo.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. }, [_wankeAdminDesktopIconInfo[i]]),
  2814. "onclick": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_wankeAdminDesktopIconInfo[i]])
  2818. }, _frag); //
  2819. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2820. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2821. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2822. }
  2823. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2824. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2825. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2826. continue
  2827. }
  2828. _content = $$("div", {
  2829. className: "U_MD_D_KO",
  2830. "onmousedown": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2834. "onclick": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_scnuaiTeacherDeskIconInfo[i]])
  2838. }, _frag); //
  2839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2842. }
  2843. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2844. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2845. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2846. continue
  2847. }
  2848. _content = $$("div", {
  2849. className: "U_MD_D_KO",
  2850. "onmousedown": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2854. "onclick": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_BSDNSteacherDesktopIconInfo[i]])
  2858. }, _frag); //
  2859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2862. }
  2863. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2864. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2865. _content = $$("div", {
  2866. className: "U_MD_D_KO",
  2867. "onmousedown": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_scnuaiAdminDeskIconInfo[i]]),
  2871. "onclick": U.UF.C.closure(function (obj) {
  2872. //防止拖动图标即打开了桌面应用
  2873. U.MD.D.click(this, obj);
  2874. }, [_scnuaiAdminDeskIconInfo[i]])
  2875. }, _frag); //
  2876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2879. }
  2880. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2881. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2882. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2883. continue
  2884. }
  2885. _content = $$("div", {
  2886. className: "U_MD_D_KO",
  2887. "onmousedown": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_jccssylTeacherDeskIconInfo[i]]),
  2891. "onclick": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_jccssylTeacherDeskIconInfo[i]])
  2895. }, _frag); //
  2896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2899. }
  2900. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2901. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2902. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2903. continue
  2904. }
  2905. _content = $$("div", {
  2906. className: "U_MD_D_KO",
  2907. "onmousedown": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_caleTeacherDeskIconInfo[i]]),
  2911. "onclick": U.UF.C.closure(function (obj) {
  2912. //防止拖动图标即打开了桌面应用
  2913. U.MD.D.click(this, obj);
  2914. }, [_caleTeacherDeskIconInfo[i]])
  2915. }, _frag); //
  2916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2919. }
  2920. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2921. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2922. _content = $$("div", {
  2923. className: "U_MD_D_KO",
  2924. "onmousedown": U.UF.C.closure(function (obj) {
  2925. //防止拖动图标即打开了桌面应用
  2926. U.MD.D.click(this, obj);
  2927. }, [_tpcOrganizerDeskIconInfo[i]]),
  2928. "onclick": U.UF.C.closure(function (obj) {
  2929. //防止拖动图标即打开了桌面应用
  2930. U.MD.D.click(this, obj);
  2931. }, [_tpcOrganizerDeskIconInfo[i]])
  2932. }, _frag); //
  2933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2936. }
  2937. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2938. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2939. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2940. continue
  2941. }
  2942. _content = $$("div", {
  2943. className: "U_MD_D_KO",
  2944. "onmousedown": U.UF.C.closure(function (obj) {
  2945. //防止拖动图标即打开了桌面应用
  2946. U.MD.D.click(this, obj);
  2947. }, [_tpcTeacherDeskIconInfo[i]]),
  2948. "onclick": U.UF.C.closure(function (obj) {
  2949. //防止拖动图标即打开了桌面应用
  2950. U.MD.D.click(this, obj);
  2951. }, [_tpcTeacherDeskIconInfo[i]])
  2952. }, _frag); //
  2953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2956. }
  2957. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2958. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2959. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2960. continue
  2961. }
  2962. _content = $$("div", {
  2963. className: "U_MD_D_KO",
  2964. "onmousedown": U.UF.C.closure(function (obj) {
  2965. //防止拖动图标即打开了桌面应用
  2966. U.MD.D.click(this, obj);
  2967. }, [_teacherDesktopIconInfo2[i]]),
  2968. "onclick": U.UF.C.closure(function (obj) {
  2969. //防止拖动图标即打开了桌面应用
  2970. U.MD.D.click(this, obj);
  2971. }, [_teacherDesktopIconInfo2[i]])
  2972. }, _frag); //
  2973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2976. }
  2977. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2978. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2979. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2980. continue
  2981. }
  2982. _content = $$("div", {
  2983. className: "U_MD_D_KO",
  2984. "onmousedown": U.UF.C.closure(function (obj) {
  2985. //防止拖动图标即打开了桌面应用
  2986. U.MD.D.click(this, obj);
  2987. }, [_thuioeTeacherDeskIconInfo[i]]),
  2988. "onclick": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_thuioeTeacherDeskIconInfo[i]])
  2992. }, _frag); //
  2993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2996. }
  2997. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2998. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2999. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3000. continue
  3001. }
  3002. _content = $$("div", {
  3003. className: "U_MD_D_KO",
  3004. "onmousedown": U.UF.C.closure(function (obj) {
  3005. //防止拖动图标即打开了桌面应用
  3006. U.MD.D.click(this, obj);
  3007. }, [_lotechTeacherDeskIconInfo[i]]),
  3008. "onclick": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_lotechTeacherDeskIconInfo[i]])
  3012. }, _frag); //
  3013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3016. }//
  3017. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3018. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3019. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3020. continue
  3021. }
  3022. _content = $$("div", {
  3023. className: "U_MD_D_KO",
  3024. "onmousedown": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3028. "onclick": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3032. }, _frag); //
  3033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3036. }
  3037. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3038. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3039. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3040. continue
  3041. }
  3042. _content = $$("div", {
  3043. className: "U_MD_D_KO",
  3044. "onmousedown": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_siesTeacherDeskIconInfo[i]]),
  3048. "onclick": U.UF.C.closure(function (obj) {
  3049. //防止拖动图标即打开了桌面应用
  3050. U.MD.D.click(this, obj);
  3051. }, [_siesTeacherDeskIconInfo[i]])
  3052. }, _frag); //
  3053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3056. }
  3057. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3058. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3059. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3060. continue
  3061. }
  3062. _content = $$("div", {
  3063. className: "U_MD_D_KO",
  3064. "onmousedown": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_guzmsTeacherDeskIconInfo[i]]),
  3068. "onclick": U.UF.C.closure(function (obj) {
  3069. //防止拖动图标即打开了桌面应用
  3070. U.MD.D.click(this, obj);
  3071. }, [_guzmsTeacherDeskIconInfo[i]])
  3072. }, _frag); //
  3073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3076. }
  3077. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3078. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3079. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3080. continue
  3081. }
  3082. _content = $$("div", {
  3083. className: "U_MD_D_KO",
  3084. "onmousedown": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_longhuaTeacherDeskIconInfo[i]]),
  3088. "onclick": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_longhuaTeacherDeskIconInfo[i]])
  3092. }, _frag); //
  3093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3096. }
  3097. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3098. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3099. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3100. continue
  3101. }
  3102. _content = $$("div", {
  3103. className: "U_MD_D_KO",
  3104. "onmousedown": U.UF.C.closure(function (obj) {
  3105. //防止拖动图标即打开了桌面应用
  3106. U.MD.D.click(this, obj);
  3107. }, [_ytyTeacherDeskIconInfo[i]]),
  3108. "onclick": U.UF.C.closure(function (obj) {
  3109. //防止拖动图标即打开了桌面应用
  3110. U.MD.D.click(this, obj);
  3111. }, [_ytyTeacherDeskIconInfo[i]])
  3112. }, _frag); //
  3113. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3114. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3115. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3116. }
  3117. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3118. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3119. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3120. continue
  3121. }
  3122. _content = $$("div", {
  3123. className: "U_MD_D_KO",
  3124. "onmousedown": U.UF.C.closure(function (obj) {
  3125. //防止拖动图标即打开了桌面应用
  3126. U.MD.D.click(this, obj);
  3127. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3128. "onclick": U.UF.C.closure(function (obj) {
  3129. //防止拖动图标即打开了桌面应用
  3130. U.MD.D.click(this, obj);
  3131. }, [_yunhaiTeacherDeskIconInfo[i]])
  3132. }, _frag); //
  3133. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3134. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3135. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3136. } //_hkStudentDeskIconInfo
  3137. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3138. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3139. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3140. continue
  3141. }
  3142. _content = $$("div", {
  3143. className: "U_MD_D_KO",
  3144. "onmousedown": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3148. "onclick": U.UF.C.closure(function (obj) {
  3149. //防止拖动图标即打开了桌面应用
  3150. U.MD.D.click(this, obj);
  3151. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3152. }, _frag); //
  3153. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3154. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3155. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3156. }
  3157. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3158. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3159. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3160. continue
  3161. }
  3162. _content = $$("div", {
  3163. className: "U_MD_D_KO",
  3164. "onmousedown": U.UF.C.closure(function (obj) {
  3165. //防止拖动图标即打开了桌面应用
  3166. U.MD.D.click(this, obj);
  3167. }, [_hkTeacherDeskIconInfo[i]]),
  3168. "onclick": U.UF.C.closure(function (obj) {
  3169. //防止拖动图标即打开了桌面应用
  3170. U.MD.D.click(this, obj);
  3171. }, [_hkTeacherDeskIconInfo[i]])
  3172. }, _frag); //
  3173. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3176. }
  3177. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3178. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3179. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3180. continue
  3181. }
  3182. _content = $$("div", {
  3183. className: "U_MD_D_KO",
  3184. "onmousedown": U.UF.C.closure(function (obj) {
  3185. //防止拖动图标即打开了桌面应用
  3186. U.MD.D.click(this, obj);
  3187. }, [_hkaceTeacherDeskIconInfo[i]]),
  3188. "onclick": U.UF.C.closure(function (obj) {
  3189. //防止拖动图标即打开了桌面应用
  3190. U.MD.D.click(this, obj);
  3191. }, [_hkaceTeacherDeskIconInfo[i]])
  3192. }, _frag); //
  3193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3196. }
  3197. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3198. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3199. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3200. continue
  3201. }
  3202. _content = $$("div", {
  3203. className: "U_MD_D_KO",
  3204. "onmousedown": U.UF.C.closure(function (obj) {
  3205. //防止拖动图标即打开了桌面应用
  3206. U.MD.D.click(this, obj);
  3207. }, [_cocobizTeacherDeskIconInfo[i]]),
  3208. "onclick": U.UF.C.closure(function (obj) {
  3209. //防止拖动图标即打开了桌面应用
  3210. U.MD.D.click(this, obj);
  3211. }, [_cocobizTeacherDeskIconInfo[i]])
  3212. }, _frag); //
  3213. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3214. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3215. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3216. }
  3217. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3218. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3219. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3220. continue
  3221. }
  3222. _content = $$("div", {
  3223. className: "U_MD_D_KO",
  3224. "onmousedown": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3228. "onclick": U.UF.C.closure(function (obj) {
  3229. //防止拖动图标即打开了桌面应用
  3230. U.MD.D.click(this, obj);
  3231. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3232. }, _frag); //
  3233. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3234. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3235. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3236. }
  3237. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3238. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3239. _content = $$("div", {
  3240. className: "U_MD_D_KO",
  3241. "onmousedown": U.UF.C.closure(function (obj) {
  3242. //防止拖动图标即打开了桌面应用
  3243. U.MD.D.click(this, obj);
  3244. }, [_gdjgAdminDeskIconInfo[i]]),
  3245. "onclick": U.UF.C.closure(function (obj) {
  3246. //防止拖动图标即打开了桌面应用
  3247. U.MD.D.click(this, obj);
  3248. }, [_gdjgAdminDeskIconInfo[i]])
  3249. }, _frag); //
  3250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3253. }
  3254. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3255. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3256. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3257. continue
  3258. }
  3259. _content = $$("div", {
  3260. className: "U_MD_D_KO",
  3261. "onmousedown": U.UF.C.closure(function (obj) {
  3262. //防止拖动图标即打开了桌面应用
  3263. U.MD.D.click(this, obj);
  3264. }, [_gdjgTeacherDeskIconInfo[i]]),
  3265. "onclick": U.UF.C.closure(function (obj) {
  3266. //防止拖动图标即打开了桌面应用
  3267. U.MD.D.click(this, obj);
  3268. }, [_gdjgTeacherDeskIconInfo[i]])
  3269. }, _frag); //
  3270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3273. }
  3274. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3275. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3276. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3277. continue
  3278. }
  3279. _content = $$("div", {
  3280. className: "U_MD_D_KO",
  3281. "onmousedown": U.UF.C.closure(function (obj) {
  3282. //防止拖动图标即打开了桌面应用
  3283. U.MD.D.click(this, obj);
  3284. }, [_szherTeacherDeskIconInfo[i]]),
  3285. "onclick": U.UF.C.closure(function (obj) {
  3286. //防止拖动图标即打开了桌面应用
  3287. U.MD.D.click(this, obj);
  3288. }, [_szherTeacherDeskIconInfo[i]])
  3289. }, _frag); //
  3290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3293. }
  3294. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3295. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3296. _content = $$("div", {
  3297. className: "U_MD_D_KO",
  3298. "onmousedown": U.UF.C.closure(function (obj) {
  3299. //防止拖动图标即打开了桌面应用
  3300. U.MD.D.click(this, obj);
  3301. }, [_heyuannAdminDeskIconInfo[i]]),
  3302. "onclick": U.UF.C.closure(function (obj) {
  3303. //防止拖动图标即打开了桌面应用
  3304. U.MD.D.click(this, obj);
  3305. }, [_heyuannAdminDeskIconInfo[i]])
  3306. }, _frag); //
  3307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3310. }
  3311. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3312. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3313. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3314. continue
  3315. }
  3316. _content = $$("div", {
  3317. className: "U_MD_D_KO",
  3318. "onmousedown": U.UF.C.closure(function (obj) {
  3319. //防止拖动图标即打开了桌面应用
  3320. U.MD.D.click(this, obj);
  3321. }, [_heyuanTeacherDeskIconInfo[i]]),
  3322. "onclick": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_heyuanTeacherDeskIconInfo[i]])
  3326. }, _frag); //
  3327. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3328. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3329. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3330. } //
  3331. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3332. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3333. _content = $$("div", {
  3334. className: "U_MD_D_KO",
  3335. "onmousedown": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_dseiAdminDeskIconInfo[i]]),
  3339. "onclick": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_dseiAdminDeskIconInfo[i]])
  3343. }, _frag); //
  3344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3347. }
  3348. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3349. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3350. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3351. continue
  3352. }
  3353. _content = $$("div", {
  3354. className: "U_MD_D_KO",
  3355. "onmousedown": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_dseiTeacherDeskIconInfo[i]]),
  3359. "onclick": U.UF.C.closure(function (obj) {
  3360. //防止拖动图标即打开了桌面应用
  3361. U.MD.D.click(this, obj);
  3362. }, [_dseiTeacherDeskIconInfo[i]])
  3363. }, _frag); //
  3364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3367. } //
  3368. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3369. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3370. _content = $$("div", {
  3371. className: "U_MD_D_KO",
  3372. "onmousedown": U.UF.C.closure(function (obj) {
  3373. //防止拖动图标即打开了桌面应用
  3374. U.MD.D.click(this, obj);
  3375. }, [_chjyjAdminDeskIconInfo[i]]),
  3376. "onclick": U.UF.C.closure(function (obj) {
  3377. //防止拖动图标即打开了桌面应用
  3378. U.MD.D.click(this, obj);
  3379. }, [_chjyjAdminDeskIconInfo[i]])
  3380. }, _frag); //
  3381. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3382. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3383. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3384. }//
  3385. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3386. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3387. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3388. continue
  3389. }
  3390. _content = $$("div", {
  3391. className: "U_MD_D_KO",
  3392. "onmousedown": U.UF.C.closure(function (obj) {
  3393. //防止拖动图标即打开了桌面应用
  3394. U.MD.D.click(this, obj);
  3395. }, [_chjyjTeacherDeskIconInfo[i]]),
  3396. "onclick": U.UF.C.closure(function (obj) {
  3397. //防止拖动图标即打开了桌面应用
  3398. U.MD.D.click(this, obj);
  3399. }, [_chjyjTeacherDeskIconInfo[i]])
  3400. }, _frag); //
  3401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3404. }
  3405. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3406. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3407. _content = $$("div", {
  3408. className: "U_MD_D_KO",
  3409. "onmousedown": U.UF.C.closure(function (obj) {
  3410. //防止拖动图标即打开了桌面应用
  3411. U.MD.D.click(this, obj);
  3412. }, [_szjkyAdminDeskIconInfo[i]]),
  3413. "onclick": U.UF.C.closure(function (obj) {
  3414. //防止拖动图标即打开了桌面应用
  3415. U.MD.D.click(this, obj);
  3416. }, [_szjkyAdminDeskIconInfo[i]])
  3417. }, _frag); //
  3418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3421. }//
  3422. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3423. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3424. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3425. continue
  3426. }
  3427. _content = $$("div", {
  3428. className: "U_MD_D_KO",
  3429. "onmousedown": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_szjkyTeacherDeskIconInfo[i]]),
  3433. "onclick": U.UF.C.closure(function (obj) {
  3434. //防止拖动图标即打开了桌面应用
  3435. U.MD.D.click(this, obj);
  3436. }, [_szjkyTeacherDeskIconInfo[i]])
  3437. }, _frag); //
  3438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3441. }
  3442. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3443. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3444. _content = $$("div", {
  3445. className: "U_MD_D_KO",
  3446. "onmousedown": U.UF.C.closure(function (obj) {
  3447. //防止拖动图标即打开了桌面应用
  3448. U.MD.D.click(this, obj);
  3449. }, [_x020201AdminDeskIconInfo[i]]),
  3450. "onclick": U.UF.C.closure(function (obj) {
  3451. //防止拖动图标即打开了桌面应用
  3452. U.MD.D.click(this, obj);
  3453. }, [_x020201AdminDeskIconInfo[i]])
  3454. }, _frag); //
  3455. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3456. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3457. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3458. }//
  3459. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3460. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3461. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3462. continue
  3463. }
  3464. _content = $$("div", {
  3465. className: "U_MD_D_KO",
  3466. "onmousedown": U.UF.C.closure(function (obj) {
  3467. //防止拖动图标即打开了桌面应用
  3468. U.MD.D.click(this, obj);
  3469. }, [_x020201TeacherDeskIconInfo[i]]),
  3470. "onclick": U.UF.C.closure(function (obj) {
  3471. //防止拖动图标即打开了桌面应用
  3472. U.MD.D.click(this, obj);
  3473. }, [_x020201TeacherDeskIconInfo[i]])
  3474. }, _frag); //
  3475. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3476. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3477. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3478. }
  3479. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3480. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3481. _content = $$("div", {
  3482. className: "U_MD_D_KO",
  3483. "onmousedown": U.UF.C.closure(function (obj) {
  3484. //防止拖动图标即打开了桌面应用
  3485. U.MD.D.click(this, obj);
  3486. }, [_SCNUETAdminDeskIconInfo[i]]),
  3487. "onclick": U.UF.C.closure(function (obj) {
  3488. //防止拖动图标即打开了桌面应用
  3489. U.MD.D.click(this, obj);
  3490. }, [_SCNUETAdminDeskIconInfo[i]])
  3491. }, _frag); //
  3492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3495. }//
  3496. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3497. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3498. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3499. continue
  3500. }
  3501. _content = $$("div", {
  3502. className: "U_MD_D_KO",
  3503. "onmousedown": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3507. "onclick": U.UF.C.closure(function (obj) {
  3508. //防止拖动图标即打开了桌面应用
  3509. U.MD.D.click(this, obj);
  3510. }, [_SCNUETTeacherDeskIconInfo[i]])
  3511. }, _frag); //
  3512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3515. }
  3516. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3517. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3518. _content = $$("div", {
  3519. className: "U_MD_D_KO",
  3520. "onmousedown": U.UF.C.closure(function (obj) {
  3521. //防止拖动图标即打开了桌面应用
  3522. U.MD.D.click(this, obj);
  3523. }, [_futianAdminDeskIconInfo[i]]),
  3524. "onclick": U.UF.C.closure(function (obj) {
  3525. //防止拖动图标即打开了桌面应用
  3526. U.MD.D.click(this, obj);
  3527. }, [_futianAdminDeskIconInfo[i]])
  3528. }, _frag); //
  3529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3532. }
  3533. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3534. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3535. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3536. continue
  3537. }
  3538. _content = $$("div", {
  3539. className: "U_MD_D_KO",
  3540. "onmousedown": U.UF.C.closure(function (obj) {
  3541. //防止拖动图标即打开了桌面应用
  3542. U.MD.D.click(this, obj);
  3543. }, [_futianTeacherDeskIconInfo[i]]),
  3544. "onclick": U.UF.C.closure(function (obj) {
  3545. //防止拖动图标即打开了桌面应用
  3546. U.MD.D.click(this, obj);
  3547. }, [_futianTeacherDeskIconInfo[i]])
  3548. }, _frag); //
  3549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3552. }
  3553. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3554. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3555. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3556. continue
  3557. }
  3558. _content = $$("div", {
  3559. className: "U_MD_D_KO",
  3560. "onmousedown": U.UF.C.closure(function (obj) {
  3561. //防止拖动图标即打开了桌面应用
  3562. U.MD.D.click(this, obj);
  3563. }, [_MingdeTeacherDeskIcon[i]]),
  3564. "onclick": U.UF.C.closure(function (obj) {
  3565. //防止拖动图标即打开了桌面应用
  3566. U.MD.D.click(this, obj);
  3567. }, [_MingdeTeacherDeskIcon[i]])
  3568. }, _frag); //
  3569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3572. }
  3573. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3574. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3575. _content = $$("div", {
  3576. className: "U_MD_D_KO",
  3577. "onmousedown": U.UF.C.closure(function (obj) {
  3578. //防止拖动图标即打开了桌面应用
  3579. U.MD.D.click(this, obj);
  3580. }, [_lhsAdminDesktopIconInfo[i]]),
  3581. "onclick": U.UF.C.closure(function (obj) {
  3582. //防止拖动图标即打开了桌面应用
  3583. U.MD.D.click(this, obj);
  3584. }, [_lhsAdminDesktopIconInfo[i]])
  3585. }, _frag); //
  3586. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3587. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3588. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3589. }
  3590. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3591. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3592. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3593. continue
  3594. }
  3595. _content = $$("div", {
  3596. className: "U_MD_D_KO",
  3597. "onmousedown": U.UF.C.closure(function (obj) {
  3598. //防止拖动图标即打开了桌面应用
  3599. U.MD.D.click(this, obj);
  3600. }, [_lhsteacherDesktopIconInfo[i]]),
  3601. "onclick": U.UF.C.closure(function (obj) {
  3602. //防止拖动图标即打开了桌面应用
  3603. U.MD.D.click(this, obj);
  3604. }, [_lhsteacherDesktopIconInfo[i]])
  3605. }, _frag); //
  3606. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3607. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3608. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3609. }
  3610. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3611. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3612. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3613. continue
  3614. }
  3615. _content = $$("div", {
  3616. className: "U_MD_D_KO",
  3617. "onmousedown": U.UF.C.closure(function (obj) {
  3618. //防止拖动图标即打开了桌面应用
  3619. U.MD.D.click(this, obj);
  3620. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3621. "onclick": U.UF.C.closure(function (obj) {
  3622. //防止拖动图标即打开了桌面应用
  3623. U.MD.D.click(this, obj);
  3624. }, [_zhoujiateacherDesktopIconInfo[i]])
  3625. }, _frag); //
  3626. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3629. }
  3630. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3631. for (i = 0; i < _hanDeskIcon.length; i++) {
  3632. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3633. continue
  3634. }
  3635. _content = $$("div", {
  3636. className: "U_MD_D_KO",
  3637. "onmousedown": U.UF.C.closure(function (obj) {
  3638. //防止拖动图标即打开了桌面应用
  3639. U.MD.D.click(this, obj);
  3640. }, [_hanDeskIcon[i]]),
  3641. "onclick": U.UF.C.closure(function (obj) {
  3642. //防止拖动图标即打开了桌面应用
  3643. U.MD.D.click(this, obj);
  3644. }, [_hanDeskIcon[i]])
  3645. }, _frag); //
  3646. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3647. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3648. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3649. }
  3650. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3651. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3652. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3653. continue
  3654. }
  3655. _content = $$("div", {
  3656. className: "U_MD_D_KO",
  3657. "onmousedown": U.UF.C.closure(function (obj) {
  3658. //防止拖动图标即打开了桌面应用
  3659. U.MD.D.click(this, obj);
  3660. }, [_orgStemDeskIcon[i]]),
  3661. "onclick": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_orgStemDeskIcon[i]])
  3665. }, _frag); //
  3666. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3667. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3668. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3669. }
  3670. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3671. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3672. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3673. continue
  3674. }
  3675. _content = $$("div", {
  3676. className: "U_MD_D_KO",
  3677. "onmousedown": U.UF.C.closure(function (obj) {
  3678. //防止拖动图标即打开了桌面应用
  3679. U.MD.D.click(this, obj);
  3680. }, [_szulsDeskIcon[i]]),
  3681. "onclick": U.UF.C.closure(function (obj) {
  3682. //防止拖动图标即打开了桌面应用
  3683. U.MD.D.click(this, obj);
  3684. }, [_szulsDeskIcon[i]])
  3685. }, _frag); //
  3686. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3687. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3688. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3689. }
  3690. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3691. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3692. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3693. continue
  3694. }
  3695. _content = $$("div", {
  3696. className: "U_MD_D_KO",
  3697. "onmousedown": U.UF.C.closure(function (obj) {
  3698. //防止拖动图标即打开了桌面应用
  3699. U.MD.D.click(this, obj);
  3700. }, [_orgDesktopIconInfo[i]]),
  3701. "onclick": U.UF.C.closure(function (obj) {
  3702. //防止拖动图标即打开了桌面应用
  3703. U.MD.D.click(this, obj);
  3704. }, [_orgDesktopIconInfo[i]])
  3705. }, _frag); //
  3706. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3707. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3708. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3709. }
  3710. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3711. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3712. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3713. continue
  3714. }
  3715. _content = $$("div", {
  3716. className: "U_MD_D_KO",
  3717. "onmousedown": U.UF.C.closure(function (obj) {
  3718. //防止拖动图标即打开了桌面应用
  3719. U.MD.D.click(this, obj);
  3720. }, [_schoolDesktopIconInfo[i]]),
  3721. "onclick": U.UF.C.closure(function (obj) {
  3722. //防止拖动图标即打开了桌面应用
  3723. U.MD.D.click(this, obj);
  3724. }, [_schoolDesktopIconInfo[i]])
  3725. }, _frag); //
  3726. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3727. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3728. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3729. }
  3730. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3731. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3732. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3733. continue
  3734. }
  3735. _content = $$("div", {
  3736. className: "U_MD_D_KO",
  3737. "onmousedown": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_GMteacherDesktopIconInfo[i]]),
  3741. "onclick": U.UF.C.closure(function (obj) {
  3742. //防止拖动图标即打开了桌面应用
  3743. U.MD.D.click(this, obj);
  3744. }, [_GMteacherDesktopIconInfo[i]])
  3745. }, _frag); //
  3746. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3747. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3748. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3749. }
  3750. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3751. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3752. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3753. continue
  3754. }
  3755. _content = $$("div", {
  3756. className: "U_MD_D_KO",
  3757. "onmousedown": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_SONGteacherDesktopIconInfo[i]]),
  3761. "onclick": U.UF.C.closure(function (obj) {
  3762. //防止拖动图标即打开了桌面应用
  3763. U.MD.D.click(this, obj);
  3764. }, [_SONGteacherDesktopIconInfo[i]])
  3765. }, _frag); //
  3766. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3767. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3768. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3769. }
  3770. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3771. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3772. _content = $$("div", {
  3773. className: "U_MD_D_KO",
  3774. "onmousedown": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_GMstudentDesktopIconInfo[i]]),
  3778. "onclick": U.UF.C.closure(function (obj) {
  3779. //防止拖动图标即打开了桌面应用
  3780. U.MD.D.click(this, obj);
  3781. }, [_GMstudentDesktopIconInfo[i]])
  3782. }, _frag); //
  3783. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3784. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3785. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3786. }
  3787. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3788. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3789. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3790. continue
  3791. }
  3792. _content = $$("div", {
  3793. className: "U_MD_D_KO",
  3794. "onmousedown": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_tcTeacherDeskIconInfo[i]]),
  3798. "onclick": U.UF.C.closure(function (obj) {
  3799. //防止拖动图标即打开了桌面应用
  3800. U.MD.D.click(this, obj);
  3801. }, [_tcTeacherDeskIconInfo[i]])
  3802. }, _frag); //
  3803. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3804. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3805. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3806. }
  3807. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3808. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3809. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3810. continue
  3811. }
  3812. _content = $$("div", {
  3813. className: "U_MD_D_KO",
  3814. "onmousedown": U.UF.C.closure(function (obj) {
  3815. //防止拖动图标即打开了桌面应用
  3816. U.MD.D.click(this, obj);
  3817. }, [_tcOrganizerDeskIconInfo[i]]),
  3818. "onclick": U.UF.C.closure(function (obj) {
  3819. //防止拖动图标即打开了桌面应用
  3820. U.MD.D.click(this, obj);
  3821. }, [_tcOrganizerDeskIconInfo[i]])
  3822. }, _frag); //
  3823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3826. }
  3827. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3828. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3829. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3830. continue
  3831. }
  3832. _content = $$("div", {
  3833. className: "U_MD_D_KO",
  3834. "onmousedown": U.UF.C.closure(function (obj) {
  3835. //防止拖动图标即打开了桌面应用
  3836. U.MD.D.click(this, obj);
  3837. }, [_szscTeacherDeskIconInfo[i]]),
  3838. "onclick": U.UF.C.closure(function (obj) {
  3839. //防止拖动图标即打开了桌面应用
  3840. U.MD.D.click(this, obj);
  3841. }, [_szscTeacherDeskIconInfo[i]])
  3842. }, _frag); //
  3843. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3844. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3845. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3846. }
  3847. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3848. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3849. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3850. continue
  3851. }
  3852. _content = $$("div", {
  3853. className: "U_MD_D_KO",
  3854. "onmousedown": U.UF.C.closure(function (obj) {
  3855. //防止拖动图标即打开了桌面应用
  3856. U.MD.D.click(this, obj);
  3857. }, [_szscOrganizerDeskIconInfo[i]]),
  3858. "onclick": U.UF.C.closure(function (obj) {
  3859. //防止拖动图标即打开了桌面应用
  3860. U.MD.D.click(this, obj);
  3861. }, [_szscOrganizerDeskIconInfo[i]])
  3862. }, _frag); //
  3863. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3864. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3865. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3866. }
  3867. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3868. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3869. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3870. continue
  3871. }
  3872. _content = $$("div", {
  3873. className: "U_MD_D_KO",
  3874. "onmousedown": U.UF.C.closure(function (obj) {
  3875. //防止拖动图标即打开了桌面应用
  3876. U.MD.D.click(this, obj);
  3877. }, [_nsfxTeacherDeskIconInfo[i]]),
  3878. "onclick": U.UF.C.closure(function (obj) {
  3879. //防止拖动图标即打开了桌面应用
  3880. U.MD.D.click(this, obj);
  3881. }, [_nsfxTeacherDeskIconInfo[i]])
  3882. }, _frag); //
  3883. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3884. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3885. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3886. }
  3887. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3888. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3889. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3890. continue
  3891. }
  3892. _content = $$("div", {
  3893. className: "U_MD_D_KO",
  3894. "onmousedown": U.UF.C.closure(function (obj) {
  3895. //防止拖动图标即打开了桌面应用
  3896. U.MD.D.click(this, obj);
  3897. }, [_stiaTeacherDeskIconInfo[i]]),
  3898. "onclick": U.UF.C.closure(function (obj) {
  3899. //防止拖动图标即打开了桌面应用
  3900. U.MD.D.click(this, obj);
  3901. }, [_stiaTeacherDeskIconInfo[i]])
  3902. }, _frag); //
  3903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3906. }
  3907. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3908. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3909. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3910. continue
  3911. }
  3912. _content = $$("div", {
  3913. className: "U_MD_D_KO",
  3914. "onmousedown": U.UF.C.closure(function (obj) {
  3915. //防止拖动图标即打开了桌面应用
  3916. U.MD.D.click(this, obj);
  3917. }, [_szdjgTeacherDeskIconInfo[i]]),
  3918. "onclick": U.UF.C.closure(function (obj) {
  3919. //防止拖动图标即打开了桌面应用
  3920. U.MD.D.click(this, obj);
  3921. }, [_szdjgTeacherDeskIconInfo[i]])
  3922. }, _frag); //
  3923. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3924. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3925. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3926. }
  3927. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3928. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3929. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3930. continue
  3931. }
  3932. _content = $$("div", {
  3933. className: "U_MD_D_KO",
  3934. "onmousedown": U.UF.C.closure(function (obj) {
  3935. //防止拖动图标即打开了桌面应用
  3936. U.MD.D.click(this, obj);
  3937. }, [_x010607TeacherDeskIconInfo[i]]),
  3938. "onclick": U.UF.C.closure(function (obj) {
  3939. //防止拖动图标即打开了桌面应用
  3940. U.MD.D.click(this, obj);
  3941. }, [_x010607TeacherDeskIconInfo[i]])
  3942. }, _frag); //
  3943. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3944. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3945. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3946. }
  3947. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3948. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3949. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3950. continue
  3951. }
  3952. _content = $$("div", {
  3953. className: "U_MD_D_KO",
  3954. "onmousedown": U.UF.C.closure(function (obj) {
  3955. //防止拖动图标即打开了桌面应用
  3956. U.MD.D.click(this, obj);
  3957. }, [_xhlyTeacherDeskIconInfo[i]]),
  3958. "onclick": U.UF.C.closure(function (obj) {
  3959. //防止拖动图标即打开了桌面应用
  3960. U.MD.D.click(this, obj);
  3961. }, [_xhlyTeacherDeskIconInfo[i]])
  3962. }, _frag); //
  3963. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3964. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3965. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3966. }
  3967. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3968. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3969. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3970. continue
  3971. }
  3972. _content = $$("div", {
  3973. className: "U_MD_D_KO",
  3974. "onmousedown": U.UF.C.closure(function (obj) {
  3975. //防止拖动图标即打开了桌面应用
  3976. U.MD.D.click(this, obj);
  3977. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3978. "onclick": U.UF.C.closure(function (obj) {
  3979. //防止拖动图标即打开了桌面应用
  3980. U.MD.D.click(this, obj);
  3981. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3982. }, _frag); //
  3983. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3984. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3985. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3986. }
  3987. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3988. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3989. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3990. continue
  3991. }
  3992. _content = $$("div", {
  3993. className: "U_MD_D_KO",
  3994. "onmousedown": U.UF.C.closure(function (obj) {
  3995. //防止拖动图标即打开了桌面应用
  3996. U.MD.D.click(this, obj);
  3997. }, [_x010503TeacherDeskIconInfo[i]]),
  3998. "onclick": U.UF.C.closure(function (obj) {
  3999. //防止拖动图标即打开了桌面应用
  4000. U.MD.D.click(this, obj);
  4001. }, [_x010503TeacherDeskIconInfo[i]])
  4002. }, _frag); //
  4003. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4004. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4005. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4006. }
  4007. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4008. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4009. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4010. continue
  4011. }
  4012. _content = $$("div", {
  4013. className: "U_MD_D_KO",
  4014. "onmousedown": U.UF.C.closure(function (obj) {
  4015. //防止拖动图标即打开了桌面应用
  4016. U.MD.D.click(this, obj);
  4017. }, [_x010504TeacherDeskIconInfo[i]]),
  4018. "onclick": U.UF.C.closure(function (obj) {
  4019. //防止拖动图标即打开了桌面应用
  4020. U.MD.D.click(this, obj);
  4021. }, [_x010504TeacherDeskIconInfo[i]])
  4022. }, _frag); //
  4023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4026. }
  4027. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4028. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4029. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4030. continue
  4031. }
  4032. _content = $$("div", {
  4033. className: "U_MD_D_KO",
  4034. "onmousedown": U.UF.C.closure(function (obj) {
  4035. //防止拖动图标即打开了桌面应用
  4036. U.MD.D.click(this, obj);
  4037. }, [_x010204TeacherDeskIconInfo[i]]),
  4038. "onclick": U.UF.C.closure(function (obj) {
  4039. //防止拖动图标即打开了桌面应用
  4040. U.MD.D.click(this, obj);
  4041. }, [_x010204TeacherDeskIconInfo[i]])
  4042. }, _frag); //
  4043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4046. }
  4047. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4048. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4049. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4050. continue
  4051. }
  4052. _content = $$("div", {
  4053. className: "U_MD_D_KO",
  4054. "onmousedown": U.UF.C.closure(function (obj) {
  4055. //防止拖动图标即打开了桌面应用
  4056. U.MD.D.click(this, obj);
  4057. }, [_trailTeacherDeskIconInfo[i]]),
  4058. "onclick": U.UF.C.closure(function (obj) {
  4059. //防止拖动图标即打开了桌面应用
  4060. U.MD.D.click(this, obj);
  4061. }, [_trailTeacherDeskIconInfo[i]])
  4062. }, _frag); //
  4063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4066. }
  4067. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4068. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4069. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4070. continue
  4071. }
  4072. _content = $$("div", {
  4073. className: "U_MD_D_KO",
  4074. "onmousedown": U.UF.C.closure(function (obj) {
  4075. //防止拖动图标即打开了桌面应用
  4076. U.MD.D.click(this, obj);
  4077. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4078. "onclick": U.UF.C.closure(function (obj) {
  4079. //防止拖动图标即打开了桌面应用
  4080. U.MD.D.click(this, obj);
  4081. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4082. }, _frag); //
  4083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4086. }
  4087. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4088. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4089. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4090. continue
  4091. }
  4092. _content = $$("div", {
  4093. className: "U_MD_D_KO",
  4094. "onmousedown": U.UF.C.closure(function (obj) {
  4095. //防止拖动图标即打开了桌面应用
  4096. U.MD.D.click(this, obj);
  4097. }, [_x010608TeacherDeskIconInfo[i]]),
  4098. "onclick": U.UF.C.closure(function (obj) {
  4099. //防止拖动图标即打开了桌面应用
  4100. U.MD.D.click(this, obj);
  4101. }, [_x010608TeacherDeskIconInfo[i]])
  4102. }, _frag); //
  4103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4106. }
  4107. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4108. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4109. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4110. continue
  4111. }
  4112. _content = $$("div", {
  4113. className: "U_MD_D_KO",
  4114. "onmousedown": U.UF.C.closure(function (obj) {
  4115. //防止拖动图标即打开了桌面应用
  4116. U.MD.D.click(this, obj);
  4117. }, [_x010611TeacherDeskIconInfo[i]]),
  4118. "onclick": U.UF.C.closure(function (obj) {
  4119. //防止拖动图标即打开了桌面应用
  4120. U.MD.D.click(this, obj);
  4121. }, [_x010611TeacherDeskIconInfo[i]])
  4122. }, _frag); //
  4123. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4124. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4125. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4126. }
  4127. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4128. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4129. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4130. continue
  4131. }
  4132. _content = $$("div", {
  4133. className: "U_MD_D_KO",
  4134. "onmousedown": U.UF.C.closure(function (obj) {
  4135. //防止拖动图标即打开了桌面应用
  4136. U.MD.D.click(this, obj);
  4137. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4138. "onclick": U.UF.C.closure(function (obj) {
  4139. //防止拖动图标即打开了桌面应用
  4140. U.MD.D.click(this, obj);
  4141. }, [_tianyuanTeacherDeskIconInfo[i]])
  4142. }, _frag); //
  4143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4146. }
  4147. } else {
  4148. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4149. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4150. continue
  4151. }
  4152. _content = $$("div", {
  4153. className: "U_MD_D_KO",
  4154. "onmousedown": U.UF.C.closure(function (obj) {
  4155. //防止拖动图标即打开了桌面应用
  4156. U.MD.D.click(this, obj);
  4157. }, [_teacherDesktopIconInfo[i]]),
  4158. "onclick": U.UF.C.closure(function (obj) {
  4159. //防止拖动图标即打开了桌面应用
  4160. U.MD.D.click(this, obj);
  4161. }, [_teacherDesktopIconInfo[i]])
  4162. }, _frag); //
  4163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4166. }
  4167. }
  4168. } else {
  4169. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4170. _content = $$("div", {
  4171. className: "U_MD_D_KO",
  4172. style: { 'width': '124px', 'height': '145px' },
  4173. "onmousedown": U.UF.C.closure(function (obj) {
  4174. //防止拖动图标即打开了桌面应用
  4175. U.MD.D.click(this, obj);
  4176. }, [_easyDesktopIconInfo[i]]),
  4177. "onclick": U.UF.C.closure(function (obj) {
  4178. //防止拖动图标即打开了桌面应用
  4179. U.MD.D.click(this, obj);
  4180. }, [_easyDesktopIconInfo[i]])
  4181. }, _frag); //
  4182. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4185. }
  4186. }
  4187. if (type == 1) {
  4188. //加载好后给图标定位
  4189. U.MD.D.iconPostion($(_frag).Child());
  4190. } else {
  4191. //加载好后给图标定位
  4192. U.MD.D.iconPostion2($(_frag).Child());
  4193. }
  4194. //把图标加载到页面
  4195. el.appendChild(_frag);
  4196. }
  4197. /**
  4198. * 显示任务栏
  4199. *
  4200. * @param {element} 桌面元素
  4201. */
  4202. U.MD.D.I.displayTaskbar = function (el) {
  4203. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4204. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4205. //任务栏位置变化
  4206. U.selectEl(el).css({ "bottom": "0px" });
  4207. //桌面位置变话
  4208. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4209. }
  4210. }
  4211. //#region 桌面图标拖动逻辑
  4212. /**
  4213. * 桌面排列图标
  4214. *
  4215. * @param {element} 桌面元素
  4216. * @param {object} 上下相距的距离
  4217. * @param {object} 左右相距的距离
  4218. * @return {object} 命名空间
  4219. */
  4220. U.MD.D.iconPostion = function (childs, top, left) {
  4221. var i; //用于循环处理
  4222. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4223. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4224. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4225. for (i = 0; i < childs.length; i++) {
  4226. //如果竖排top超过了范围处理
  4227. if (top + 95 > US.height - 10) {
  4228. //left超过了页面范围处理,则向上重叠打印处理
  4229. if ((left + 180) > US.width) {
  4230. top -= 110;
  4231. left -= 90;
  4232. }
  4233. //没有超过范围,那么left+90添加到下一个竖排打印
  4234. else {
  4235. left += 90;
  4236. top = 15;
  4237. };
  4238. }
  4239. //给图标的位置赋值
  4240. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4241. if (i < childs.length - 1) {
  4242. //页面图标每次向下加95
  4243. top += 95;
  4244. }
  4245. }
  4246. //返回最后调用的图标的位置
  4247. return [top, left];
  4248. }
  4249. /**
  4250. * 桌面排列图标
  4251. *
  4252. * @param {element} 桌面元素
  4253. * @param {object} 上下相距的距离
  4254. * @param {object} 左右相距的距离
  4255. * @return {object} 命名空间
  4256. */
  4257. U.MD.D.iconPostion2 = function (childs, top, left) {
  4258. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4259. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4260. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4261. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4262. for (i = 0; i < childs.length; i++) {
  4263. //如果竖排top超过了范围处理
  4264. if (left + 150 > US.width - 10) {
  4265. //left超过了页面范围处理,则向上重叠打印处理
  4266. if ((top + 180) > US.Height) {
  4267. top -= 150;
  4268. left -= 150;
  4269. }
  4270. //没有超过范围,那么left+90添加到下一个竖排打印
  4271. else {
  4272. top += 150;
  4273. left = ol;
  4274. };
  4275. }
  4276. //给图标的位置赋值
  4277. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4278. if (i < childs.length - 1) {
  4279. //页面图标每次向下加95
  4280. left += 150;
  4281. }
  4282. }
  4283. //返回最后调用的图标的位置
  4284. return [top, left];
  4285. }
  4286. /**
  4287. * 桌面点击事件逻辑
  4288. *
  4289. * @param {element} 桌面元素
  4290. * @param {object} 上下相距的距离
  4291. * @param {object} 左右相距的距离
  4292. * @return {object} 命名空间
  4293. */
  4294. U.MD.D.click = function (el, obj) {
  4295. var _buttonnumber = event.button; //点击的按钮的事件值
  4296. var _userinfo = US.userInfo;
  4297. U.UF.EV.stopBubble(); //阻止向上冒泡
  4298. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4299. if (_buttonnumber < 2) {
  4300. //如果是click事件的处理
  4301. if (event.type == "click") {
  4302. //如果元素在mousemove事件中没有移动则出发click事件
  4303. if (!U.MD.D.I.IsDrag) {
  4304. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4305. U.alert("请先登录您的账号!");
  4306. setTimeout(() => {
  4307. U.MD.U.L.login();
  4308. }, 2000);
  4309. } else {
  4310. //打开应用处理
  4311. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4312. }
  4313. }
  4314. }
  4315. //如果是mouse事件的处理
  4316. else {
  4317. if (US.Config.type == '1') {
  4318. //拖动处理,添加拖动和拖动结束事件
  4319. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4320. }
  4321. }
  4322. U.MD.D.I.IsDrag = false;
  4323. }
  4324. }
  4325. /**
  4326. * 拖动的处理
  4327. *
  4328. */
  4329. U.MD.D.iconMove = function () {
  4330. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4331. U.MD.D.I.IsDrag = true;
  4332. }
  4333. /**
  4334. * 拖动结束后,这里是定位处理,以网状的形式定位
  4335. *
  4336. * @param {element} 拖动的元素
  4337. * @return {object} 命名空间
  4338. */
  4339. U.MD.D.iconUp = function (el) {
  4340. var _top = 15,
  4341. _left = 20,
  4342. _margin,
  4343. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4344. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4345. if (_positioninfo["OT"] > 15) {
  4346. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4347. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4348. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4349. }
  4350. if (_positioninfo["OL"] > 20) {
  4351. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4352. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4353. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4354. }
  4355. //while循环判断么一个重叠的元素
  4356. do {
  4357. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4358. _top = _positioninfo[0] + 95; //得到定位后的top
  4359. _left = _positioninfo[1]; //得到定位后的left
  4360. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4361. }
  4362. /**
  4363. * 判断拖动后图标是否重叠
  4364. *
  4365. * @param {element} 拖动的元素
  4366. * @param {element} 桌面所有的元素
  4367. * @param {array} 拖动元素的位置
  4368. ----------[0] 上 top
  4369. ----------[1] 左 left
  4370. * @return {object} 命名空间
  4371. */
  4372. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4373. //循环所有的图标
  4374. for (var i = 0; i < childs.length; i++) {
  4375. //判断有没有和该图标诶子重叠的元素
  4376. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4377. return childs[i]; //如果有返回
  4378. }
  4379. }
  4380. }
  4381. //#endregion
  4382. //#endregion
  4383. //#region 桌面应用
  4384. /**
  4385. * 打开应用
  4386. *
  4387. * @param {string} 类型
  4388. -----------------Disk 网盘系统
  4389. -----------------PDisk 学习系统网盘
  4390. -----------------Poto 图片
  4391. -----------------Video 视频
  4392. -----------------Music 音乐
  4393. -----------------Word word
  4394. -----------------Excel excel
  4395. -----------------Txt 记事本
  4396. -----------------PB 学习系统
  4397. -----------------Blog 朋友圈系统
  4398. -----------------FTP ftp系统
  4399. -----------------Group 好友群
  4400. -----------------SY 首页系统
  4401. -----------------Set 个人设置
  4402. -----------------XSet 系统设置
  4403. -----------------App 我们所有的app
  4404. -----------------BC c.1473.cn 平台
  4405. -----------------CWeb d.1473.cn 变成平台
  4406. -----------------其他的外联系统 我们统一用iframe打开
  4407. * @param {array} 类型
  4408. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4409. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4410. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4411. 如果第一个参数为其他,则无第二个参数
  4412. * @returns {array}
  4413. */
  4414. window.addEventListener('message', function (e) { // 监听 message 事件
  4415. // alert(e.data.type);
  4416. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4417. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4418. //3是展示全部阶段 2学生 1老师 4专家
  4419. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4420. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4421. //3是展示全部阶段 2学生 1老师 4专家
  4422. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4423. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4424. //3是展示全部阶段 2学生 1老师 4专家
  4425. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4426. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4427. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4428. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4429. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4430. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4431. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4432. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4433. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4434. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4435. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4436. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4437. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4438. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4439. //3是展示全部阶段 2学生 1老师 4专家
  4440. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4441. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4442. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4443. U.MD.D.I.selectUser();
  4444. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4445. var _formel = document.getElementById("study");
  4446. U.UF.F.windowZooming(_formel);
  4447. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4448. var _formel = document.getElementById("studyDetail");
  4449. U.UF.F.windowZooming(_formel);
  4450. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4451. var _formel = document.getElementById("studyDetail");
  4452. U.UF.F.windowZooming(_formel);
  4453. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4454. var _formel = document.getElementById("studentStudy");
  4455. U.UF.F.windowZooming(_formel);
  4456. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4457. // var _formel = document.getElementById("study");
  4458. //如果最大化了,那么就把他缩小
  4459. // if (_formel.ismaximize) {
  4460. // return;
  4461. // }
  4462. // U.UF.F.windowZooming(_formel);
  4463. // U.UF.F.topWindow(_formel);
  4464. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4465. // var _formel = document.getElementById("studyDetail");
  4466. //如果最大化了,那么就把他缩小
  4467. // if (_formel.ismaximize) {
  4468. // return;
  4469. // }
  4470. // U.UF.F.windowZooming(_formel);
  4471. // U.UF.F.topWindow(_formel);
  4472. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4473. // var _formel = document.getElementById("studentStudy");
  4474. // if (_formel.ismaximize) {
  4475. // return;
  4476. // }
  4477. // U.UF.F.windowZooming(_formel);
  4478. // U.UF.F.topWindow(_formel);
  4479. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4480. var _formel = document.getElementById("study");
  4481. // if (_formel.ismaximize) {
  4482. // return;
  4483. // }
  4484. // U.UF.F.windowZooming(_formel);
  4485. U.UF.F.topWindow(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4487. var _formel = document.getElementById("studentIndex");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4490. var _formel = document.getElementById("studyDetailS");
  4491. U.UF.F.windowZooming(_formel);
  4492. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4493. var _formel = document.getElementById("studioIndex");
  4494. U.UF.F.windowZooming(_formel);
  4495. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4496. var _formel = document.getElementById("studyDetailStudio");
  4497. U.UF.F.windowZooming(_formel);
  4498. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4499. var _formel = document.getElementById("studyDetailStudio");
  4500. U.UF.F.windowZooming(_formel);
  4501. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4502. var _formel = document.getElementById("studyDetailNT");
  4503. U.UF.F.windowZooming(_formel);
  4504. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4505. var _formel = document.getElementById("studyDetailS");
  4506. U.UF.F.windowZooming(_formel);
  4507. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4508. var _formel = document.getElementById("studyDetailS");
  4509. U.UF.F.topWindow(_formel);
  4510. } else if (e.data.tools && e.data.tools == "1") {
  4511. // U.MD.D.I.openApplication("whiteboard")
  4512. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4513. } else if (e.data.tools && e.data.tools == "2") {
  4514. U.MD.D.I.openApplication("note")
  4515. } else if (e.data.tools && e.data.tools == "3") {
  4516. // U.MD.D.I.openApplication("mind")
  4517. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4518. } else if (e.data.tools && e.data.tools == "4") {
  4519. U.MD.D.I.openApplication("investigation")
  4520. } else if (e.data.tools && e.data.tools == "6") {
  4521. // U.MD.D.I.openApplication("doc")
  4522. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4523. } else if (e.data.tools && e.data.tools == "7") {
  4524. // U.MD.D.I.openApplication("mindNetwork")
  4525. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4526. } else if (e.data.tools && e.data.tools == "8") {
  4527. U.MD.D.I.openApplication("library")
  4528. } else if (e.data.tools && e.data.tools == "17") {
  4529. U.MD.D.I.openApplication("stuLibrary")
  4530. } else if (e.data.tools && e.data.tools == "18") {
  4531. U.MD.D.I.openApplication("train")
  4532. } else if (e.data.tools && e.data.tools == "21") {
  4533. U.MD.D.I.openApplication("program")
  4534. } else if (e.data.tools && e.data.tools == "22") {
  4535. U.MD.D.I.openApplication("AIprogram2")
  4536. } else if (e.data.tools && e.data.tools == "23") {
  4537. U.MD.D.I.openApplication("Pythonprogram")
  4538. } else if (e.data.tools && e.data.tools == "24") {
  4539. U.MD.D.I.openApplication("AIprogram")
  4540. } else if (e.data.tools && e.data.tools == "25") {
  4541. U.MD.D.I.openApplication("sys")
  4542. } else if (e.data.tools && e.data.tools == "26") {
  4543. // U.MD.D.I.openApplication("courseDesign")
  4544. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4545. } else if (e.data.tools && e.data.tools == "31") {
  4546. U.MD.D.I.openApplication("netWorkPanel")
  4547. } else if (e.data.tools && e.data.tools == "32") {
  4548. U.MD.D.I.openApplication("codeEdit")
  4549. } else if (e.data.tools && e.data.tools == "57") {
  4550. U.MD.D.I.openApplication("CocoPi")
  4551. } else if (e.data.tools && e.data.tools == "63") {
  4552. U.MD.D.I.openApplication("Wood")
  4553. } else if (e.data.tools && e.data.tools == "58") {
  4554. U.MD.D.I.openApplication("car")
  4555. } else if (e.data.tools && e.data.tools == "59") {
  4556. U.MD.D.I.openApplication("lineSearch")
  4557. } else if (e.data.tools && e.data.tools == "60") {
  4558. U.MD.D.I.openApplication("deepLearning")
  4559. } else if (e.data.tools && e.data.tools == "61") {
  4560. U.MD.D.I.openApplication("allHistory")
  4561. } else if (e.data.tools && e.data.tools == "28") {
  4562. U.MD.D.I.openApplication("translation")
  4563. } else if (e.data.tools && e.data.tools == "37") {
  4564. U.MD.D.I.openApplication("mohe")
  4565. } else if (e.data.tools && e.data.tools == "38") {
  4566. U.MD.D.I.openApplication("24game")
  4567. } else if (e.data.tools && e.data.tools == "39") {
  4568. U.MD.D.I.openApplication("GeoGebra")
  4569. } else if (e.data.tools && e.data.tools == "43") {
  4570. U.MD.D.I.openApplication("studentEvaluate")
  4571. } else if (e.data.tools && e.data.tools == "44") {
  4572. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4573. } else if (e.data.tools && e.data.tools == "46") {
  4574. U.MD.D.I.openApplication("project")
  4575. } else if (e.data.tools && e.data.tools == "71") {
  4576. U.MD.D.I.openApplication("aigptCourse")
  4577. } else if (e.data.tools && e.data.tools == "1s") {
  4578. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4579. } else if (e.data.tools && e.data.tools == "3s") {
  4580. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4581. } else if (e.data.tools && e.data.tools == "6s") {
  4582. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4583. } else if (e.data.tools && e.data.tools == "1studio") {
  4584. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4585. } else if (e.data.tools && e.data.tools == "3studio") {
  4586. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4587. } else if (e.data.tools && e.data.tools == "6studio") {
  4588. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4589. } else if (e.data.tools && e.data.tools == "3y") {
  4590. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4591. } else if (e.data.tools && e.data.tools == "1y") {
  4592. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4593. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4594. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4595. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4596. U.MD.D.I.openApplication("AIAnalyse")
  4597. } else if (e.data.tools && e.data.tools == "1teacher") {
  4598. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4599. } else if (e.data.tools && e.data.tools == "3teacher") {
  4600. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4601. } else if (e.data.tools && e.data.tools == "7teacher") {
  4602. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4603. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4604. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4605. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4606. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4607. } else if (e.data.tools && e.data.tools == "1E") {
  4608. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4609. } else if (e.data.tools && e.data.tools == "3E") {
  4610. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4611. } else if (e.data.tools && e.data.tools == "57y") {
  4612. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4613. } else if (e.data.tools && e.data.tools == "57u") {
  4614. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4615. } else if (e.data.tools && e.data.tools == "57teacher") {
  4616. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4617. } else if (e.data.tools && e.data.tools == "64") {
  4618. U.MD.D.I.openApplication("AIChat")
  4619. } else if (e.data.tools && e.data.tools == "66") {
  4620. U.MD.D.I.openApplication("formulaEdi")
  4621. } else if (e.data.tools && e.data.tools == "67") {
  4622. U.MD.D.I.openApplication("molStr")
  4623. } else if (e.data.tools && e.data.tools == "68") {
  4624. U.MD.D.I.openApplication("timeAxis")
  4625. } else if (e.data.tools && e.data.tools == "openCourse") {
  4626. let _data = {
  4627. typea: e.data.typea || '',
  4628. typeb: e.data.typeb || '',
  4629. typed: e.data.typed || '',
  4630. }
  4631. U.MD.D.I.openInApplication("index", _data)
  4632. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4633. let _data = {
  4634. classid: e.data.classid || '',
  4635. }
  4636. U.MD.D.I.openInApplication("dataClass", _data)
  4637. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4638. let _data = {
  4639. cid: e.data.cid || '',
  4640. gid: e.data.gid || '',
  4641. }
  4642. U.MD.D.I.openInApplication("opencCscl", _data)
  4643. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4644. U.MD.D.I.openApplication("dataBoardTest")
  4645. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4646. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4647. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4648. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4649. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4650. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4651. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4652. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4653. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4654. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4655. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4656. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4657. }else if (e.data.tools && e.data.tools == "loginSz") {
  4658. U.MD.D.I.openInApplication("loginSz")
  4659. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4660. if($('#classroom_observation_board')[0]){
  4661. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4662. }
  4663. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4664. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4665. if($('#classroom_observation_ob_comment')[0]){
  4666. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4667. }
  4668. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4669. }else if (e.data.tools && e.data.tools == "logout"){
  4670. U.MD.U.LO.logoutSystem()
  4671. }else if (e.data.tools && e.data.tools == "getLogin"){
  4672. let _iframe = $('#UI_Login')[0];
  4673. if (_iframe) {
  4674. var userInfo = US.userInfo;
  4675. var type = 2
  4676. if(userInfo && userInfo.userid){
  4677. type = 1
  4678. }
  4679. _contentWindow = _iframe.contentWindow;
  4680. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4681. }
  4682. }
  4683. });
  4684. U.MD.D.I.selectUser = function () {
  4685. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4686. if (res.value[0].length > 0) {
  4687. US.userInfo = res.value[0][0];
  4688. $(".userName")[0].innerHTML = US.userInfo.username;
  4689. }
  4690. }, [], { "type": "GET", "withCredentials": true });
  4691. }
  4692. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4693. var _userinfo = US.userInfo, //登录用户信息
  4694. _userid = US.userInfo.userid, //登录用户id
  4695. _oid = _userinfo.organizeid,
  4696. _type = US.userInfo.type,
  4697. _org = US.userInfo.org,
  4698. _role = US.userInfo.role,
  4699. _classId = US.userInfo.classid;
  4700. if (_type == 4) {
  4701. tType = 4
  4702. }
  4703. switch (str) {
  4704. case "studyDetailNT": //无终端模式
  4705. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4706. setTimeout(() => {
  4707. U.MD.U.L.login();
  4708. }, 2000);
  4709. } else {
  4710. _formdiv = new U.UF.UI.form(
  4711. "课程详情",
  4712. $$("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 }), {
  4713. "id": "studyDetailNT",
  4714. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4715. "onresize": function () { }
  4716. }, {
  4717. closecallback: function () { }
  4718. }, { "style": { "height": "36px" } }).form; //创建窗体
  4719. _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); } }
  4720. break;
  4721. }
  4722. case "studyDetail":
  4723. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4724. setTimeout(() => {
  4725. U.MD.U.L.login();
  4726. }, 2000);
  4727. } else {
  4728. _formdiv = new U.UF.UI.form(
  4729. "课程详情",
  4730. $$("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 }), {
  4731. "id": "studyDetail",
  4732. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4733. "onresize": function () { }
  4734. }, {
  4735. closecallback: function () { }
  4736. }, { "style": { "height": "36px" } }).form; //创建窗体
  4737. _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); } }
  4738. break;
  4739. }
  4740. case "studyDetailTrain":
  4741. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4742. setTimeout(() => {
  4743. U.MD.U.L.login();
  4744. }, 2000);
  4745. } else {
  4746. _formdiv = new U.UF.UI.form(
  4747. "培训详情",
  4748. $$("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 }), {
  4749. "id": "studyDetailTrain",
  4750. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4751. "onresize": function () { }
  4752. }, {
  4753. closecallback: function () { }
  4754. }, { "style": { "height": "36px" } }).form; //创建窗体
  4755. _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); } }
  4756. break;
  4757. }
  4758. case "studyDetailS":
  4759. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4760. setTimeout(() => {
  4761. U.MD.U.L.login();
  4762. }, 2000);
  4763. } else {
  4764. _formdiv = new U.UF.UI.form(
  4765. "项目详情",
  4766. $$("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 }), {
  4767. "id": "studyDetailS",
  4768. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4769. "onresize": function () { }
  4770. }, {
  4771. closecallback: function () { }
  4772. }, { "style": { "height": "36px" } }).form; //创建窗体
  4773. _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); } }
  4774. break;
  4775. }
  4776. case "studyDetailStudio":
  4777. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4778. setTimeout(() => {
  4779. U.MD.U.L.login();
  4780. }, 2000);
  4781. } else {
  4782. _formdiv = new U.UF.UI.form(
  4783. "工作详情",
  4784. $$("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 }), {
  4785. "id": "studyDetailStudio",
  4786. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4787. "onresize": function () { }
  4788. }, {
  4789. closecallback: function () { }
  4790. }, { "style": { "height": "36px" } }).form; //创建窗体
  4791. _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); } }
  4792. break;
  4793. }
  4794. case "studyDetailS5":
  4795. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4796. setTimeout(() => {
  4797. U.MD.U.L.login();
  4798. }, 2000);
  4799. } else {
  4800. _formdiv = new U.UF.UI.form(
  4801. "项目详情",
  4802. $$("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 }), {
  4803. "id": "studyDetailS",
  4804. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4805. "onresize": function () { }
  4806. }, {
  4807. closecallback: function () { }
  4808. }, { "style": { "height": "36px" } }).form; //创建窗体
  4809. _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); } }
  4810. break;
  4811. }
  4812. case "studyDetailGM":
  4813. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4814. setTimeout(() => {
  4815. U.MD.U.L.login();
  4816. }, 2000);
  4817. } else {
  4818. _formdiv = new U.UF.UI.form(
  4819. "课程详情",
  4820. $$("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 }), {
  4821. "id": "studyDetail",
  4822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4823. "onresize": function () { }
  4824. }, {
  4825. closecallback: function () { }
  4826. }, { "style": { "height": "36px" } }).form; //创建窗体
  4827. _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); } }
  4828. break;
  4829. }
  4830. case "hanUrl":
  4831. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4832. setTimeout(() => {
  4833. U.MD.U.L.login();
  4834. }, 2000);
  4835. } else {
  4836. _formdiv = new U.UF.UI.form(
  4837. "汉字宫",
  4838. $$("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" }), {
  4839. "id": "hanUrl",
  4840. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4841. "onresize": function () { }
  4842. }, {
  4843. closecallback: function () { }
  4844. }, { "style": { "height": "36px" } }).form; //创建窗体
  4845. _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); } }
  4846. break;
  4847. }
  4848. case "index":
  4849. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4850. setTimeout(() => {
  4851. U.MD.U.L.login();
  4852. }, 2000);
  4853. } else {
  4854. _formdiv = new U.UF.UI.form(
  4855. "课程中心",
  4856. $$("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 }), {
  4857. "id": "study",
  4858. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4859. "onresize": function () { }
  4860. }, {
  4861. closecallback: function () { }
  4862. }, { "style": { "height": "36px" } }).form; //创建窗体
  4863. _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); } }
  4864. break;
  4865. }
  4866. case "dataClass":
  4867. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4868. setTimeout(() => {
  4869. U.MD.U.L.login();
  4870. }, 2000);
  4871. } else {
  4872. _formdiv = new U.UF.UI.form(
  4873. "数据报告",
  4874. $$("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 }), {
  4875. "id": "dataClass",
  4876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4877. "onresize": function () { }
  4878. }, {
  4879. closecallback: function () { }
  4880. }, { "style": { "height": "36px" } }).form; //创建窗体
  4881. _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); } }
  4882. break;
  4883. }
  4884. case "opencCscl":
  4885. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4886. setTimeout(() => {
  4887. U.MD.U.L.login();
  4888. }, 2000);
  4889. } else {
  4890. _formdiv = new U.UF.UI.form(
  4891. "协同建构",
  4892. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4893. "id": "futureClass",
  4894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _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); } }
  4900. break;
  4901. }
  4902. case "openCourseUpdate":
  4903. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4904. setTimeout(() => {
  4905. U.MD.U.L.login();
  4906. }, 2000);
  4907. } else {
  4908. _formdiv = new U.UF.UI.form(
  4909. "课程管理",
  4910. $$("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 }), {
  4911. "id": "openCourseUpdate",
  4912. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4913. "onresize": function () { }
  4914. }, {
  4915. closecallback: function () { }
  4916. }, { "style": { "height": "36px" } }).form; //创建窗体
  4917. break;
  4918. }
  4919. case "openNewCourseUpdate":
  4920. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4921. setTimeout(() => {
  4922. U.MD.U.L.login();
  4923. }, 2000);
  4924. } else {
  4925. _formdiv = new U.UF.UI.form(
  4926. "课程管理",
  4927. $$("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 }), {
  4928. "id": "openCourseUpdate",
  4929. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4930. "onresize": function () { }
  4931. }, {
  4932. closecallback: function () { }
  4933. }, { "style": { "height": "36px" } }).form; //创建窗体
  4934. break;
  4935. }
  4936. case "openCourseEUpdate":
  4937. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4938. setTimeout(() => {
  4939. U.MD.U.L.login();
  4940. }, 2000);
  4941. } else {
  4942. _formdiv = new U.UF.UI.form(
  4943. "课程管理",
  4944. $$("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 }), {
  4945. "id": "openCourseUpdate",
  4946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4947. "onresize": function () { }
  4948. }, {
  4949. closecallback: function () { }
  4950. }, { "style": { "height": "36px" } }).form; //创建窗体
  4951. break;
  4952. }
  4953. case "openCourseAiUpdate":
  4954. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4955. setTimeout(() => {
  4956. U.MD.U.L.login();
  4957. }, 2000);
  4958. } else {
  4959. _formdiv = new U.UF.UI.form(
  4960. "课程管理",
  4961. $$("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 }), {
  4962. "id": "openCourseUpdate",
  4963. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4964. "onresize": function () { }
  4965. }, {
  4966. closecallback: function () { }
  4967. }, { "style": { "height": "36px" } }).form; //创建窗体
  4968. break;
  4969. }
  4970. case "openCourseAiUpdate2":
  4971. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4972. setTimeout(() => {
  4973. U.MD.U.L.login();
  4974. }, 2000);
  4975. } else {
  4976. _formdiv = new U.UF.UI.form(
  4977. "课程管理",
  4978. $$("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 }), {
  4979. "id": "openCourseUpdate",
  4980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4981. "onresize": function () { }
  4982. }, {
  4983. closecallback: function () { }
  4984. }, { "style": { "height": "36px" } }).form; //创建窗体
  4985. break;
  4986. }
  4987. case "openCourseNewUpdate":
  4988. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4989. setTimeout(() => {
  4990. U.MD.U.L.login();
  4991. }, 2000);
  4992. } else {
  4993. _formdiv = new U.UF.UI.form(
  4994. "课程管理",
  4995. $$("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 }), {
  4996. "id": "openCourseUpdate",
  4997. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4998. "onresize": function () { }
  4999. }, {
  5000. closecallback: function () { }
  5001. }, { "style": { "height": "36px" } }).form; //创建窗体
  5002. break;
  5003. }
  5004. case "inviteLoginSz":
  5005. _formdiv = new U.UF.UI.form(
  5006. "随机码登录",
  5007. $$("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 }), {
  5008. "id": "loginSz",
  5009. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5010. "onresize": function () { }
  5011. }, {
  5012. closecallback: function () { }
  5013. }, { "style": { "height": "36px" } }).form; //创建窗体
  5014. break;
  5015. case "loginSz":
  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": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5019. "id": "loginSz",
  5020. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5021. "onresize": function () { }
  5022. }, {
  5023. closecallback: function () { }
  5024. }, { "style": { "height": "36px" } }).form; //创建窗体
  5025. break;
  5026. case "teacher":
  5027. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5028. setTimeout(() => {
  5029. U.MD.U.L.login();
  5030. }, 2000);
  5031. } else {
  5032. _formdiv = new U.UF.UI.form(
  5033. "教师管理",
  5034. $$("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 }), {
  5035. "id": "teacher",
  5036. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5037. "onresize": function () { }
  5038. }, {
  5039. closecallback: function () { }
  5040. }, { "style": { "height": "36px" } }).form; //创建窗体
  5041. break;
  5042. }
  5043. case "dataBoardSZArea":
  5044. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5045. setTimeout(() => {
  5046. U.MD.U.L.login();
  5047. }, 2000);
  5048. } else {
  5049. _formdiv = new U.UF.UI.form(
  5050. "综合数据看板",
  5051. $$("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 }), {
  5052. "id": "dataBoardSZArea",
  5053. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5054. "onresize": function () { }
  5055. }, {
  5056. closecallback: function () { }
  5057. }, { "style": { "height": "36px" } }).form; //创建窗体
  5058. break;
  5059. }
  5060. case "dataBoardSZCity":
  5061. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5062. setTimeout(() => {
  5063. U.MD.U.L.login();
  5064. }, 2000);
  5065. } else {
  5066. _formdiv = new U.UF.UI.form(
  5067. "综合数据看板",
  5068. $$("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 }), {
  5069. "id": "dataBoardSZCity",
  5070. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5071. "onresize": function () { }
  5072. }, {
  5073. closecallback: function () { }
  5074. }, { "style": { "height": "36px" } }).form; //创建窗体
  5075. break;
  5076. }
  5077. case "classroom_observation_board":
  5078. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5079. setTimeout(() => {
  5080. U.MD.U.L.login();
  5081. }, 2000);
  5082. } else {
  5083. _formdiv = new U.UF.UI.form(
  5084. "课堂观察",
  5085. $$("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 }), {
  5086. "id": "classroom_observation_board",
  5087. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5088. "onresize": function () { }
  5089. }, {
  5090. closecallback: function () { }
  5091. }, { "style": { "height": "36px" } }).form; //创建窗体
  5092. break;
  5093. }
  5094. case "classroom_observation_ob_comment":
  5095. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5096. setTimeout(() => {
  5097. U.MD.U.L.login();
  5098. }, 2000);
  5099. } else {
  5100. _formdiv = new U.UF.UI.form(
  5101. "课堂审核",
  5102. $$("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 }), {
  5103. "id": "classroom_observation_ob_comment",
  5104. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5105. "onresize": function () { }
  5106. }, {
  5107. closecallback: function () { }
  5108. }, { "style": { "height": "36px" } }).form; //创建窗体
  5109. break;
  5110. }
  5111. }
  5112. }
  5113. U.MD.D.I.openApplication = function (str, obj, info) {
  5114. obj = obj || {};
  5115. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5116. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5117. _userinfo = US.userInfo, //登录用户信息
  5118. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5119. _oid = obj.organizeid || _userinfo.organizeid,
  5120. _type = US.userInfo.type,
  5121. _org = US.userInfo.org,
  5122. _role = US.userInfo.role,
  5123. _classId = US.userInfo.classid,
  5124. _TscreenType = 1
  5125. _screenType = 2,
  5126. _SscreenType = 3;
  5127. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5128. return;
  5129. }
  5130. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5131. switch (str) {
  5132. case "studnetProject": //好友打开
  5133. _formdiv = new U.UF.UI.form(
  5134. "我的项目",
  5135. $$("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 }), {
  5136. "id": "studnetProject",
  5137. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5138. "onresize": function () { }
  5139. }, {
  5140. closecallback: function () { }
  5141. }, { "style": { "height": "36px" } }).form; //创建窗体
  5142. _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); } }
  5143. break;
  5144. case "studentEvaluate": //好友打开
  5145. _formdiv = new U.UF.UI.form(
  5146. "我的评价",
  5147. $$("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 }), {
  5148. "id": "studentEvaluate",
  5149. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5150. "onresize": function () { }
  5151. }, {
  5152. closecallback: function () { }
  5153. }, { "style": { "height": "36px" } }).form; //创建窗体
  5154. _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); } }
  5155. break;
  5156. case "my":
  5157. _formdiv = new U.UF.UI.form(
  5158. "我的资料",
  5159. $$("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 }), {
  5160. "id": "my",
  5161. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. _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); } }
  5167. break;
  5168. case "program":
  5169. _formdiv = new U.UF.UI.form(
  5170. "编程平台",
  5171. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5172. "id": "program",
  5173. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. _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); } }
  5179. break;
  5180. case "library":
  5181. _formdiv = new U.UF.UI.form(
  5182. "素材库",
  5183. $$("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 }), {
  5184. "id": "library",
  5185. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5186. "onresize": function () { }
  5187. }, {
  5188. closecallback: function () { }
  5189. }, { "style": { "height": "36px" } }).form; //创建窗体
  5190. _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); } }
  5191. break;
  5192. case "whiteboard":
  5193. _formdiv = new U.UF.UI.form(
  5194. "电子白板",
  5195. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5196. "id": "whiteboard",
  5197. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5198. "onresize": function () { }
  5199. }, {
  5200. closecallback: function () { }
  5201. }, { "style": { "height": "36px" } }).form; //创建窗体
  5202. _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); } }
  5203. break;
  5204. case "investigation":
  5205. _formdiv = new U.UF.UI.form(
  5206. "问卷调查",
  5207. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5208. "id": "investigation",
  5209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5210. "onresize": function () { }
  5211. }, {
  5212. closecallback: function () { }
  5213. }, { "style": { "height": "36px" } }).form; //创建窗体
  5214. _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); } }
  5215. break;
  5216. case "note":
  5217. _formdiv = new U.UF.UI.form(
  5218. "便签分类",
  5219. $$("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 }), {
  5220. "id": "note",
  5221. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5222. "onresize": function () { }
  5223. }, {
  5224. closecallback: function () { }
  5225. }, { "style": { "height": "36px" } }).form; //创建窗体
  5226. _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); } }
  5227. break;
  5228. // case "score":
  5229. // _formdiv = new U.UF.UI.form(
  5230. // "量规评分",
  5231. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5232. // "id": "score",
  5233. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5234. // "onresize": function() {}
  5235. // }, {
  5236. // closecallback: function() {}
  5237. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5238. // _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); } }
  5239. // break;
  5240. case "mind":
  5241. _formdiv = new U.UF.UI.form(
  5242. "思维导图",
  5243. $$("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"
  5244. "id": "mind",
  5245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5246. "onresize": function () { }
  5247. }, {
  5248. closecallback: function () { }
  5249. }, { "style": { "height": "36px" } }).form; //创建窗体
  5250. _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); } }
  5251. break;
  5252. case "doc":
  5253. // U.MD.D.I.isRoom();
  5254. _formdiv = new U.UF.UI.form(
  5255. "协同文档",
  5256. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5257. "id": "doc",
  5258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5259. "onresize": function () { }
  5260. }, {
  5261. closecallback: function () { }
  5262. }, { "style": { "height": "36px" } }).form; //创建窗体
  5263. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5264. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5265. // })
  5266. _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); } }
  5267. break;
  5268. case "studentStudy":
  5269. _formdiv = new U.UF.UI.form(
  5270. "课程中心",
  5271. $$("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
  5272. "id": "studentStudy",
  5273. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5274. "onresize": function () { }
  5275. }, {
  5276. closecallback: function () { }
  5277. }, { "style": { "height": "36px" } }).form; //创建窗体
  5278. _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); } }
  5279. break;
  5280. case "train": //好友打开
  5281. _formdiv = new U.UF.UI.form(
  5282. "训练平台",
  5283. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5284. "id": "train",
  5285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5286. "onresize": function () { }
  5287. }, {
  5288. closecallback: function () { }
  5289. }, { "style": { "height": "36px" } }).form; //创建窗体
  5290. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5291. break;
  5292. case "mindNetwork": //好友打开
  5293. _formdiv = new U.UF.UI.form(
  5294. "思维网格",
  5295. $$("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 }), {
  5296. "id": "mindNetwork",
  5297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5298. "onresize": function () { }
  5299. }, {
  5300. closecallback: function () { }
  5301. }, { "style": { "height": "36px" } }).form; //创建窗体
  5302. _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); } }
  5303. break;
  5304. case "studentClassRoom": //好友打开
  5305. _formdiv = new U.UF.UI.form(
  5306. "实时课堂",
  5307. $$("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 }), {
  5308. "id": "studentClassRoom",
  5309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5310. "onresize": function () { }
  5311. }, {
  5312. closecallback: function () { }
  5313. }, { "style": { "height": "36px" } }).form; //创建窗体
  5314. _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); } }
  5315. setTimeout(() => {
  5316. U.UF.F.windowZooming(_formdiv)
  5317. }, 0);
  5318. break;
  5319. }
  5320. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5321. switch (str) {
  5322. case "studnetProject": //好友打开
  5323. _formdiv = new U.UF.UI.form(
  5324. "我的项目",
  5325. $$("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 }), {
  5326. "id": "studnetProject",
  5327. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5328. "onresize": function () { }
  5329. }, {
  5330. closecallback: function () { }
  5331. }, { "style": { "height": "36px" } }).form; //创建窗体
  5332. _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); } }
  5333. break;
  5334. case "studentEvaluate": //好友打开
  5335. _formdiv = new U.UF.UI.form(
  5336. "我的评价",
  5337. $$("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 }), {
  5338. "id": "studentEvaluate",
  5339. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5340. "onresize": function () { }
  5341. }, {
  5342. closecallback: function () { }
  5343. }, { "style": { "height": "36px" } }).form; //创建窗体
  5344. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5345. break;
  5346. case "my":
  5347. _formdiv = new U.UF.UI.form(
  5348. "我的资料",
  5349. $$("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 }), {
  5350. "id": "my",
  5351. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5352. "onresize": function () { }
  5353. }, {
  5354. closecallback: function () { }
  5355. }, { "style": { "height": "36px" } }).form; //创建窗体
  5356. _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); } }
  5357. break;
  5358. case "program":
  5359. _formdiv = new U.UF.UI.form(
  5360. "编程平台",
  5361. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5362. "id": "program",
  5363. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5364. "onresize": function () { }
  5365. }, {
  5366. closecallback: function () { }
  5367. }, { "style": { "height": "36px" } }).form; //创建窗体
  5368. _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); } }
  5369. break;
  5370. case "library":
  5371. _formdiv = new U.UF.UI.form(
  5372. "素材库",
  5373. $$("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 }), {
  5374. "id": "library",
  5375. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5376. "onresize": function () { }
  5377. }, {
  5378. closecallback: function () { }
  5379. }, { "style": { "height": "36px" } }).form; //创建窗体
  5380. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5381. break;
  5382. case "whiteboard":
  5383. _formdiv = new U.UF.UI.form(
  5384. "电子白板",
  5385. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5386. "id": "whiteboard",
  5387. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5388. "onresize": function () { }
  5389. }, {
  5390. closecallback: function () { }
  5391. }, { "style": { "height": "36px" } }).form; //创建窗体
  5392. _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); } }
  5393. break;
  5394. case "investigation":
  5395. _formdiv = new U.UF.UI.form(
  5396. "问卷调查",
  5397. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5398. "id": "investigation",
  5399. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5400. "onresize": function () { }
  5401. }, {
  5402. closecallback: function () { }
  5403. }, { "style": { "height": "36px" } }).form; //创建窗体
  5404. _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); } }
  5405. break;
  5406. case "note":
  5407. _formdiv = new U.UF.UI.form(
  5408. "便签分类",
  5409. $$("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 }), {
  5410. "id": "note",
  5411. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5412. "onresize": function () { }
  5413. }, {
  5414. closecallback: function () { }
  5415. }, { "style": { "height": "36px" } }).form; //创建窗体
  5416. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5417. break;
  5418. // case "score":
  5419. // _formdiv = new U.UF.UI.form(
  5420. // "量规评分",
  5421. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5422. // "id": "score",
  5423. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5424. // "onresize": function() {}
  5425. // }, {
  5426. // closecallback: function() {}
  5427. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5428. // _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); } }
  5429. // break;
  5430. case "mind":
  5431. _formdiv = new U.UF.UI.form(
  5432. "思维导图",
  5433. $$("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"
  5434. "id": "mind",
  5435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5436. "onresize": function () { }
  5437. }, {
  5438. closecallback: function () { }
  5439. }, { "style": { "height": "36px" } }).form; //创建窗体
  5440. _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); } }
  5441. break;
  5442. case "doc":
  5443. // U.MD.D.I.isRoom();
  5444. _formdiv = new U.UF.UI.form(
  5445. "协同文档",
  5446. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5447. "id": "doc",
  5448. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5449. "onresize": function () { }
  5450. }, {
  5451. closecallback: function () { }
  5452. }, { "style": { "height": "36px" } }).form; //创建窗体
  5453. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5454. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5455. })
  5456. _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); } }
  5457. break;
  5458. case "train": //好友打开
  5459. _formdiv = new U.UF.UI.form(
  5460. "训练平台",
  5461. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5462. "id": "train",
  5463. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5464. "onresize": function () { }
  5465. }, {
  5466. closecallback: function () { }
  5467. }, { "style": { "height": "36px" } }).form; //创建窗体
  5468. _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); } }
  5469. break;
  5470. case "studentStudy":
  5471. _formdiv = new U.UF.UI.form(
  5472. "课程中心",
  5473. $$("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
  5474. "id": "studentStudy",
  5475. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5476. "onresize": function () { }
  5477. }, {
  5478. closecallback: function () { }
  5479. }, { "style": { "height": "36px" } }).form; //创建窗体
  5480. _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); } }
  5481. break;
  5482. case "mindNetwork": //好友打开
  5483. _formdiv = new U.UF.UI.form(
  5484. "思维网格",
  5485. $$("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 }), {
  5486. "id": "mindNetwork",
  5487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5488. "onresize": function () { }
  5489. }, {
  5490. closecallback: function () { }
  5491. }, { "style": { "height": "36px" } }).form; //创建窗体
  5492. _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); } }
  5493. break;
  5494. case "studentClassRoom": //好友打开
  5495. _formdiv = new U.UF.UI.form(
  5496. "实时课堂",
  5497. $$("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 }), {
  5498. "id": "studentClassRoom",
  5499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //创建窗体
  5504. _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); } }
  5505. setTimeout(() => {
  5506. U.UF.F.windowZooming(_formdiv)
  5507. }, 0);
  5508. break;
  5509. }
  5510. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5511. //选择应用处理
  5512. switch (str) {
  5513. case "project": //好友打开
  5514. _formdiv = new U.UF.UI.form(
  5515. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5516. $$("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 }), {
  5517. "id": "project",
  5518. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5519. "onresize": function () { }
  5520. }, {
  5521. closecallback: function () { }
  5522. }, { "style": { "height": "36px" } }).form; //创建窗体
  5523. _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); } }
  5524. break;
  5525. case "student":
  5526. _formdiv = new U.UF.UI.form(
  5527. "学生管理",
  5528. $$("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 }), {
  5529. "id": "student",
  5530. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5531. "onresize": function () { }
  5532. }, {
  5533. closecallback: function () { }
  5534. }, { "style": { "height": "36px" } }).form; //创建窗体
  5535. _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); } }
  5536. break;
  5537. case "evaluate":
  5538. _formdiv = new U.UF.UI.form(
  5539. "学生评价",
  5540. $$("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 }), {
  5541. "id": "evaluate",
  5542. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5543. "onresize": function () { }
  5544. }, {
  5545. closecallback: function () { }
  5546. }, { "style": { "height": "36px" } }).form; //创建窗体
  5547. _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); } }
  5548. break;
  5549. case "sys":
  5550. _formdiv = new U.UF.UI.form(
  5551. "目标管理",
  5552. $$("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 }), {
  5553. "id": "sys",
  5554. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5560. break;
  5561. case "courseDesign":
  5562. _formdiv = new U.UF.UI.form(
  5563. "项目设计",
  5564. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5565. "id": "courseDesign",
  5566. "style": { "width": "90%", "height": "90%", "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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5572. break;
  5573. case "program":
  5574. _formdiv = new U.UF.UI.form(
  5575. "编程平台",
  5576. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5577. "id": "program",
  5578. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5584. break;
  5585. case "class":
  5586. _formdiv = new U.UF.UI.form(
  5587. "班级管理",
  5588. $$("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 }), {
  5589. "id": "class",
  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/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5596. break;
  5597. case "Grade":
  5598. _formdiv = new U.UF.UI.form(
  5599. "年级管理",
  5600. $$("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 }), {
  5601. "id": "Grade",
  5602. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5603. "onresize": function () { }
  5604. }, {
  5605. closecallback: function () { }
  5606. }, { "style": { "height": "36px" } }).form; //创建窗体
  5607. _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); } }
  5608. break;
  5609. case "teacherOffice":
  5610. _formdiv = new U.UF.UI.form(
  5611. "教研室",
  5612. $$("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 }), {
  5613. "id": "teacherOffice",
  5614. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5615. "onresize": function () { }
  5616. }, {
  5617. closecallback: function () { }
  5618. }, { "style": { "height": "36px" } }).form; //创建窗体
  5619. _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); } }
  5620. break;
  5621. case "my":
  5622. _formdiv = new U.UF.UI.form(
  5623. "我的资料",
  5624. $$("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 }), {
  5625. "id": "my",
  5626. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5627. "onresize": function () { }
  5628. }, {
  5629. closecallback: function () { }
  5630. }, { "style": { "height": "36px" } }).form; //创建窗体
  5631. _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); } }
  5632. break;
  5633. case "notice":
  5634. _formdiv = new U.UF.UI.form(
  5635. "通知公告",
  5636. $$("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 }), {
  5637. "id": "notice",
  5638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5639. "onresize": function () { }
  5640. }, {
  5641. closecallback: function () { }
  5642. }, { "style": { "height": "36px" } }).form; //创建窗体
  5643. _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); } }
  5644. break;
  5645. case "library":
  5646. _formdiv = new U.UF.UI.form(
  5647. "素材库",
  5648. $$("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 }), {
  5649. "id": "library",
  5650. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5651. "onresize": function () { }
  5652. }, {
  5653. closecallback: function () { }
  5654. }, { "style": { "height": "36px" } }).form; //创建窗体
  5655. _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); } }
  5656. break;
  5657. case "whiteboard":
  5658. _formdiv = new U.UF.UI.form(
  5659. "电子白板",
  5660. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5661. "id": "whiteboard",
  5662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. _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); } }
  5668. break;
  5669. case "investigation":
  5670. _formdiv = new U.UF.UI.form(
  5671. "问卷调查",
  5672. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5673. "id": "investigation",
  5674. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5675. "onresize": function () { }
  5676. }, {
  5677. closecallback: function () { }
  5678. }, { "style": { "height": "36px" } }).form; //创建窗体
  5679. _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); } }
  5680. break;
  5681. case "note":
  5682. _formdiv = new U.UF.UI.form(
  5683. "便签分类",
  5684. $$("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 }), {
  5685. "id": "note",
  5686. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5687. "onresize": function () { }
  5688. }, {
  5689. closecallback: function () { }
  5690. }, { "style": { "height": "36px" } }).form; //创建窗体
  5691. _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); } }
  5692. break;
  5693. // case "score":
  5694. // _formdiv = new U.UF.UI.form(
  5695. // "量规评分",
  5696. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5697. // "id": "score",
  5698. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5699. // "onresize": function() {}
  5700. // }, {
  5701. // closecallback: function() {}
  5702. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5703. // _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); } }
  5704. // break;
  5705. case "mind":
  5706. _formdiv = new U.UF.UI.form(
  5707. "思维导图",
  5708. $$("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"
  5709. "id": "mind",
  5710. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5711. "onresize": function () { }
  5712. }, {
  5713. closecallback: function () { }
  5714. }, { "style": { "height": "36px" } }).form; //创建窗体
  5715. _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); } }
  5716. break;
  5717. case "doc":
  5718. // U.MD.D.I.isRoom();
  5719. _formdiv = new U.UF.UI.form(
  5720. "协同文档",
  5721. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5722. "id": "doc",
  5723. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5724. "onresize": function () { }
  5725. }, {
  5726. closecallback: function () { }
  5727. }, { "style": { "height": "36px" } }).form; //创建窗体
  5728. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5729. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5730. })
  5731. _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); } }
  5732. break;
  5733. case "study":
  5734. _formdiv = new U.UF.UI.form(
  5735. "课程中心",
  5736. $$("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
  5737. "id": "study",
  5738. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. _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); } }
  5744. break;
  5745. case "mindNetwork": //好友打开
  5746. _formdiv = new U.UF.UI.form(
  5747. "思维网格",
  5748. $$("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 }), {
  5749. "id": "mindNetwork",
  5750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _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); } }
  5756. break;
  5757. case "train": //好友打开
  5758. _formdiv = new U.UF.UI.form(
  5759. "训练平台",
  5760. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5761. "id": "mindNetwork",
  5762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. _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); } }
  5768. break;
  5769. case "teacherClassRoom": //好友打开
  5770. _formdiv = new U.UF.UI.form(
  5771. "实时课堂",
  5772. $$("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 }), {
  5773. "id": "teacherClassRoom",
  5774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. _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); } }
  5780. setTimeout(() => {
  5781. U.UF.F.windowZooming(_formdiv)
  5782. }, 0);
  5783. break;
  5784. }
  5785. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5786. switch (str) {
  5787. case "project": //好友打开
  5788. _formdiv = new U.UF.UI.form(
  5789. "课程管理",
  5790. $$("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 }), {
  5791. "id": "project",
  5792. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5793. "onresize": function () { }
  5794. }, {
  5795. closecallback: function () { }
  5796. }, { "style": { "height": "36px" } }).form; //创建窗体
  5797. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5798. break;
  5799. case "evaluate":
  5800. _formdiv = new U.UF.UI.form(
  5801. "学生评价",
  5802. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5803. "id": "evaluate",
  5804. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5805. "onresize": function () { }
  5806. }, {
  5807. closecallback: function () { }
  5808. }, { "style": { "height": "36px" } }).form; //创建窗体
  5809. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5810. break;
  5811. case "notice":
  5812. _formdiv = new U.UF.UI.form(
  5813. "通知公告",
  5814. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5815. "id": "notice",
  5816. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5817. "onresize": function () { }
  5818. }, {
  5819. closecallback: function () { }
  5820. }, { "style": { "height": "36px" } }).form; //创建窗体
  5821. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5822. break;
  5823. case "stuLibrary":
  5824. _formdiv = new U.UF.UI.form(
  5825. "学习资料",
  5826. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  5827. "id": "stuLibrary",
  5828. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5834. break;
  5835. case "program":
  5836. _formdiv = new U.UF.UI.form(
  5837. "编程平台",
  5838. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5839. "id": "program",
  5840. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //创建窗体
  5845. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5846. break;
  5847. case "whiteboard":
  5848. _formdiv = new U.UF.UI.form(
  5849. "电子白板",
  5850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5851. "id": "whiteboard",
  5852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5858. break;
  5859. case "investigation":
  5860. _formdiv = new U.UF.UI.form(
  5861. "问卷调查",
  5862. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5863. "id": "investigation",
  5864. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5865. "onresize": function () { }
  5866. }, {
  5867. closecallback: function () { }
  5868. }, { "style": { "height": "36px" } }).form; //创建窗体
  5869. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5870. break;
  5871. case "mind":
  5872. _formdiv = new U.UF.UI.form(
  5873. "思维导图",
  5874. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5875. "id": "mind",
  5876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5877. "onresize": function () { }
  5878. }, {
  5879. closecallback: function () { }
  5880. }, { "style": { "height": "36px" } }).form; //创建窗体
  5881. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5882. break;
  5883. case "doc":
  5884. // U.MD.D.I.isRoom();
  5885. _formdiv = new U.UF.UI.form(
  5886. "协同文档",
  5887. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5888. "id": "doc",
  5889. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5890. "onresize": function () { }
  5891. }, {
  5892. closecallback: function () { }
  5893. }, { "style": { "height": "36px" } }).form; //创建窗体
  5894. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5895. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5896. })
  5897. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/doc.png)" }, "name": "协同文档", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5898. break;
  5899. case "study":
  5900. _formdiv = new U.UF.UI.form(
  5901. "课程中心",
  5902. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5903. "id": "study",
  5904. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5905. "onresize": function () { }
  5906. }, {
  5907. closecallback: function () { }
  5908. }, { "style": { "height": "36px" } }).form; //创建窗体
  5909. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5910. break;
  5911. case "mindNetwork": //好友打开
  5912. _formdiv = new U.UF.UI.form(
  5913. "思维网格",
  5914. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5915. "id": "mindNetwork",
  5916. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5917. "onresize": function () { }
  5918. }, {
  5919. closecallback: function () { }
  5920. }, { "style": { "height": "36px" } }).form; //创建窗体
  5921. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5922. break;
  5923. case "train": //好友打开
  5924. _formdiv = new U.UF.UI.form(
  5925. "训练平台",
  5926. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5927. "id": "train",
  5928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5929. "onresize": function () { }
  5930. }, {
  5931. closecallback: function () { }
  5932. }, { "style": { "height": "36px" } }).form; //创建窗体
  5933. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5934. break;
  5935. case "sys":
  5936. _formdiv = new U.UF.UI.form(
  5937. "目标管理",
  5938. $$("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 }), {
  5939. "id": "sys",
  5940. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5941. "onresize": function () { }
  5942. }, {
  5943. closecallback: function () { }
  5944. }, { "style": { "height": "36px" } }).form; //创建窗体
  5945. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5946. break;
  5947. case "courseDesign":
  5948. _formdiv = new U.UF.UI.form(
  5949. "项目设计",
  5950. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5951. "id": "courseDesign",
  5952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5953. "onresize": function () { }
  5954. }, {
  5955. closecallback: function () { }
  5956. }, { "style": { "height": "36px" } }).form; //创建窗体
  5957. _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); } }
  5958. break;
  5959. }
  5960. } else if (!_type) {
  5961. switch (str) {
  5962. case "my":
  5963. _formdiv = new U.UF.UI.form(
  5964. "我的资料",
  5965. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5966. "id": "my",
  5967. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5973. break;
  5974. }
  5975. }
  5976. switch (str) {
  5977. // AIprogram2 AI体验 aihub.cocorobo.cn
  5978. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5979. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5980. case "formulaEdi": //公式编辑
  5981. _formdiv = new U.UF.UI.form(
  5982. "公式编辑",
  5983. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5984. "id": "formulaEdi",
  5985. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. _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); } }
  5991. break;
  5992. case "molStr": //分子结构
  5993. _formdiv = new U.UF.UI.form(
  5994. "分子结构",
  5995. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5996. "id": "molStr",
  5997. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5998. "onresize": function () { }
  5999. }, {
  6000. closecallback: function () { }
  6001. }, { "style": { "height": "36px" } }).form; //创建窗体
  6002. _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); } }
  6003. break;
  6004. case "timeAxis": //时间轴
  6005. _formdiv = new U.UF.UI.form(
  6006. "时间轴",
  6007. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6008. "id": "timeAxis",
  6009. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6010. "onresize": function () { }
  6011. }, {
  6012. closecallback: function () { }
  6013. }, { "style": { "height": "36px" } }).form; //创建窗体
  6014. _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); } }
  6015. break;
  6016. case "AIprogram2": //AI体验
  6017. _formdiv = new U.UF.UI.form(
  6018. "AI体验",
  6019. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6020. "id": "AIprogram2",
  6021. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6022. "onresize": function () { }
  6023. }, {
  6024. closecallback: function () { }
  6025. }, { "style": { "height": "36px" } }).form; //创建窗体
  6026. _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); } }
  6027. break;
  6028. case "Pythonprogram": //python编程
  6029. _formdiv = new U.UF.UI.form(
  6030. "Python编程",
  6031. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6032. "id": "Pythonprogram",
  6033. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6034. "onresize": function () { }
  6035. }, {
  6036. closecallback: function () { }
  6037. }, { "style": { "height": "36px" } }).form; //创建窗体
  6038. _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); } }
  6039. break;
  6040. case "AIprogram": //ai编程
  6041. _formdiv = new U.UF.UI.form(
  6042. "AI编程平台",
  6043. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6044. "id": "AIprogram",
  6045. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6046. "onresize": function () { }
  6047. }, {
  6048. closecallback: function () { }
  6049. }, { "style": { "height": "36px" } }).form; //创建窗体
  6050. _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); } }
  6051. break;
  6052. case "CocoPi": //CocoPi
  6053. _formdiv = new U.UF.UI.form(
  6054. "CocoPi",
  6055. $$("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" }), {
  6056. "id": "CocoPi",
  6057. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6058. "onresize": function () { }
  6059. }, {
  6060. closecallback: function () { }
  6061. }, { "style": { "height": "36px" } }).form; //创建窗体
  6062. _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); } }
  6063. break;
  6064. case "Wood": //Wood
  6065. _formdiv = new U.UF.UI.form(
  6066. "海龟编程",
  6067. $$("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/" }), {
  6068. "id": "Wood",
  6069. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6070. "onresize": function () { }
  6071. }, {
  6072. closecallback: function () { }
  6073. }, { "style": { "height": "36px" } }).form; //创建窗体
  6074. _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); } }
  6075. break;
  6076. case "car": //模拟驾驶
  6077. _formdiv = new U.UF.UI.form(
  6078. "模拟驾驶",
  6079. $$("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/" }), {
  6080. "id": "car",
  6081. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. _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); } }
  6087. break;
  6088. case "lineSearch": //路径搜索
  6089. _formdiv = new U.UF.UI.form(
  6090. "路径搜索",
  6091. $$("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/" }), {
  6092. "id": "lineSearch",
  6093. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //创建窗体
  6098. _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); } }
  6099. break;
  6100. case "deepLearning": //深度学习
  6101. _formdiv = new U.UF.UI.form(
  6102. "深度学习",
  6103. $$("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/#" }), {
  6104. "id": "deepLearning",
  6105. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, { "style": { "height": "36px" } }).form; //创建窗体
  6110. _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); } }
  6111. break;
  6112. case "allHistory": //深度学习
  6113. _formdiv = new U.UF.UI.form(
  6114. "全历史",
  6115. $$("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/" }), {
  6116. "id": "allHistory",
  6117. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6118. "onresize": function () { }
  6119. }, {
  6120. closecallback: function () { }
  6121. }, { "style": { "height": "36px" } }).form; //创建窗体
  6122. _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); } }
  6123. break;
  6124. case "chatPDF": //ai编程
  6125. _formdiv = new U.UF.UI.form(
  6126. "chatPDF",
  6127. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6128. "id": "chatPDF",
  6129. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6130. "onresize": function () { }
  6131. }, {
  6132. closecallback: function () { }
  6133. }, { "style": { "height": "36px" } }).form; //创建窗体
  6134. _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); } }
  6135. break;
  6136. case "resources": //国家教育
  6137. _formdiv = new U.UF.UI.form(
  6138. "国家教育",
  6139. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6140. "id": "resources",
  6141. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6142. "onresize": function () { }
  6143. }, {
  6144. closecallback: function () { }
  6145. }, { "style": { "height": "36px" } }).form; //创建窗体
  6146. _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); } }
  6147. break;
  6148. case "codeEdit": //源码编辑
  6149. _formdiv = new U.UF.UI.form(
  6150. "源码编辑",
  6151. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6152. "id": "codeEdit",
  6153. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6154. "onresize": function () { }
  6155. }, {
  6156. closecallback: function () { }
  6157. }, { "style": { "height": "36px" } }).form; //创建窗体
  6158. _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); } }
  6159. break; //
  6160. case "MindMap": //MindMap
  6161. _formdiv = new U.UF.UI.form(
  6162. "MindMap",
  6163. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6164. "id": "MindMap",
  6165. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6166. "onresize": function () { }
  6167. }, {
  6168. closecallback: function () { }
  6169. }, { "style": { "height": "36px" } }).form; //创建窗体
  6170. _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); } }
  6171. break;
  6172. case "netWorkPanel": //netWorkPanel
  6173. _formdiv = new U.UF.UI.form(
  6174. "netWorkPanel",
  6175. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6176. "id": "netWorkPanel",
  6177. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6178. "onresize": function () { }
  6179. }, {
  6180. closecallback: function () { }
  6181. }, { "style": { "height": "36px" } }).form; //创建窗体
  6182. _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); } }
  6183. break;
  6184. case "GeoGebra": //GeoGebra
  6185. _formdiv = new U.UF.UI.form(
  6186. "GeoGebra",
  6187. $$("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" }), {
  6188. "id": "GeoGebra",
  6189. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6190. "onresize": function () { }
  6191. }, {
  6192. closecallback: function () { }
  6193. }, { "style": { "height": "36px" } }).form; //创建窗体
  6194. _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); } }
  6195. break;
  6196. case "translation": //翻译
  6197. _formdiv = new U.UF.UI.form(
  6198. "翻译",
  6199. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6200. "id": "translation",
  6201. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6202. "onresize": function () { }
  6203. }, {
  6204. closecallback: function () { }
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. _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); } }
  6207. break;
  6208. case "mohe": //魔盒
  6209. _formdiv = new U.UF.UI.form(
  6210. "魔盒识字",
  6211. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6212. "id": "mohe",
  6213. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6214. "onresize": function () { }
  6215. }, {
  6216. closecallback: function () { }
  6217. }, { "style": { "height": "36px" } }).form; //创建窗体
  6218. _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); } }
  6219. break;
  6220. case "24game": //24点
  6221. _formdiv = new U.UF.UI.form(
  6222. "24点",
  6223. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6224. "id": "24game",
  6225. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6226. "onresize": function () { }
  6227. }, {
  6228. closecallback: function () { }
  6229. }, { "style": { "height": "36px" } }).form; //创建窗体
  6230. _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); } }
  6231. break;
  6232. case "case":
  6233. _formdiv = new U.UF.UI.form(
  6234. "课程进展",
  6235. $$("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 }), {
  6236. "id": "case",
  6237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6238. "onresize": function () { }
  6239. }, {
  6240. closecallback: function () { }
  6241. }, { "style": { "height": "36px" } }).form; //创建窗体
  6242. _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); } }
  6243. break;
  6244. case "snf":
  6245. _formdiv = new U.UF.UI.form(
  6246. "赛诺梵",
  6247. $$("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" }), {
  6248. "id": "snf",
  6249. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6250. "onresize": function () { }
  6251. }, {
  6252. closecallback: function () { }
  6253. }, { "style": { "height": "36px" } }).form; //创建窗体
  6254. _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); } }
  6255. break;
  6256. case "hanFamily":
  6257. _formdiv = new U.UF.UI.form(
  6258. "汉字家族",
  6259. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6260. "id": "hanFamily",
  6261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6262. "onresize": function () { }
  6263. }, {
  6264. closecallback: function () { }
  6265. }, { "style": { "height": "36px" } }).form; //创建窗体
  6266. _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); } }
  6267. break;
  6268. case "hanClassics":
  6269. _formdiv = new U.UF.UI.form(
  6270. "国学经典",
  6271. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6272. "id": "hanClassics",
  6273. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6274. "onresize": function () { }
  6275. }, {
  6276. closecallback: function () { }
  6277. }, { "style": { "height": "36px" } }).form; //创建窗体
  6278. _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); } }
  6279. break;
  6280. case "hanTraining":
  6281. _formdiv = new U.UF.UI.form(
  6282. "笔画训练",
  6283. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6284. "id": "hanTraining",
  6285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6286. "onresize": function () { }
  6287. }, {
  6288. closecallback: function () { }
  6289. }, { "style": { "height": "36px" } }).form; //创建窗体
  6290. _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); } }
  6291. break;
  6292. case "hanClass":
  6293. _formdiv = new U.UF.UI.form(
  6294. "书法课堂",
  6295. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6296. "id": "hanClass",
  6297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6298. "onresize": function () { }
  6299. }, {
  6300. closecallback: function () { }
  6301. }, { "style": { "height": "36px" } }).form; //创建窗体
  6302. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6303. break;
  6304. case "han":
  6305. _formdiv = new U.UF.UI.form(
  6306. "汉字宫",
  6307. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6308. "id": "han",
  6309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6310. "onresize": function () { }
  6311. }, {
  6312. closecallback: function () { }
  6313. }, { "style": { "height": "36px" } }).form; //创建窗体
  6314. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6315. break;
  6316. case "projectGM": //课程管理
  6317. _formdiv = new U.UF.UI.form(
  6318. "课程管理",
  6319. $$("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 }), {
  6320. "id": "projectGM",
  6321. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6322. "onresize": function () { }
  6323. }, {
  6324. closecallback: function () { }
  6325. }, { "style": { "height": "36px" } }).form; //创建窗体
  6326. _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); } }
  6327. break;
  6328. case "studyGM": //课程中心
  6329. _formdiv = new U.UF.UI.form(
  6330. "课程中心",
  6331. $$("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
  6332. "id": "study",
  6333. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6334. "onresize": function () { }
  6335. }, {
  6336. closecallback: function () { }
  6337. }, { "style": { "height": "36px" } }).form; //创建窗体
  6338. _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); } }
  6339. break;
  6340. // studentGM
  6341. case "studentGM": //学生管理
  6342. _formdiv = new U.UF.UI.form(
  6343. "学生管理",
  6344. $$("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 }), {
  6345. "id": "studentGM",
  6346. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6347. "onresize": function () { }
  6348. }, {
  6349. closecallback: function () { }
  6350. }, { "style": { "height": "36px" } }).form; //创建窗体
  6351. _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); } }
  6352. break;
  6353. case "evaluateGM": //学生评价
  6354. _formdiv = new U.UF.UI.form(
  6355. "学生评价",
  6356. $$("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 }), {
  6357. "id": "evaluateGM",
  6358. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6359. "onresize": function () { }
  6360. }, {
  6361. closecallback: function () { }
  6362. }, { "style": { "height": "36px" } }).form; //创建窗体
  6363. _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); } }
  6364. break;
  6365. // classGM
  6366. case "classGM": //班级管理
  6367. _formdiv = new U.UF.UI.form(
  6368. "班级管理",
  6369. $$("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 }), {
  6370. "id": "classGM",
  6371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6372. "onresize": function () { }
  6373. }, {
  6374. closecallback: function () { }
  6375. }, { "style": { "height": "36px" } }).form; //创建窗体
  6376. _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); } }
  6377. break;
  6378. // dataGM
  6379. case "dataGM":
  6380. _formdiv = new U.UF.UI.form(
  6381. "我的资料",
  6382. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  6383. "id": "dataGM",
  6384. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6385. "onresize": function () { }
  6386. }, {
  6387. closecallback: function () { }
  6388. }, { "style": { "height": "36px" } }).form; //创建窗体
  6389. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6390. break;
  6391. // caseGM
  6392. case "caseGM": //课程进展
  6393. _formdiv = new U.UF.UI.form(
  6394. "课程进展",
  6395. $$("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 }), {
  6396. "id": "caseGM",
  6397. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6398. "onresize": function () { }
  6399. }, {
  6400. closecallback: function () { }
  6401. }, { "style": { "height": "36px" } }).form; //创建窗体
  6402. _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); } }
  6403. break;
  6404. // meterialGM
  6405. case "meterialGM": //素材库
  6406. _formdiv = new U.UF.UI.form(
  6407. "素材库",
  6408. $$("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 }), {
  6409. "id": "meterialGM",
  6410. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6411. "onresize": function () { }
  6412. }, {
  6413. closecallback: function () { }
  6414. }, { "style": { "height": "36px" } }).form; //创建窗体
  6415. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6416. break;
  6417. // evaluateSGM
  6418. case "evaluateSGM": //我的评价
  6419. _formdiv = new U.UF.UI.form(
  6420. "我的评价",
  6421. $$("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 }), {
  6422. "id": "evaluateSGM",
  6423. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6424. "onresize": function () { }
  6425. }, {
  6426. closecallback: function () { }
  6427. }, { "style": { "height": "36px" } }).form; //创建窗体
  6428. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6429. break;
  6430. case "jupyter": //jupyter
  6431. _formdiv = new U.UF.UI.form(
  6432. "jupyter",
  6433. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6434. "id": "jupyter",
  6435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6436. "onresize": function () { }
  6437. }, {
  6438. closecallback: function () { }
  6439. }, { "style": { "height": "36px" } }).form; //创建窗体
  6440. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6441. break;
  6442. case "number": //数字实验室
  6443. _formdiv = new U.UF.UI.form(
  6444. "数字实验室",
  6445. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6446. "id": "number",
  6447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6448. "onresize": function () { }
  6449. }, {
  6450. closecallback: function () { }
  6451. }, { "style": { "height": "36px" } }).form; //创建窗体
  6452. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6453. break;
  6454. case "studentCourse": //项目管理 学生
  6455. _formdiv = new U.UF.UI.form(
  6456. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6457. $$("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 }), {
  6458. "id": "studentCourse",
  6459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6460. "onresize": function () { }
  6461. }, {
  6462. closecallback: function () { }
  6463. }, { "style": { "height": "36px" } }).form; //创建窗体
  6464. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6465. break;
  6466. case "studentCourseS": //项目管理 老师
  6467. _formdiv = new U.UF.UI.form(
  6468. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6469. $$("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 }), {
  6470. "id": "studentCourseS",
  6471. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6472. "onresize": function () { }
  6473. }, {
  6474. closecallback: function () { }
  6475. }, { "style": { "height": "36px" } }).form; //创建窗体
  6476. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6477. break;
  6478. case "studentIndex": //项目中心
  6479. _formdiv = new U.UF.UI.form(
  6480. "项目中心",
  6481. $$("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 }), {
  6482. "id": "studentIndex",
  6483. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6484. "onresize": function () { }
  6485. }, {
  6486. closecallback: function () { }
  6487. }, { "style": { "height": "36px" } }).form; //创建窗体
  6488. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6489. break;
  6490. case "CaseDesignS":
  6491. _formdiv = new U.UF.UI.form(
  6492. "项目进展",
  6493. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6494. "id": "case",
  6495. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6496. "onresize": function () { }
  6497. }, {
  6498. closecallback: function () { }
  6499. }, { "style": { "height": "36px" } }).form; //创建窗体
  6500. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6501. break;
  6502. case "tcStudent": //腾讯学生管理
  6503. _formdiv = new U.UF.UI.form(
  6504. "学生管理",
  6505. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6506. "id": "tcStudent",
  6507. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6508. "onresize": function () { }
  6509. }, {
  6510. closecallback: function () { }
  6511. }, { "style": { "height": "36px" } }).form; //创建窗体
  6512. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6513. break;
  6514. case "tcSchool": //腾讯学校管理
  6515. _formdiv = new U.UF.UI.form(
  6516. "学校管理",
  6517. $$("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 }), {
  6518. "id": "tcSchool",
  6519. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6520. "onresize": function () { }
  6521. }, {
  6522. closecallback: function () { }
  6523. }, { "style": { "height": "36px" } }).form; //创建窗体
  6524. _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); } }
  6525. break;
  6526. case "tcTeacher": //腾讯学校管理
  6527. _formdiv = new U.UF.UI.form(
  6528. "教师管理",
  6529. $$("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 }), {
  6530. "id": "tcTeacher",
  6531. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6532. "onresize": function () { }
  6533. }, {
  6534. closecallback: function () { }
  6535. }, { "style": { "height": "36px" } }).form; //创建窗体
  6536. _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); } }
  6537. break;
  6538. case "teacher":
  6539. _formdiv = new U.UF.UI.form(
  6540. "教师管理",
  6541. $$("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 }), {
  6542. "id": "teacher",
  6543. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6544. "onresize": function () { }
  6545. }, {
  6546. closecallback: function () { }
  6547. }, { "style": { "height": "36px" } }).form; //创建窗体
  6548. _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); } }
  6549. break;
  6550. case "tcData": //腾讯我的资料
  6551. _formdiv = new U.UF.UI.form(
  6552. "我的资料",
  6553. $$("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 }), {
  6554. "id": "tcData",
  6555. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6556. "onresize": function () { }
  6557. }, {
  6558. closecallback: function () { }
  6559. }, { "style": { "height": "36px" } }).form; //创建窗体
  6560. _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); } }
  6561. break;
  6562. case "tcNotice": //腾讯消息通知
  6563. _formdiv = new U.UF.UI.form(
  6564. "消息通知",
  6565. $$("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 }), {
  6566. "id": "tcNotice",
  6567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6568. "onresize": function () { }
  6569. }, {
  6570. closecallback: function () { }
  6571. }, { "style": { "height": "36px" } }).form; //创建窗体
  6572. _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); } }
  6573. break;
  6574. case "myReport": //好友打开
  6575. _formdiv = new U.UF.UI.form(
  6576. "我的评价",
  6577. $$("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 }), {
  6578. "id": "myReport",
  6579. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6580. "onresize": function () { }
  6581. }, {
  6582. closecallback: function () { }
  6583. }, { "style": { "height": "36px" } }).form; //创建窗体
  6584. _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); } }
  6585. break;
  6586. case "learnAna": //好友打开
  6587. _formdiv = new U.UF.UI.form(
  6588. "学习分析",
  6589. $$("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 }), {
  6590. "id": "learnAna",
  6591. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6592. "onresize": function () { }
  6593. }, {
  6594. closecallback: function () { }
  6595. }, { "style": { "height": "36px" } }).form; //创建窗体
  6596. _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); } }
  6597. break;
  6598. case "AIChat": //AI共创
  6599. _formdiv = new U.UF.UI.form(
  6600. "AI共创",
  6601. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6602. "id": "AIChat",
  6603. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6604. "onresize": function () { }
  6605. }, {
  6606. istop: true,
  6607. closecallback: function () { $("#aichat_icon").remove(); },
  6608. narrowcallback: function () {
  6609. if (!$("#aichat_icon")[0]) {
  6610. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6611. }
  6612. },
  6613. }, { "style": { "height": "36px" } }).form; //创建窗体
  6614. _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); } }
  6615. break;
  6616. case "ainew": //AI共创
  6617. _formdiv = new U.UF.UI.form(
  6618. "AI协同",
  6619. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6620. "id": "ainew",
  6621. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6622. "onresize": function () { }
  6623. }, {
  6624. closecallback: function () { }
  6625. }, { "style": { "height": "36px" } }).form; //创建窗体
  6626. _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); } }
  6627. break;
  6628. case "gpt4": //gpt4
  6629. _formdiv = new U.UF.UI.form(
  6630. "AI助手",
  6631. $$("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 }), {
  6632. "id": "gpt4",
  6633. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6634. "onresize": function () { }
  6635. }, {
  6636. closecallback: function () { }
  6637. }, { "style": { "height": "36px" } }).form; //创建窗体
  6638. _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); } }
  6639. break;
  6640. case "aigpt": //gpt4
  6641. _formdiv = new U.UF.UI.form(
  6642. "AI助手+",
  6643. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6644. "id": "aigpt",
  6645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6646. "onresize": function () { }
  6647. }, {
  6648. closecallback: function () {
  6649. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6650. }
  6651. }, { "style": { "height": "36px" } }).form; //创建窗体
  6652. _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); } }
  6653. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6654. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6655. })
  6656. break;
  6657. case "aiKnowledge": //aiKnowledge
  6658. _formdiv = new U.UF.UI.form(
  6659. "知识建构",
  6660. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6661. "id": "aiKnowledge",
  6662. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6663. "onresize": function () { }
  6664. }, {
  6665. closecallback: function () { }
  6666. }, { "style": { "height": "36px" } }).form; //创建窗体
  6667. _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); } }
  6668. break;
  6669. case "futureClass": //AI共创
  6670. _formdiv = new U.UF.UI.form(
  6671. "协同建构",
  6672. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/synergyCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {//https://beta.cscl.cocorobo.cn
  6673. "id": "synergyCourse",
  6674. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6675. "onresize": function () { }
  6676. }, {
  6677. closecallback: function () {
  6678. $("iframe", _formdiv)[0].contentWindow.loginout();
  6679. }
  6680. }, { "style": { "height": "36px" } }).form; //创建窗体
  6681. _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); } }
  6682. break;
  6683. case "aiagent": //ai agent
  6684. _formdiv = new U.UF.UI.form(
  6685. "AI Agent",
  6686. $$("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" }), {
  6687. "id": "AIAgent",
  6688. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6694. break;
  6695. case "dataBoard": //数据看板
  6696. _formdiv = new U.UF.UI.form(
  6697. "数据看板",
  6698. $$("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 }), {
  6699. "id": "dataBoard",
  6700. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6706. break;
  6707. case "dataBoardSies": //数据融合
  6708. _formdiv = new U.UF.UI.form(
  6709. "数据融合",
  6710. $$("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 }), {
  6711. "id": "dataBoardSies",
  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/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6718. break;
  6719. case "dataBoardNew": //数据看板
  6720. _formdiv = new U.UF.UI.form(
  6721. "综合看板",
  6722. $$("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 }), {
  6723. "id": "dataBoardNew",
  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/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6730. break;
  6731. case "dataBoardTest": //数据看板
  6732. _formdiv = new U.UF.UI.form(
  6733. "评测看板",
  6734. $$("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 }), {
  6735. "id": "dataBoardTest",
  6736. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //创建窗体
  6741. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6742. break;
  6743. case "AIAnalyse": //AI共创
  6744. _formdiv = new U.UF.UI.form(
  6745. "AI分析",
  6746. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6747. "id": "AIAnalyse",
  6748. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, { "style": { "height": "36px" } }).form; //创建窗体
  6753. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6754. break;
  6755. case "studioCourse": //AI共创
  6756. _formdiv = new U.UF.UI.form(
  6757. "工作管理",
  6758. $$("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 }), {
  6759. "id": "studioCourse",
  6760. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //创建窗体
  6765. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6766. break;
  6767. case "studioIndex": //AI共创
  6768. _formdiv = new U.UF.UI.form(
  6769. "工作中心",
  6770. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6771. "id": "studioIndex",
  6772. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () { }
  6776. }, { "style": { "height": "36px" } }).form; //创建窗体
  6777. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6778. break;
  6779. case "source":
  6780. _formdiv = new U.UF.UI.form(
  6781. "教学资源",
  6782. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6783. "id": "source",
  6784. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, { "style": { "height": "36px" } }).form; //创建窗体
  6789. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6790. break;
  6791. case "testTeacher":
  6792. _formdiv = new U.UF.UI.form(
  6793. "智能表单",
  6794. $$("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 }), {
  6795. "id": "testTeacher",
  6796. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, { "style": { "height": "36px" } }).form; //创建窗体
  6801. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6802. break;
  6803. case "testStudent":
  6804. _formdiv = new U.UF.UI.form(
  6805. "教师中心",
  6806. $$("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 }), {
  6807. "id": "testStudent",
  6808. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6809. "onresize": function () { }
  6810. }, {
  6811. closecallback: function () { }
  6812. }, { "style": { "height": "36px" } }).form; //创建窗体
  6813. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6814. break;
  6815. case "testTeacherSies":
  6816. _formdiv = new U.UF.UI.form(
  6817. "教师管理",
  6818. $$("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 }), {
  6819. "id": "testTeacherSies",
  6820. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //创建窗体
  6825. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6826. break;
  6827. case "testStudentSies":
  6828. _formdiv = new U.UF.UI.form(
  6829. "教师中心",
  6830. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/testPerson?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId + "&role=" + _role }), {
  6831. "id": "testStudentSies",
  6832. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //创建窗体
  6837. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6838. break;
  6839. case "ytpbl": //消息通知
  6840. _formdiv = new U.UF.UI.form(
  6841. "案例征集",
  6842. $$("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 }), {
  6843. "id": "ytpbl",
  6844. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //创建窗体
  6849. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6850. // 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");
  6851. break;
  6852. case "aiCourseResource": //人工智能窗体
  6853. _formdiv = new U.UF.UI.form(
  6854. false,
  6855. $$("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 }), {
  6856. "id": "aiCourseResource",
  6857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6858. "onresize": function () { },
  6859. "isdrag": false,
  6860. }, {
  6861. closecallback: function () { }
  6862. }, { "style": { "height": "36px" } }).form; //创建窗体
  6863. _taskbar = ''
  6864. break;
  6865. case "szdjgCocooroboX": //图形化编程
  6866. _formdiv = new U.UF.UI.form(
  6867. "图形化编程",
  6868. $$("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" }), {
  6869. "id": "szdjgCocooroboX",
  6870. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6871. "onresize": function () { }
  6872. }, {
  6873. closecallback: function () { }
  6874. }, { "style": { "height": "36px" } }).form; //创建窗体
  6875. _taskbar = ''
  6876. break;
  6877. case "szdjgPython": //python编程
  6878. _formdiv = new U.UF.UI.form(
  6879. "Python编程",
  6880. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  6881. "id": "szdjgPython",
  6882. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6883. "onresize": function () { }
  6884. }, {
  6885. closecallback: function () { }
  6886. }, { "style": { "height": "36px" } }).form; //创建窗体
  6887. _taskbar = ''
  6888. break;
  6889. case "Record":
  6890. _formdiv = new U.UF.UI.form(
  6891. "观察记录",
  6892. $$("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 }), {
  6893. "id": "Record",
  6894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6895. "onresize": function () { }
  6896. }, {
  6897. closecallback: function () { }
  6898. }, { "style": { "height": "36px" } }).form; //创建窗体
  6899. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6900. break;
  6901. case "aigptCourse":
  6902. _formdiv = new U.UF.UI.form(
  6903. "AI智能体",
  6904. $$("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' }), {
  6905. "id": "aigptCourse",
  6906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6907. "onresize": function () { }
  6908. }, {
  6909. closecallback: function () { }
  6910. }, { "style": { "height": "36px" } }).form; //创建窗体
  6911. _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); } }
  6912. break;
  6913. case "classroomObservation":
  6914. _formdiv = new U.UF.UI.form(
  6915. "课堂观察",
  6916. $$("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 }), {
  6917. "id": "classroomObservation",
  6918. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6919. "onresize": function () { }
  6920. }, {
  6921. closecallback: function () { }
  6922. }, { "style": { "height": "36px" } }).form; //创建窗体
  6923. _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); } }
  6924. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6925. break;
  6926. case "pblCourse":
  6927. _formdiv = new U.UF.UI.form(
  6928. "学生PBL",
  6929. $$("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 }), {
  6930. "id": "pblCourse",
  6931. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6932. "onresize": function () { }
  6933. }, {
  6934. closecallback: function () { }
  6935. }, { "style": { "height": "36px" } }).form; //创建窗体
  6936. _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); } }
  6937. break;
  6938. case "appStore":
  6939. _formdiv = new U.UF.UI.form(
  6940. "CocoFlow",
  6941. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6942. "id": "appStore",
  6943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6944. "onresize": function () { }
  6945. }, {
  6946. closecallback: function () { }
  6947. }, { "style": { "height": "36px" } }).form; //创建窗体
  6948. _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); } }
  6949. break;
  6950. case "EDU":
  6951. _formdiv = new U.UF.UI.form(
  6952. "EDU",
  6953. $$("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" }), {
  6954. "id": "EDU",
  6955. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6956. "onresize": function () { }
  6957. }, {
  6958. closecallback: function () { }
  6959. }, { "style": { "height": "36px" } }).form; //创建窗体
  6960. _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); } }
  6961. break;
  6962. case "userExamine":
  6963. _formdiv = new U.UF.UI.form(
  6964. "账号申请",
  6965. $$("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" }), {
  6966. "id": "userExamine",
  6967. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  6968. "onresize": function () { }
  6969. }, {
  6970. closecallback: function () { }
  6971. }, { "style": { "height": "36px" } }).form; //创建窗体
  6972. break;
  6973. }
  6974. //U.MD.D.I.openClick(str);
  6975. //如果有任务栏信息
  6976. if (_taskbar) {
  6977. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6978. }
  6979. }
  6980. // U.MD.D.I.openClick = function(str){
  6981. // var click = '';
  6982. // switch(str){
  6983. // case 'friend':
  6984. // click = '我的好友';
  6985. // break;
  6986. // case 'domain':
  6987. // click = '域名管理';
  6988. // break;
  6989. // case 'disk':
  6990. // click = '我的云盘';
  6991. // break;
  6992. // case 'word':
  6993. // click = 'Word';
  6994. // break;
  6995. // case 'excel':
  6996. // click = 'Execl';
  6997. // break;
  6998. // case 'txt':
  6999. // click = '文本文件';
  7000. // break;
  7001. // case 'lookupFriend':
  7002. // click = '查找好友';
  7003. // break;
  7004. // case 'ftp':
  7005. // click = 'FTP';
  7006. // break;
  7007. // case 'group':
  7008. // click = '群组';
  7009. // break;
  7010. // case 'set':
  7011. // click = '我的设置';
  7012. // break;
  7013. // case 'systemSet':
  7014. // click = '系统设置';
  7015. // break;
  7016. // case 'boomYun':
  7017. // click = '互联办公';
  7018. // break;
  7019. // case 'xz':
  7020. // click = '云端下载';
  7021. // break;
  7022. // case 'client':
  7023. // click = '有思浏览器';
  7024. // break;
  7025. // case 'backEndProgramming':
  7026. // click = '在线后台编程';
  7027. // break;
  7028. // case 'frontEndProgramming':
  7029. // click = '在线前端编程';
  7030. // break;
  7031. // default: break;
  7032. // }
  7033. // if(U.MD.D.I.Ip && click){
  7034. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7035. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7036. // })
  7037. // }
  7038. // }
  7039. /**
  7040. *函数作用:ajax简易函数,使用post格式
  7041. *@param url {data} 后台地址
  7042. *@param data {data} 参数json
  7043. *@param fn {data} 回调函数
  7044. *
  7045. */
  7046. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7047. // var xhr = new XMLHttpRequest();
  7048. // xhr.open("GET",url,true);
  7049. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7050. // xhr.onreadystatechange = function(){
  7051. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7052. // fn.call(this,xhr.responseText);
  7053. // }
  7054. // };
  7055. // xhr.send();
  7056. // }
  7057. /*判断是否是内网IP*/
  7058. // U.MD.D.I.isInnerIPFn = function(str){
  7059. // var curPageUrl = str;
  7060. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7061. // curPageUrl =curPageUrl.replace(reg1,'');
  7062. // // console.log('curPageUrl-1 '+curPageUrl);
  7063. // var reg2 = /\:+/g;//替换冒号为一点
  7064. // curPageUrl =curPageUrl.replace(reg2,'.');
  7065. // // console.log('curPageUrl-2 '+curPageUrl);
  7066. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7067. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7068. // if(curPageUrl[2] != '16'){
  7069. // return ipAddress;
  7070. // }else{
  7071. // return false;
  7072. // }
  7073. // }
  7074. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7075. // //compatibility for firefox and chrome
  7076. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7077. // var pc = new myPeerConnection({
  7078. // iceServers: []
  7079. // }),
  7080. // noop = function() {},
  7081. // localIPs = {},
  7082. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7083. // key;
  7084. // function iterateIP(ip) {
  7085. // if (!localIPs[ip]) onNewIP(ip);
  7086. // localIPs[ip] = true;
  7087. // }
  7088. // //create a bogus data channel
  7089. // pc.createDataChannel("");
  7090. // // create offer and set local description
  7091. // pc.createOffer().then(function(sdp) {
  7092. // sdp.sdp.split('\n').forEach(function(line) {
  7093. // if (line.indexOf('candidate') < 0) return;
  7094. // line.match(ipRegex).forEach(iterateIP);
  7095. // });
  7096. // pc.setLocalDescription(sdp, noop, noop);
  7097. // }).catch(function(reason) {
  7098. // // An error occurred, so handle the failure to connect
  7099. // });
  7100. // //sten for candidate events
  7101. // pc.onicecandidate = function(ice) {
  7102. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7103. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7104. // };
  7105. // }
  7106. // U.MD.D.I.getUserIpBool = function(callback){
  7107. // U.MD.D.I.getUserIP(function(ip){
  7108. // alert("Got IP! :" + ip);
  7109. // });
  7110. //}
  7111. //#endregion
  7112. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7113. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7114. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7115. _userinfo = US.userInfo, //登录用户信息
  7116. _userid = US.userInfo.userid //登录用户id
  7117. let _iframe;
  7118. let _cid = cid,
  7119. _stage = stage,
  7120. _task = task,
  7121. _tool = tool;
  7122. var _jie = $$("div", {
  7123. "style": {
  7124. "position": "absolute",
  7125. "bottom": "50px",
  7126. "right": "50px",
  7127. "zIndex": "9999",
  7128. "backgroundColor": "#2268bc",
  7129. "color": "#fff",
  7130. "padding": "12px 20px",
  7131. "cursor": "pointer",
  7132. "borderRadius": "4px",
  7133. },
  7134. "innerHTML": "提交作业"
  7135. })
  7136. let aTool = ''
  7137. let _loading = document.createElement('div')
  7138. _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;"
  7139. // _loading.id = "";
  7140. let _lchild = document.createElement('div')
  7141. let _limg = document.createElement('img')
  7142. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7143. _limg.style = "width: 26px;margin-right: 10px;"
  7144. _lchild.appendChild(_limg)
  7145. let _lspan = document.createElement('span')
  7146. _lspan.innerHTML = "上传中..."
  7147. _lchild.appendChild(_lspan)
  7148. _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%);"
  7149. _loading.appendChild(_lchild)
  7150. var _box = $$('div', {
  7151. "style": {
  7152. "position": "relative",
  7153. "width": "100%",
  7154. "height": "100%",
  7155. },
  7156. })
  7157. _box.appendChild(_loading)
  7158. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7159. switch (str) {
  7160. case "whiteboard":
  7161. aTool = 1;
  7162. _iframe = $$("iframe", {
  7163. "frameborder": "no",
  7164. "border": "0",
  7165. "scrolling ": "no",
  7166. "style": {
  7167. "cssText": "border:0;width:100%;height:100%"
  7168. },
  7169. "src": "https://beta.iwb.cocorobo.cn/"
  7170. })
  7171. _box.appendChild(_iframe);
  7172. _box.appendChild(_jie);
  7173. _formdiv = new U.UF.UI.form(
  7174. "电子白板",
  7175. _box, {
  7176. "id": "whiteboard" + cid + stage + task + tool,
  7177. "style": {
  7178. "width": "90%",
  7179. "height": "90%",
  7180. "overflow": 'hidden'
  7181. },
  7182. "onresize": function () { }
  7183. }, {
  7184. closecallback: function () { }
  7185. }, {
  7186. "style": {
  7187. "height": "36px"
  7188. }
  7189. }).form; //创建窗体
  7190. _taskbar = {
  7191. "id": str + _formdiv.id,
  7192. "style": {
  7193. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7194. },
  7195. "name": "电子白板",
  7196. "forms": _formdiv,
  7197. "click": function () {
  7198. U.MD.D.I.openApplication(str, obj, info);
  7199. }
  7200. }
  7201. break;
  7202. case "mind":
  7203. aTool = 3;
  7204. _iframe = $$("iframe", {
  7205. "frameborder": "no",
  7206. "border": "0",
  7207. "scrolling ": "no",
  7208. "style": {
  7209. "cssText": "border:0;width:100%;height:100%"
  7210. },
  7211. "src": "/kityminder-editor/dist/index.html"
  7212. })
  7213. _box.appendChild(_iframe);
  7214. _box.appendChild(_jie);
  7215. _formdiv = new U.UF.UI.form(
  7216. "思维导图",
  7217. _box, { //"/jsmind/example/demo.html"
  7218. "id": "mind" + cid + stage + task + tool,
  7219. "style": {
  7220. "width": "90%",
  7221. "height": "90%",
  7222. "overflow": 'hidden'
  7223. },
  7224. "onresize": function () { }
  7225. }, {
  7226. closecallback: function () { }
  7227. }, {
  7228. "style": {
  7229. "height": "36px"
  7230. }
  7231. }).form; //创建窗体
  7232. _taskbar = {
  7233. "id": str + _formdiv.id,
  7234. "style": {
  7235. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7236. },
  7237. "name": "思维导图",
  7238. "forms": _formdiv,
  7239. "click": function () {
  7240. U.MD.D.I.openApplication(str, obj, info);
  7241. }
  7242. }
  7243. break;
  7244. case "MindMap":
  7245. aTool = 3;
  7246. _iframe = $$("iframe", {
  7247. "frameborder": "no",
  7248. "border": "0",
  7249. "scrolling ": "no",
  7250. "style": {
  7251. "cssText": "border:0;width:100%;height:100%"
  7252. },
  7253. "src": "//cloud.cocorobo.cn/mind/"
  7254. })
  7255. _box.appendChild(_iframe);
  7256. _box.appendChild(_jie);
  7257. _formdiv = new U.UF.UI.form(
  7258. "思维导图",
  7259. _box, { //"/jsmind/example/demo.html"
  7260. "id": "mind" + cid + stage + task + tool,
  7261. "style": {
  7262. "width": "90%",
  7263. "height": "90%",
  7264. "overflow": 'hidden'
  7265. },
  7266. "onresize": function () { }
  7267. }, {
  7268. closecallback: function () { }
  7269. }, {
  7270. "style": {
  7271. "height": "36px"
  7272. }
  7273. }).form; //创建窗体
  7274. _taskbar = {
  7275. "id": str + _formdiv.id,
  7276. "style": {
  7277. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7278. },
  7279. "name": "思维导图",
  7280. "forms": _formdiv,
  7281. "click": function () {
  7282. U.MD.D.I.openApplication(str, obj, info);
  7283. }
  7284. }
  7285. break;
  7286. case "doc":
  7287. aTool = 6;
  7288. _iframe = $$("iframe", {
  7289. "frameborder": "no",
  7290. "border": "0",
  7291. "scrolling ": "no",
  7292. "style": {
  7293. "cssText": "border:0;width:100%;height:100%"
  7294. },
  7295. "src": "/Office/Word/WordEditArea.htm"
  7296. })
  7297. _box.appendChild(_iframe);
  7298. _box.appendChild(_jie);
  7299. _formdiv = new U.UF.UI.form(
  7300. "协同文档",
  7301. _box, {
  7302. "id": "doc" + cid + stage + task + tool,
  7303. "style": {
  7304. "width": "90%",
  7305. "height": "90%",
  7306. "overflow": 'hidden'
  7307. },
  7308. "onresize": function () { }
  7309. }, {
  7310. closecallback: function () { }
  7311. }, {
  7312. "style": {
  7313. "height": "36px"
  7314. }
  7315. }).form; //创建窗体
  7316. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7317. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7318. })
  7319. _taskbar = {
  7320. "id": str + _formdiv.id,
  7321. "style": {
  7322. "backgroundImage": "url(/img/icon/doc.png)"
  7323. },
  7324. "name": "协同文档",
  7325. "forms": _formdiv,
  7326. "click": function () {
  7327. U.MD.D.I.openApplication(str, obj, info);
  7328. }
  7329. }
  7330. break;
  7331. case "mindNetwork": //好友打开
  7332. aTool = 7;
  7333. _iframe = $$("iframe", {
  7334. "webkitallowfullscreen": "",
  7335. "mozallowfullscreen": "",
  7336. "allowfullscreen": "",
  7337. "frameborder": "no",
  7338. "border": "0",
  7339. "scrolling ": "no",
  7340. "style": {
  7341. "cssText": "border:0; width:100%; height:100%;"
  7342. },
  7343. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7344. })
  7345. _box.appendChild(_iframe);
  7346. _box.appendChild(_jie);
  7347. _formdiv = new U.UF.UI.form(
  7348. "思维网格",
  7349. _box, {
  7350. "id": "mindNetwork" + cid + stage + task + tool,
  7351. "style": {
  7352. "width": "90%",
  7353. "height": "90%",
  7354. "overflow": 'hidden'
  7355. },
  7356. "onresize": function () { }
  7357. }, {
  7358. closecallback: function () { }
  7359. }, {
  7360. "style": {
  7361. "height": "36px"
  7362. }
  7363. }).form; //创建窗体
  7364. _taskbar = {
  7365. "id": str + _formdiv.id,
  7366. "style": {
  7367. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7368. },
  7369. "name": "思维网格",
  7370. "forms": _formdiv,
  7371. "click": function () {
  7372. U.MD.D.I.openApplication(str, obj, info);
  7373. }
  7374. }
  7375. break;
  7376. case "courseDesign":
  7377. _iframe = $$("iframe", {
  7378. "webkitallowfullscreen": "",
  7379. "mozallowfullscreen": "",
  7380. "allowfullscreen": "",
  7381. "frameborder": "no",
  7382. "border": "0",
  7383. "scrolling ": "no",
  7384. "style": {
  7385. "cssText": "border:0; width:100%; height:100%;"
  7386. },
  7387. "src": "/course-design-vue"
  7388. })
  7389. _box.appendChild(_iframe);
  7390. _box.appendChild(_jie);
  7391. _formdiv = new U.UF.UI.form(
  7392. "项目设计",
  7393. _box, {
  7394. "id": "courseDesign" + cid + stage + task + tool,
  7395. "style": {
  7396. "width": "90%",
  7397. "height": "90%",
  7398. "overflow": 'hidden'
  7399. },
  7400. "onresize": function () { }
  7401. }, {
  7402. closecallback: function () { }
  7403. }, {
  7404. "style": {
  7405. "height": "36px"
  7406. }
  7407. }).form; //创建窗体
  7408. _taskbar = {
  7409. "id": str + _formdiv.id,
  7410. "style": {
  7411. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7412. },
  7413. "name": "项目设计",
  7414. "forms": _formdiv,
  7415. "click": function () {
  7416. U.MD.D.I.openApplication(str, obj, info);
  7417. }
  7418. }
  7419. break;
  7420. }
  7421. const script1 = document.createElement("script");
  7422. script1.type = "text/javascript";
  7423. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7424. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7425. const script2 = document.createElement("script");
  7426. script2.type = "text/javascript";
  7427. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7428. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7429. const script3 = document.createElement("script");
  7430. script3.type = "text/javascript";
  7431. script3.charset = "UTF-8";
  7432. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7433. const script4 = document.createElement("script");
  7434. script4.type = "text/javascript";
  7435. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7436. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7437. if (_iframe) {
  7438. if (str == 'doc') {
  7439. _iframe = _formdiv.querySelector('iframe')
  7440. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7441. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7442. _iframe.contentWindow.document.body.appendChild(script1);
  7443. _iframe.contentWindow.document.body.appendChild(script2);
  7444. // _iframe.contentWindow.document.body.appendChild(script3);
  7445. _iframe.contentWindow.document.body.appendChild(script4);
  7446. })
  7447. if (onloadListener) {
  7448. _iframe.contentDocument.location.reload()
  7449. } else {
  7450. _iframe.contentDocument.location.reload()
  7451. }
  7452. } else if (str == 'courseDesign') {
  7453. U.UF.DL.iframeLoad(_iframe, function () {
  7454. // _iframe.contentWindow.U.MD.O.W.load();
  7455. // _iframe.contentWindow.document.body.appendChild(script1);
  7456. _iframe.contentWindow.document.body.appendChild(script2);
  7457. _iframe.contentWindow.document.body.appendChild(script4);
  7458. })
  7459. } else if (str == 'mind') {
  7460. _iframe = _formdiv.querySelector('iframe')
  7461. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7462. //
  7463. _iframe.contentWindow.document.body.appendChild(script1);
  7464. _iframe.contentWindow.document.body.appendChild(script2);
  7465. _iframe.contentWindow.document.body.appendChild(script4);
  7466. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7467. })
  7468. if (onloadListener) {
  7469. _iframe.contentDocument.location.reload()
  7470. } else {
  7471. _iframe.contentDocument.location.reload()
  7472. }
  7473. } else if (str == 'whiteboard') {
  7474. _iframe = _formdiv.querySelector('iframe')
  7475. let onloadListener = _iframe.onload = () => {
  7476. _iframe.contentWindow.document.body.appendChild(script1);
  7477. _iframe.contentWindow.document.body.appendChild(script2);
  7478. _iframe.contentWindow.document.body.appendChild(script4);
  7479. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7480. };
  7481. // if (onloadListener) {
  7482. // try {
  7483. // _iframe.src += "?cocorobo="+new Date().getTime()
  7484. // _iframe.contentWindow.document.location.reload()
  7485. // } catch (error) {
  7486. // }
  7487. // } else {
  7488. // _iframe.contentDocument.location.reload()
  7489. // }
  7490. } else {
  7491. _iframe.onload = () => {
  7492. _iframe.contentWindow.document.body.appendChild(script1);
  7493. _iframe.contentWindow.document.body.appendChild(script2);
  7494. // _iframe.contentWindow.document.body.appendChild(script3);
  7495. _iframe.contentWindow.document.body.appendChild(script4);
  7496. };
  7497. }
  7498. _jie.onclick = async () => {
  7499. let text = ''
  7500. if (aTool == 1) {
  7501. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7502. } else if (aTool == 6) {
  7503. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7504. } else if (aTool == 3) {
  7505. text = await U.MD.D.I.getEditorContent(_iframe);
  7506. }
  7507. _loading.style.display = 'flex'
  7508. console.log(_loading);
  7509. var _ajs = _iframe.contentWindow.document.createElement("script");
  7510. _ajs.type = "text/javascript";
  7511. _ajs.innerHTML =
  7512. // 'console.log(' + _loading + ');\n' +
  7513. 'var _js = document.createElement("script");\n' +
  7514. '_js.type="text/javascript";\n' +
  7515. '_js.charset="UTF-8";\n' +
  7516. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7517. "_js.onload = function(){\n" +
  7518. ' var a = document.getElementsByTagName("img")\n' +
  7519. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7520. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7521. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7522. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7523. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7524. "beforeUpload_shishi(file," +
  7525. "'" +
  7526. _userid +
  7527. "'" +
  7528. ", " +
  7529. "'" +
  7530. _cid +
  7531. "'" +
  7532. ", " +
  7533. "'" +
  7534. _stage +
  7535. "'" +
  7536. ", " +
  7537. "'" +
  7538. _task +
  7539. "'" +
  7540. ", " +
  7541. "'" +
  7542. _tool +
  7543. "'" +
  7544. ", " +
  7545. "'" +
  7546. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7547. "'" +
  7548. ", " +
  7549. "'" +
  7550. aTool +
  7551. "'" +
  7552. ", " +
  7553. "`" +
  7554. text +
  7555. "`" +
  7556. ")\n" +
  7557. " });\n" +
  7558. "}\n" +
  7559. "document.head.appendChild(_js);\n";
  7560. _iframe.contentWindow.document.head.appendChild(_ajs);
  7561. }
  7562. }
  7563. //U.MD.D.I.openClick(str);
  7564. //如果有任务栏信息
  7565. // if (_taskbar) {
  7566. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7567. // }
  7568. }
  7569. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7570. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7571. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7572. _userinfo = US.userInfo, //登录用户信息
  7573. _userid = US.userInfo.userid //登录用户id
  7574. let _iframe;
  7575. let _cid = cid,
  7576. _stage = stage,
  7577. _task = task,
  7578. _tool = tool;
  7579. var _jie = $$("div", {
  7580. "style": {
  7581. "position": "absolute",
  7582. "bottom": "50px",
  7583. "right": "50px",
  7584. "zIndex": "9999",
  7585. "backgroundColor": "#2268bc",
  7586. "color": "#fff",
  7587. "padding": "12px 20px",
  7588. "cursor": "pointer",
  7589. "borderRadius": "4px",
  7590. },
  7591. "innerHTML": "提交作业"
  7592. })
  7593. let aTool = ''
  7594. let _loading = document.createElement('div')
  7595. _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;"
  7596. // _loading.id = "";
  7597. let _lchild = document.createElement('div')
  7598. let _limg = document.createElement('img')
  7599. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7600. _limg.style = "width: 26px;margin-right: 10px;"
  7601. _lchild.appendChild(_limg)
  7602. let _lspan = document.createElement('span')
  7603. _lspan.innerHTML = "上传中..."
  7604. _lchild.appendChild(_lspan)
  7605. _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%);"
  7606. _loading.appendChild(_lchild)
  7607. let _box = $$('div', {
  7608. "style": {
  7609. "position": "relative",
  7610. "width": "100%",
  7611. "height": "100%",
  7612. },
  7613. })
  7614. _box.appendChild(_loading)
  7615. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7616. switch (str) {
  7617. case "whiteboard":
  7618. aTool = 1;
  7619. _iframe = $$("iframe", {
  7620. "frameborder": "no",
  7621. "border": "0",
  7622. "scrolling ": "no",
  7623. "style": {
  7624. "cssText": "border:0;width:100%;height:100%"
  7625. },
  7626. "src": "https://beta.iwb.cocorobo.cn/"
  7627. })
  7628. _box.appendChild(_iframe);
  7629. _box.appendChild(_jie);
  7630. _formdiv = new U.UF.UI.form(
  7631. "电子白板",
  7632. _box, {
  7633. "id": "whiteboard" + cid + stage + task + tool,
  7634. "style": {
  7635. "width": "90%",
  7636. "height": "90%",
  7637. "overflow": 'hidden'
  7638. },
  7639. "onresize": function () { }
  7640. }, {
  7641. closecallback: function () { }
  7642. }, {
  7643. "style": {
  7644. "height": "36px"
  7645. }
  7646. }).form; //创建窗体
  7647. _taskbar = {
  7648. "id": str + _formdiv.id,
  7649. "style": {
  7650. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7651. },
  7652. "name": "电子白板",
  7653. "forms": _formdiv,
  7654. "click": function () {
  7655. U.MD.D.I.openApplication(str, obj, info);
  7656. }
  7657. }
  7658. break;
  7659. case "mind":
  7660. aTool = 3;
  7661. _iframe = $$("iframe", {
  7662. "frameborder": "no",
  7663. "border": "0",
  7664. "scrolling ": "no",
  7665. "style": {
  7666. "cssText": "border:0;width:100%;height:100%"
  7667. },
  7668. "src": "/kityminder-editor/dist/index.html"
  7669. })
  7670. _box.appendChild(_iframe);
  7671. _box.appendChild(_jie);
  7672. _formdiv = new U.UF.UI.form(
  7673. "思维导图",
  7674. _box, { //"/jsmind/example/demo.html"
  7675. "id": "mind" + cid + stage + task + tool,
  7676. "style": {
  7677. "width": "90%",
  7678. "height": "90%",
  7679. "overflow": 'hidden'
  7680. },
  7681. "onresize": function () { }
  7682. }, {
  7683. closecallback: function () { }
  7684. }, {
  7685. "style": {
  7686. "height": "36px"
  7687. }
  7688. }).form; //创建窗体
  7689. _taskbar = {
  7690. "id": str + _formdiv.id,
  7691. "style": {
  7692. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7693. },
  7694. "name": "思维导图",
  7695. "forms": _formdiv,
  7696. "click": function () {
  7697. U.MD.D.I.openApplication(str, obj, info);
  7698. }
  7699. }
  7700. break;
  7701. case "MindMap":
  7702. aTool = 3;
  7703. _iframe = $$("iframe", {
  7704. "frameborder": "no",
  7705. "border": "0",
  7706. "scrolling ": "no",
  7707. "style": {
  7708. "cssText": "border:0;width:100%;height:100%"
  7709. },
  7710. "src": "//cloud.cocorobo.cn/mind/"
  7711. })
  7712. _box.appendChild(_iframe);
  7713. _box.appendChild(_jie);
  7714. _formdiv = new U.UF.UI.form(
  7715. "思维导图",
  7716. _box, { //"/jsmind/example/demo.html"
  7717. "id": "mind" + cid + stage + task + tool,
  7718. "style": {
  7719. "width": "90%",
  7720. "height": "90%",
  7721. "overflow": 'hidden'
  7722. },
  7723. "onresize": function () { }
  7724. }, {
  7725. closecallback: function () { }
  7726. }, {
  7727. "style": {
  7728. "height": "36px"
  7729. }
  7730. }).form; //创建窗体
  7731. _taskbar = {
  7732. "id": str + _formdiv.id,
  7733. "style": {
  7734. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7735. },
  7736. "name": "思维导图",
  7737. "forms": _formdiv,
  7738. "click": function () {
  7739. U.MD.D.I.openApplication(str, obj, info);
  7740. }
  7741. }
  7742. break;
  7743. case "doc":
  7744. aTool = 6;
  7745. _iframe = $$("iframe", {
  7746. "frameborder": "no",
  7747. "border": "0",
  7748. "scrolling ": "no",
  7749. "style": {
  7750. "cssText": "border:0;width:100%;height:100%"
  7751. },
  7752. "src": "/Office/Word/WordEditArea.htm"
  7753. })
  7754. _box.appendChild(_iframe);
  7755. _box.appendChild(_jie);
  7756. _formdiv = new U.UF.UI.form(
  7757. "协同文档",
  7758. _box, {
  7759. "id": "doc" + cid + stage + task + tool,
  7760. "style": {
  7761. "width": "90%",
  7762. "height": "90%",
  7763. "overflow": 'hidden'
  7764. },
  7765. "onresize": function () { }
  7766. }, {
  7767. closecallback: function () { }
  7768. }, {
  7769. "style": {
  7770. "height": "36px"
  7771. }
  7772. }).form; //创建窗体
  7773. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7774. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7775. })
  7776. _taskbar = {
  7777. "id": str + _formdiv.id,
  7778. "style": {
  7779. "backgroundImage": "url(/img/icon/doc.png)"
  7780. },
  7781. "name": "协同文档",
  7782. "forms": _formdiv,
  7783. "click": function () {
  7784. U.MD.D.I.openApplication(str, obj, info);
  7785. }
  7786. }
  7787. break;
  7788. case "mindNetwork": //好友打开
  7789. aTool = 7;
  7790. _iframe = $$("iframe", {
  7791. "webkitallowfullscreen": "",
  7792. "mozallowfullscreen": "",
  7793. "allowfullscreen": "",
  7794. "frameborder": "no",
  7795. "border": "0",
  7796. "scrolling ": "no",
  7797. "style": {
  7798. "cssText": "border:0; width:100%; height:100%;"
  7799. },
  7800. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7801. })
  7802. _box.appendChild(_iframe);
  7803. _box.appendChild(_jie);
  7804. _formdiv = new U.UF.UI.form(
  7805. "思维网格",
  7806. _box, {
  7807. "id": "mindNetwork" + cid + stage + task + tool,
  7808. "style": {
  7809. "width": "90%",
  7810. "height": "90%",
  7811. "overflow": 'hidden'
  7812. },
  7813. "onresize": function () { }
  7814. }, {
  7815. closecallback: function () { }
  7816. }, {
  7817. "style": {
  7818. "height": "36px"
  7819. }
  7820. }).form; //创建窗体
  7821. _taskbar = {
  7822. "id": str + _formdiv.id,
  7823. "style": {
  7824. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7825. },
  7826. "name": "思维网格",
  7827. "forms": _formdiv,
  7828. "click": function () {
  7829. U.MD.D.I.openApplication(str, obj, info);
  7830. }
  7831. }
  7832. break;
  7833. case "courseDesign":
  7834. _iframe = $$("iframe", {
  7835. "webkitallowfullscreen": "",
  7836. "mozallowfullscreen": "",
  7837. "allowfullscreen": "",
  7838. "frameborder": "no",
  7839. "border": "0",
  7840. "scrolling ": "no",
  7841. "style": {
  7842. "cssText": "border:0; width:100%; height:100%;"
  7843. },
  7844. "src": "/course-design-vue"
  7845. })
  7846. _box.appendChild(_iframe);
  7847. _box.appendChild(_jie);
  7848. _formdiv = new U.UF.UI.form(
  7849. "项目设计",
  7850. _box, {
  7851. "id": "courseDesign" + cid + stage + task + tool,
  7852. "style": {
  7853. "width": "90%",
  7854. "height": "90%",
  7855. "overflow": 'hidden'
  7856. },
  7857. "onresize": function () { }
  7858. }, {
  7859. closecallback: function () { }
  7860. }, {
  7861. "style": {
  7862. "height": "36px"
  7863. }
  7864. }).form; //创建窗体
  7865. _taskbar = {
  7866. "id": str + _formdiv.id,
  7867. "style": {
  7868. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7869. },
  7870. "name": "项目设计",
  7871. "forms": _formdiv,
  7872. "click": function () {
  7873. U.MD.D.I.openApplication(str, obj, info);
  7874. }
  7875. }
  7876. break;
  7877. }
  7878. const script1 = document.createElement("script");
  7879. script1.type = "text/javascript";
  7880. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7881. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7882. const script2 = document.createElement("script");
  7883. script2.type = "text/javascript";
  7884. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7885. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7886. const script3 = document.createElement("script");
  7887. script3.type = "text/javascript";
  7888. script3.charset = "UTF-8";
  7889. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7890. const script4 = document.createElement("script");
  7891. script4.type = "text/javascript";
  7892. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7893. script4.src = window.origin + "/js/Common/jietu2E.js";
  7894. if (_iframe) {
  7895. if (str == 'doc') {
  7896. _iframe = _formdiv.querySelector('iframe')
  7897. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7898. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7899. _iframe.contentWindow.document.body.appendChild(script1);
  7900. _iframe.contentWindow.document.body.appendChild(script2);
  7901. // _iframe.contentWindow.document.body.appendChild(script3);
  7902. _iframe.contentWindow.document.body.appendChild(script4);
  7903. })
  7904. if (onloadListener) {
  7905. _iframe.contentDocument.location.reload()
  7906. } else {
  7907. _iframe.contentDocument.location.reload()
  7908. }
  7909. } else if (str == 'courseDesign') {
  7910. U.UF.DL.iframeLoad(_iframe, function () {
  7911. // _iframe.contentWindow.U.MD.O.W.load();
  7912. // _iframe.contentWindow.document.body.appendChild(script1);
  7913. _iframe.contentWindow.document.body.appendChild(script2);
  7914. _iframe.contentWindow.document.body.appendChild(script4);
  7915. })
  7916. } else if (str == 'mind') {
  7917. _iframe = _formdiv.querySelector('iframe')
  7918. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7919. //
  7920. _iframe.contentWindow.document.body.appendChild(script1);
  7921. _iframe.contentWindow.document.body.appendChild(script2);
  7922. _iframe.contentWindow.document.body.appendChild(script4);
  7923. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7924. })
  7925. if (onloadListener) {
  7926. _iframe.contentDocument.location.reload()
  7927. } else {
  7928. _iframe.contentDocument.location.reload()
  7929. }
  7930. } else if (str == 'whiteboard') {
  7931. _iframe = _formdiv.querySelector('iframe')
  7932. let onloadListener = _iframe.onload = () => {
  7933. _iframe.contentWindow.document.body.appendChild(script1);
  7934. _iframe.contentWindow.document.body.appendChild(script2);
  7935. _iframe.contentWindow.document.body.appendChild(script4);
  7936. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7937. };
  7938. // if (onloadListener) {
  7939. // try {
  7940. // _iframe.src += "?cocorobo="+new Date().getTime()
  7941. // _iframe.contentWindow.document.location.reload()
  7942. // } catch (error) {
  7943. // }
  7944. // } else {
  7945. // _iframe.contentDocument.location.reload()
  7946. // }
  7947. } else {
  7948. _iframe.onload = () => {
  7949. _iframe.contentWindow.document.body.appendChild(script1);
  7950. _iframe.contentWindow.document.body.appendChild(script2);
  7951. // _iframe.contentWindow.document.body.appendChild(script3);
  7952. _iframe.contentWindow.document.body.appendChild(script4);
  7953. };
  7954. }
  7955. _jie.onclick = async () => {
  7956. let text = ''
  7957. if (aTool == 1) {
  7958. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7959. } else if (aTool == 6) {
  7960. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7961. } else if (aTool == 3) {
  7962. text = await U.MD.D.I.getEditorContent(_iframe);
  7963. }
  7964. _loading.style.display = 'flex'
  7965. console.log(_loading);
  7966. var _ajs = _iframe.contentWindow.document.createElement("script");
  7967. _ajs.type = "text/javascript";
  7968. _ajs.innerHTML =
  7969. // 'console.log(' + _loading + ');\n' +
  7970. 'var _js = document.createElement("script");\n' +
  7971. '_js.type="text/javascript";\n' +
  7972. '_js.charset="UTF-8";\n' +
  7973. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7974. "_js.onload = function(){\n" +
  7975. ' var a = document.getElementsByTagName("img")\n' +
  7976. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7977. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7978. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7979. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7980. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7981. "beforeUpload_shishi(file," +
  7982. "'" +
  7983. _userid +
  7984. "'" +
  7985. ", " +
  7986. "'" +
  7987. _cid +
  7988. "'" +
  7989. ", " +
  7990. "'" +
  7991. _stage +
  7992. "'" +
  7993. ", " +
  7994. "'" +
  7995. _task +
  7996. "'" +
  7997. ", " +
  7998. "'" +
  7999. _tool +
  8000. "'" +
  8001. ", " +
  8002. "'" +
  8003. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8004. "'" +
  8005. ", " +
  8006. "'" +
  8007. aTool +
  8008. "'" +
  8009. ", " +
  8010. "`" +
  8011. text +
  8012. "`" +
  8013. ")\n" +
  8014. " });\n" +
  8015. "}\n" +
  8016. "document.head.appendChild(_js);\n";
  8017. _iframe.contentWindow.document.head.appendChild(_ajs);
  8018. }
  8019. }
  8020. //U.MD.D.I.openClick(str);
  8021. //如果有任务栏信息
  8022. // if (_taskbar) {
  8023. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8024. // }
  8025. }
  8026. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8027. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8028. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8029. _userid = student.userid, //登录用户id
  8030. _username = student.student //用户名字
  8031. let _iframe;
  8032. let _cid = cid,
  8033. _stage = stage,
  8034. _task = task,
  8035. _tool = tool;
  8036. var _jie = $$("div", {
  8037. "style": {
  8038. "position": "absolute",
  8039. "bottom": "50px",
  8040. "right": "50px",
  8041. "zIndex": "9999",
  8042. "backgroundColor": "#2268bc",
  8043. "color": "#fff",
  8044. "padding": "12px 20px",
  8045. "cursor": "pointer",
  8046. "borderRadius": "4px",
  8047. },
  8048. "innerHTML": "提交作业"
  8049. })
  8050. let aTool = ''
  8051. let _loading = document.createElement('div')
  8052. _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;"
  8053. // _loading.id = "";
  8054. let _lchild = document.createElement('div')
  8055. let _limg = document.createElement('img')
  8056. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8057. _limg.style = "width: 26px;margin-right: 10px;"
  8058. _lchild.appendChild(_limg)
  8059. let _lspan = document.createElement('span')
  8060. _lspan.innerHTML = "上传中..."
  8061. _lchild.appendChild(_lspan)
  8062. _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%);"
  8063. _loading.appendChild(_lchild)
  8064. var _box = $$('div', {
  8065. "style": {
  8066. "position": "relative",
  8067. "width": "100%",
  8068. "height": "100%",
  8069. },
  8070. })
  8071. _box.appendChild(_loading)
  8072. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8073. switch (str) {
  8074. case "whiteboard":
  8075. aTool = 1;
  8076. _iframe = $$("iframe", {
  8077. "frameborder": "no",
  8078. "border": "0",
  8079. "scrolling ": "no",
  8080. "style": {
  8081. "cssText": "border:0;width:100%;height:100%"
  8082. },
  8083. "src": "https://beta.iwb.cocorobo.cn/"
  8084. })
  8085. _box.appendChild(_iframe);
  8086. _box.appendChild(_jie);
  8087. _formdiv = new U.UF.UI.form(
  8088. "电子白板-" + _username,
  8089. _box, {
  8090. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8091. "style": {
  8092. "width": "90%",
  8093. "height": "90%",
  8094. "overflow": 'hidden'
  8095. },
  8096. "onresize": function () { }
  8097. }, {
  8098. closecallback: function () { }
  8099. }, {
  8100. "style": {
  8101. "height": "36px"
  8102. }
  8103. }).form; //创建窗体
  8104. _taskbar = {
  8105. "id": str + _formdiv.id,
  8106. "style": {
  8107. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8108. },
  8109. "name": "电子白板",
  8110. "forms": _formdiv,
  8111. "click": function () {
  8112. U.MD.D.I.openApplication(str, obj, info);
  8113. }
  8114. }
  8115. break;
  8116. case "mind":
  8117. aTool = 3;
  8118. _iframe = $$("iframe", {
  8119. "frameborder": "no",
  8120. "border": "0",
  8121. "scrolling ": "no",
  8122. "style": {
  8123. "cssText": "border:0;width:100%;height:100%"
  8124. },
  8125. "src": "/kityminder-editor/dist/index.html"
  8126. })
  8127. _box.appendChild(_iframe);
  8128. _box.appendChild(_jie);
  8129. _formdiv = new U.UF.UI.form(
  8130. "思维导图-" + _username,
  8131. _box, { //"/jsmind/example/demo.html"
  8132. "id": "mind" + cid + stage + task + tool + _userid,
  8133. "style": {
  8134. "width": "90%",
  8135. "height": "90%",
  8136. "overflow": 'hidden'
  8137. },
  8138. "onresize": function () { }
  8139. }, {
  8140. closecallback: function () { }
  8141. }, {
  8142. "style": {
  8143. "height": "36px"
  8144. }
  8145. }).form; //创建窗体
  8146. _taskbar = {
  8147. "id": str + _formdiv.id,
  8148. "style": {
  8149. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8150. },
  8151. "name": "思维导图",
  8152. "forms": _formdiv,
  8153. "click": function () {
  8154. U.MD.D.I.openApplication(str, obj, info);
  8155. }
  8156. }
  8157. break;
  8158. case "MindMap":
  8159. aTool = 3;
  8160. _iframe = $$("iframe", {
  8161. "frameborder": "no",
  8162. "border": "0",
  8163. "scrolling ": "no",
  8164. "style": {
  8165. "cssText": "border:0;width:100%;height:100%"
  8166. },
  8167. "src": "//cloud.cocorobo.cn/mind/"
  8168. })
  8169. _box.appendChild(_iframe);
  8170. _box.appendChild(_jie);
  8171. _formdiv = new U.UF.UI.form(
  8172. "思维导图-" + _username,
  8173. _box, { //"/jsmind/example/demo.html"
  8174. "id": "mind" + cid + stage + task + tool + _userid,
  8175. "style": {
  8176. "width": "90%",
  8177. "height": "90%",
  8178. "overflow": 'hidden'
  8179. },
  8180. "onresize": function () { }
  8181. }, {
  8182. closecallback: function () { }
  8183. }, {
  8184. "style": {
  8185. "height": "36px"
  8186. }
  8187. }).form; //创建窗体
  8188. _taskbar = {
  8189. "id": str + _formdiv.id,
  8190. "style": {
  8191. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8192. },
  8193. "name": "思维导图",
  8194. "forms": _formdiv,
  8195. "click": function () {
  8196. U.MD.D.I.openApplication(str, obj, info);
  8197. }
  8198. }
  8199. break;
  8200. case "doc":
  8201. aTool = 6;
  8202. _iframe = $$("iframe", {
  8203. "frameborder": "no",
  8204. "border": "0",
  8205. "scrolling ": "no",
  8206. "style": {
  8207. "cssText": "border:0;width:100%;height:100%"
  8208. },
  8209. "src": "/Office/Word/WordEditArea.htm"
  8210. })
  8211. _box.appendChild(_iframe);
  8212. _box.appendChild(_jie);
  8213. _formdiv = new U.UF.UI.form(
  8214. "协同文档-" + _username,
  8215. _box, {
  8216. "id": "doc" + cid + stage + task + tool + _userid,
  8217. "style": {
  8218. "width": "90%",
  8219. "height": "90%",
  8220. "overflow": 'hidden'
  8221. },
  8222. "onresize": function () { }
  8223. }, {
  8224. closecallback: function () { }
  8225. }, {
  8226. "style": {
  8227. "height": "36px"
  8228. }
  8229. }).form; //创建窗体
  8230. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8231. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8232. })
  8233. _taskbar = {
  8234. "id": str + _formdiv.id,
  8235. "style": {
  8236. "backgroundImage": "url(/img/icon/doc.png)"
  8237. },
  8238. "name": "协同文档",
  8239. "forms": _formdiv,
  8240. "click": function () {
  8241. U.MD.D.I.openApplication(str, obj, info);
  8242. }
  8243. }
  8244. break;
  8245. case "mindNetwork": //好友打开
  8246. aTool = 7;
  8247. _iframe = $$("iframe", {
  8248. "webkitallowfullscreen": "",
  8249. "mozallowfullscreen": "",
  8250. "allowfullscreen": "",
  8251. "frameborder": "no",
  8252. "border": "0",
  8253. "scrolling ": "no",
  8254. "style": {
  8255. "cssText": "border:0; width:100%; height:100%;"
  8256. },
  8257. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8258. })
  8259. _box.appendChild(_iframe);
  8260. _box.appendChild(_jie);
  8261. _formdiv = new U.UF.UI.form(
  8262. "思维网格-" + _username,
  8263. _box, {
  8264. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8265. "style": {
  8266. "width": "90%",
  8267. "height": "90%",
  8268. "overflow": 'hidden'
  8269. },
  8270. "onresize": function () { }
  8271. }, {
  8272. closecallback: function () { }
  8273. }, {
  8274. "style": {
  8275. "height": "36px"
  8276. }
  8277. }).form; //创建窗体
  8278. _taskbar = {
  8279. "id": str + _formdiv.id,
  8280. "style": {
  8281. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8282. },
  8283. "name": "思维网格",
  8284. "forms": _formdiv,
  8285. "click": function () {
  8286. U.MD.D.I.openApplication(str, obj, info);
  8287. }
  8288. }
  8289. break;
  8290. case "courseDesign":
  8291. _iframe = $$("iframe", {
  8292. "webkitallowfullscreen": "",
  8293. "mozallowfullscreen": "",
  8294. "allowfullscreen": "",
  8295. "frameborder": "no",
  8296. "border": "0",
  8297. "scrolling ": "no",
  8298. "style": {
  8299. "cssText": "border:0; width:100%; height:100%;"
  8300. },
  8301. "src": "/course-design-vue"
  8302. })
  8303. _box.appendChild(_iframe);
  8304. _box.appendChild(_jie);
  8305. _formdiv = new U.UF.UI.form(
  8306. "项目设计-" + _username,
  8307. _box, {
  8308. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8309. "style": {
  8310. "width": "90%",
  8311. "height": "90%",
  8312. "overflow": 'hidden'
  8313. },
  8314. "onresize": function () { }
  8315. }, {
  8316. closecallback: function () { }
  8317. }, {
  8318. "style": {
  8319. "height": "36px"
  8320. }
  8321. }).form; //创建窗体
  8322. _taskbar = {
  8323. "id": str + _formdiv.id,
  8324. "style": {
  8325. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8326. },
  8327. "name": "项目设计",
  8328. "forms": _formdiv,
  8329. "click": function () {
  8330. U.MD.D.I.openApplication(str, obj, info);
  8331. }
  8332. }
  8333. break;
  8334. }
  8335. const script1 = document.createElement("script");
  8336. script1.type = "text/javascript";
  8337. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8338. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8339. const script2 = document.createElement("script");
  8340. script2.type = "text/javascript";
  8341. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8342. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8343. const script3 = document.createElement("script");
  8344. script3.type = "text/javascript";
  8345. script3.charset = "UTF-8";
  8346. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8347. const script4 = document.createElement("script");
  8348. script4.type = "text/javascript";
  8349. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8350. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8351. if (_iframe) {
  8352. if (str == 'doc') {
  8353. _iframe = _formdiv.querySelector('iframe')
  8354. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8355. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8356. _iframe.contentWindow.document.body.appendChild(script1);
  8357. _iframe.contentWindow.document.body.appendChild(script2);
  8358. // _iframe.contentWindow.document.body.appendChild(script3);
  8359. _iframe.contentWindow.document.body.appendChild(script4);
  8360. })
  8361. if (onloadListener) {
  8362. _iframe.contentDocument.location.reload()
  8363. } else {
  8364. _iframe.contentDocument.location.reload()
  8365. }
  8366. } else if (str == 'courseDesign') {
  8367. U.UF.DL.iframeLoad(_iframe, function () {
  8368. // _iframe.contentWindow.U.MD.O.W.load();
  8369. // _iframe.contentWindow.document.body.appendChild(script1);
  8370. _iframe.contentWindow.document.body.appendChild(script2);
  8371. _iframe.contentWindow.document.body.appendChild(script4);
  8372. })
  8373. } else if (str == 'mind') {
  8374. _iframe = _formdiv.querySelector('iframe')
  8375. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8376. //
  8377. _iframe.contentWindow.document.body.appendChild(script1);
  8378. _iframe.contentWindow.document.body.appendChild(script2);
  8379. _iframe.contentWindow.document.body.appendChild(script4);
  8380. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8381. })
  8382. if (onloadListener) {
  8383. _iframe.contentDocument.location.reload()
  8384. } else {
  8385. _iframe.contentDocument.location.reload()
  8386. }
  8387. } else if (str == 'whiteboard') {
  8388. _iframe = _formdiv.querySelector('iframe')
  8389. let onloadListener = _iframe.onload = () => {
  8390. _iframe.contentWindow.document.body.appendChild(script1);
  8391. _iframe.contentWindow.document.body.appendChild(script2);
  8392. _iframe.contentWindow.document.body.appendChild(script4);
  8393. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8394. };
  8395. // if (onloadListener) {
  8396. // try {
  8397. // _iframe.src += "?cocorobo="+new Date().getTime()
  8398. // _iframe.contentWindow.document.location.reload()
  8399. // } catch (error) {
  8400. // }
  8401. // } else {
  8402. // _iframe.contentDocument.location.reload()
  8403. // }
  8404. } else {
  8405. _iframe.onload = () => {
  8406. _iframe.contentWindow.document.body.appendChild(script1);
  8407. _iframe.contentWindow.document.body.appendChild(script2);
  8408. // _iframe.contentWindow.document.body.appendChild(script3);
  8409. _iframe.contentWindow.document.body.appendChild(script4);
  8410. };
  8411. }
  8412. _jie.onclick = async () => {
  8413. let text = ''
  8414. if (aTool == 1) {
  8415. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8416. } else if (aTool == 6) {
  8417. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8418. } else if (aTool == 3) {
  8419. text = await U.MD.D.I.getEditorContent(_iframe);
  8420. }
  8421. _loading.style.display = 'flex'
  8422. console.log(_loading);
  8423. var _ajs = _iframe.contentWindow.document.createElement("script");
  8424. _ajs.type = "text/javascript";
  8425. _ajs.innerHTML =
  8426. // 'console.log(' + _loading + ');\n' +
  8427. 'var _js = document.createElement("script");\n' +
  8428. '_js.type="text/javascript";\n' +
  8429. '_js.charset="UTF-8";\n' +
  8430. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8431. "_js.onload = function(){\n" +
  8432. ' var a = document.getElementsByTagName("img")\n' +
  8433. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8434. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8435. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8436. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8437. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8438. "beforeUpload_shishi(file," +
  8439. "'" +
  8440. _userid +
  8441. "'" +
  8442. ", " +
  8443. "'" +
  8444. _cid +
  8445. "'" +
  8446. ", " +
  8447. "'" +
  8448. _stage +
  8449. "'" +
  8450. ", " +
  8451. "'" +
  8452. _task +
  8453. "'" +
  8454. ", " +
  8455. "'" +
  8456. _tool +
  8457. "'" +
  8458. ", " +
  8459. "'" +
  8460. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8461. "'" +
  8462. ", " +
  8463. "'" +
  8464. aTool +
  8465. "'" +
  8466. ", " +
  8467. "`" +
  8468. text +
  8469. "`" +
  8470. ")\n" +
  8471. " });\n" +
  8472. "}\n" +
  8473. "document.head.appendChild(_js);\n";
  8474. _iframe.contentWindow.document.head.appendChild(_ajs);
  8475. }
  8476. }
  8477. }
  8478. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8479. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8480. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8481. _userid = student.userid, //登录用户id
  8482. _username = student.student //用户名字
  8483. let _iframe;
  8484. let _cid = cid,
  8485. _stage = stage,
  8486. _task = task,
  8487. _tool = tool;
  8488. var _jie = $$("div", {
  8489. "style": {
  8490. "position": "absolute",
  8491. "bottom": "50px",
  8492. "right": "50px",
  8493. "zIndex": "9999",
  8494. "backgroundColor": "#2268bc",
  8495. "color": "#fff",
  8496. "padding": "12px 20px",
  8497. "cursor": "pointer",
  8498. "borderRadius": "4px",
  8499. },
  8500. "innerHTML": "提交作业"
  8501. })
  8502. let aTool = ''
  8503. let _loading = document.createElement('div')
  8504. _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;"
  8505. // _loading.id = "";
  8506. let _lchild = document.createElement('div')
  8507. let _limg = document.createElement('img')
  8508. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8509. _limg.style = "width: 26px;margin-right: 10px;"
  8510. _lchild.appendChild(_limg)
  8511. let _lspan = document.createElement('span')
  8512. _lspan.innerHTML = "上传中..."
  8513. _lchild.appendChild(_lspan)
  8514. _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%);"
  8515. _loading.appendChild(_lchild)
  8516. var _box = $$('div', {
  8517. "style": {
  8518. "position": "relative",
  8519. "width": "100%",
  8520. "height": "100%",
  8521. },
  8522. })
  8523. _box.appendChild(_loading)
  8524. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8525. switch (str) {
  8526. case "whiteboard":
  8527. aTool = 1;
  8528. _iframe = $$("iframe", {
  8529. "frameborder": "no",
  8530. "border": "0",
  8531. "scrolling ": "no",
  8532. "style": {
  8533. "cssText": "border:0;width:100%;height:100%"
  8534. },
  8535. "src": "https://beta.iwb.cocorobo.cn/"
  8536. })
  8537. _box.appendChild(_iframe);
  8538. _box.appendChild(_jie);
  8539. _formdiv = new U.UF.UI.form(
  8540. "电子白板-" + _username,
  8541. _box, {
  8542. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8543. "style": {
  8544. "width": "90%",
  8545. "height": "90%",
  8546. "overflow": 'hidden'
  8547. },
  8548. "onresize": function () { }
  8549. }, {
  8550. closecallback: function () { }
  8551. }, {
  8552. "style": {
  8553. "height": "36px"
  8554. }
  8555. }).form; //创建窗体
  8556. _taskbar = {
  8557. "id": str + _formdiv.id,
  8558. "style": {
  8559. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8560. },
  8561. "name": "电子白板",
  8562. "forms": _formdiv,
  8563. "click": function () {
  8564. U.MD.D.I.openApplication(str, obj, info);
  8565. }
  8566. }
  8567. break;
  8568. case "mind":
  8569. aTool = 3;
  8570. _iframe = $$("iframe", {
  8571. "frameborder": "no",
  8572. "border": "0",
  8573. "scrolling ": "no",
  8574. "style": {
  8575. "cssText": "border:0;width:100%;height:100%"
  8576. },
  8577. "src": "/kityminder-editor/dist/index.html"
  8578. })
  8579. _box.appendChild(_iframe);
  8580. _box.appendChild(_jie);
  8581. _formdiv = new U.UF.UI.form(
  8582. "思维导图-" + _username,
  8583. _box, { //"/jsmind/example/demo.html"
  8584. "id": "mind" + cid + stage + task + tool + _userid,
  8585. "style": {
  8586. "width": "90%",
  8587. "height": "90%",
  8588. "overflow": 'hidden'
  8589. },
  8590. "onresize": function () { }
  8591. }, {
  8592. closecallback: function () { }
  8593. }, {
  8594. "style": {
  8595. "height": "36px"
  8596. }
  8597. }).form; //创建窗体
  8598. _taskbar = {
  8599. "id": str + _formdiv.id,
  8600. "style": {
  8601. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8602. },
  8603. "name": "思维导图",
  8604. "forms": _formdiv,
  8605. "click": function () {
  8606. U.MD.D.I.openApplication(str, obj, info);
  8607. }
  8608. }
  8609. break;
  8610. case "MindMap":
  8611. aTool = 3;
  8612. _iframe = $$("iframe", {
  8613. "frameborder": "no",
  8614. "border": "0",
  8615. "scrolling ": "no",
  8616. "style": {
  8617. "cssText": "border:0;width:100%;height:100%"
  8618. },
  8619. "src": "//cloud.cocorobo.cn/mind/"
  8620. })
  8621. _box.appendChild(_iframe);
  8622. _box.appendChild(_jie);
  8623. _formdiv = new U.UF.UI.form(
  8624. "思维导图-" + _username,
  8625. _box, { //"/jsmind/example/demo.html"
  8626. "id": "mind" + cid + stage + task + tool + _userid,
  8627. "style": {
  8628. "width": "90%",
  8629. "height": "90%",
  8630. "overflow": 'hidden'
  8631. },
  8632. "onresize": function () { }
  8633. }, {
  8634. closecallback: function () { }
  8635. }, {
  8636. "style": {
  8637. "height": "36px"
  8638. }
  8639. }).form; //创建窗体
  8640. _taskbar = {
  8641. "id": str + _formdiv.id,
  8642. "style": {
  8643. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8644. },
  8645. "name": "思维导图",
  8646. "forms": _formdiv,
  8647. "click": function () {
  8648. U.MD.D.I.openApplication(str, obj, info);
  8649. }
  8650. }
  8651. break;
  8652. case "doc":
  8653. aTool = 6;
  8654. _iframe = $$("iframe", {
  8655. "frameborder": "no",
  8656. "border": "0",
  8657. "scrolling ": "no",
  8658. "style": {
  8659. "cssText": "border:0;width:100%;height:100%"
  8660. },
  8661. "src": "/Office/Word/WordEditArea.htm"
  8662. })
  8663. _box.appendChild(_iframe);
  8664. _box.appendChild(_jie);
  8665. _formdiv = new U.UF.UI.form(
  8666. "协同文档-" + _username,
  8667. _box, {
  8668. "id": "doc" + cid + stage + task + tool + _userid,
  8669. "style": {
  8670. "width": "90%",
  8671. "height": "90%",
  8672. "overflow": 'hidden'
  8673. },
  8674. "onresize": function () { }
  8675. }, {
  8676. closecallback: function () { }
  8677. }, {
  8678. "style": {
  8679. "height": "36px"
  8680. }
  8681. }).form; //创建窗体
  8682. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8683. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8684. })
  8685. _taskbar = {
  8686. "id": str + _formdiv.id,
  8687. "style": {
  8688. "backgroundImage": "url(/img/icon/doc.png)"
  8689. },
  8690. "name": "协同文档",
  8691. "forms": _formdiv,
  8692. "click": function () {
  8693. U.MD.D.I.openApplication(str, obj, info);
  8694. }
  8695. }
  8696. break;
  8697. case "mindNetwork": //好友打开
  8698. aTool = 7;
  8699. _iframe = $$("iframe", {
  8700. "webkitallowfullscreen": "",
  8701. "mozallowfullscreen": "",
  8702. "allowfullscreen": "",
  8703. "frameborder": "no",
  8704. "border": "0",
  8705. "scrolling ": "no",
  8706. "style": {
  8707. "cssText": "border:0; width:100%; height:100%;"
  8708. },
  8709. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8710. })
  8711. _box.appendChild(_iframe);
  8712. _box.appendChild(_jie);
  8713. _formdiv = new U.UF.UI.form(
  8714. "思维网格-" + _username,
  8715. _box, {
  8716. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8717. "style": {
  8718. "width": "90%",
  8719. "height": "90%",
  8720. "overflow": 'hidden'
  8721. },
  8722. "onresize": function () { }
  8723. }, {
  8724. closecallback: function () { }
  8725. }, {
  8726. "style": {
  8727. "height": "36px"
  8728. }
  8729. }).form; //创建窗体
  8730. _taskbar = {
  8731. "id": str + _formdiv.id,
  8732. "style": {
  8733. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8734. },
  8735. "name": "思维网格",
  8736. "forms": _formdiv,
  8737. "click": function () {
  8738. U.MD.D.I.openApplication(str, obj, info);
  8739. }
  8740. }
  8741. break;
  8742. case "courseDesign":
  8743. _iframe = $$("iframe", {
  8744. "webkitallowfullscreen": "",
  8745. "mozallowfullscreen": "",
  8746. "allowfullscreen": "",
  8747. "frameborder": "no",
  8748. "border": "0",
  8749. "scrolling ": "no",
  8750. "style": {
  8751. "cssText": "border:0; width:100%; height:100%;"
  8752. },
  8753. "src": "/course-design-vue"
  8754. })
  8755. _box.appendChild(_iframe);
  8756. _box.appendChild(_jie);
  8757. _formdiv = new U.UF.UI.form(
  8758. "项目设计-" + _username,
  8759. _box, {
  8760. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8761. "style": {
  8762. "width": "90%",
  8763. "height": "90%",
  8764. "overflow": 'hidden'
  8765. },
  8766. "onresize": function () { }
  8767. }, {
  8768. closecallback: function () { }
  8769. }, {
  8770. "style": {
  8771. "height": "36px"
  8772. }
  8773. }).form; //创建窗体
  8774. _taskbar = {
  8775. "id": str + _formdiv.id,
  8776. "style": {
  8777. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8778. },
  8779. "name": "项目设计",
  8780. "forms": _formdiv,
  8781. "click": function () {
  8782. U.MD.D.I.openApplication(str, obj, info);
  8783. }
  8784. }
  8785. break;
  8786. }
  8787. const script1 = document.createElement("script");
  8788. script1.type = "text/javascript";
  8789. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8790. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8791. const script2 = document.createElement("script");
  8792. script2.type = "text/javascript";
  8793. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8794. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8795. const script3 = document.createElement("script");
  8796. script3.type = "text/javascript";
  8797. script3.charset = "UTF-8";
  8798. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8799. const script4 = document.createElement("script");
  8800. script4.type = "text/javascript";
  8801. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8802. script4.src = window.origin + "/js/Common/jietu2E.js";
  8803. if (_iframe) {
  8804. if (str == 'doc') {
  8805. _iframe = _formdiv.querySelector('iframe')
  8806. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8807. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8808. _iframe.contentWindow.document.body.appendChild(script1);
  8809. _iframe.contentWindow.document.body.appendChild(script2);
  8810. // _iframe.contentWindow.document.body.appendChild(script3);
  8811. _iframe.contentWindow.document.body.appendChild(script4);
  8812. })
  8813. if (onloadListener) {
  8814. _iframe.contentDocument.location.reload()
  8815. } else {
  8816. _iframe.contentDocument.location.reload()
  8817. }
  8818. } else if (str == 'courseDesign') {
  8819. U.UF.DL.iframeLoad(_iframe, function () {
  8820. // _iframe.contentWindow.U.MD.O.W.load();
  8821. // _iframe.contentWindow.document.body.appendChild(script1);
  8822. _iframe.contentWindow.document.body.appendChild(script2);
  8823. _iframe.contentWindow.document.body.appendChild(script4);
  8824. })
  8825. } else if (str == 'mind') {
  8826. _iframe = _formdiv.querySelector('iframe')
  8827. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8828. //
  8829. _iframe.contentWindow.document.body.appendChild(script1);
  8830. _iframe.contentWindow.document.body.appendChild(script2);
  8831. _iframe.contentWindow.document.body.appendChild(script4);
  8832. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8833. })
  8834. if (onloadListener) {
  8835. _iframe.contentDocument.location.reload()
  8836. } else {
  8837. _iframe.contentDocument.location.reload()
  8838. }
  8839. } else if (str == 'whiteboard') {
  8840. _iframe = _formdiv.querySelector('iframe')
  8841. let onloadListener = _iframe.onload = () => {
  8842. _iframe.contentWindow.document.body.appendChild(script1);
  8843. _iframe.contentWindow.document.body.appendChild(script2);
  8844. _iframe.contentWindow.document.body.appendChild(script4);
  8845. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8846. };
  8847. // if (onloadListener) {
  8848. // try {
  8849. // _iframe.src += "?cocorobo="+new Date().getTime()
  8850. // _iframe.contentWindow.document.location.reload()
  8851. // } catch (error) {
  8852. // }
  8853. // } else {
  8854. // _iframe.contentDocument.location.reload()
  8855. // }
  8856. } else {
  8857. _iframe.onload = () => {
  8858. _iframe.contentWindow.document.body.appendChild(script1);
  8859. _iframe.contentWindow.document.body.appendChild(script2);
  8860. // _iframe.contentWindow.document.body.appendChild(script3);
  8861. _iframe.contentWindow.document.body.appendChild(script4);
  8862. };
  8863. }
  8864. _jie.onclick = async () => {
  8865. let text = ''
  8866. if (aTool == 1) {
  8867. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8868. } else if (aTool == 6) {
  8869. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8870. } else if (aTool == 3) {
  8871. text = await U.MD.D.I.getEditorContent(_iframe);
  8872. }
  8873. _loading.style.display = 'flex'
  8874. console.log(_loading);
  8875. var _ajs = _iframe.contentWindow.document.createElement("script");
  8876. _ajs.type = "text/javascript";
  8877. _ajs.innerHTML =
  8878. // 'console.log(' + _loading + ');\n' +
  8879. 'var _js = document.createElement("script");\n' +
  8880. '_js.type="text/javascript";\n' +
  8881. '_js.charset="UTF-8";\n' +
  8882. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8883. "_js.onload = function(){\n" +
  8884. ' var a = document.getElementsByTagName("img")\n' +
  8885. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8886. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8887. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8888. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8889. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8890. "beforeUpload_shishi(file," +
  8891. "'" +
  8892. _userid +
  8893. "'" +
  8894. ", " +
  8895. "'" +
  8896. _cid +
  8897. "'" +
  8898. ", " +
  8899. "'" +
  8900. _stage +
  8901. "'" +
  8902. ", " +
  8903. "'" +
  8904. _task +
  8905. "'" +
  8906. ", " +
  8907. "'" +
  8908. _tool +
  8909. "'" +
  8910. ", " +
  8911. "'" +
  8912. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8913. "'" +
  8914. ", " +
  8915. "'" +
  8916. aTool +
  8917. "'" +
  8918. ", " +
  8919. "`" +
  8920. text +
  8921. "`" +
  8922. ")\n" +
  8923. " });\n" +
  8924. "}\n" +
  8925. "document.head.appendChild(_js);\n";
  8926. _iframe.contentWindow.document.head.appendChild(_ajs);
  8927. }
  8928. }
  8929. }
  8930. U.MD.D.I.getEditorContent = function (iframe) {
  8931. return new Promise((resolve, reject) => {
  8932. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8933. console.log(content);
  8934. resolve(content)
  8935. });
  8936. });
  8937. }
  8938. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8939. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8940. // if (res.value[0].length > 0) {
  8941. // // resolve(res.value[0][0].text);
  8942. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8943. // $(fileInput).val('');
  8944. // });
  8945. // }
  8946. // }, [], { "type": "GET", "withCredentials": true });
  8947. var xmlhttp;
  8948. var Mac, Sn, DeviceId
  8949. if (window.XMLHttpRequest) {
  8950. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8951. xmlhttp = new XMLHttpRequest();
  8952. } else {
  8953. // IE6, IE5 浏览器执行代码
  8954. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8955. }
  8956. xmlhttp.onreadystatechange = function () {
  8957. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8958. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8959. // resolve(res.value[0][0].text);
  8960. if (type == '2') {
  8961. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8962. } else if (type == '3') {
  8963. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8964. }
  8965. } else {
  8966. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8967. }
  8968. }
  8969. }
  8970. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8971. xmlhttp.send();
  8972. }
  8973. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8974. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8975. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8976. _userinfo = US.userInfo, //登录用户信息
  8977. _userid = US.userInfo.userid //登录用户id
  8978. let _iframe;
  8979. let _cid = cid,
  8980. _stage = stage,
  8981. _task = task,
  8982. _tool = tool;
  8983. var _jie = $$("div", {
  8984. "style": {
  8985. "position": "absolute",
  8986. "bottom": "50px",
  8987. "right": "50px",
  8988. "zIndex": "9999",
  8989. "backgroundColor": "#2268bc",
  8990. "color": "#fff",
  8991. "padding": "12px 20px",
  8992. "cursor": "pointer",
  8993. "borderRadius": "4px",
  8994. },
  8995. "innerHTML": "确认并提交"
  8996. })
  8997. let aTool = ''
  8998. let _loading = document.createElement('div')
  8999. _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;"
  9000. // _loading.id = "";
  9001. let _lchild = document.createElement('div')
  9002. let _limg = document.createElement('img')
  9003. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9004. _limg.style = "width: 26px;margin-right: 10px;"
  9005. _lchild.appendChild(_limg)
  9006. let _lspan = document.createElement('span')
  9007. _lspan.innerHTML = "上传中..."
  9008. _lchild.appendChild(_lspan)
  9009. _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%);"
  9010. _loading.appendChild(_lchild)
  9011. var _box = $$('div', {
  9012. "style": {
  9013. "position": "relative",
  9014. "width": "100%",
  9015. "height": "100%",
  9016. },
  9017. })
  9018. _box.appendChild(_loading)
  9019. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9020. switch (str) {
  9021. case "whiteboard":
  9022. aTool = 1;
  9023. _iframe = $$("iframe", {
  9024. "frameborder": "no",
  9025. "border": "0",
  9026. "scrolling ": "no",
  9027. "style": {
  9028. "cssText": "border:0;width:100%;height:100%"
  9029. },
  9030. "src": "https://beta.iwb.cocorobo.cn/"
  9031. })
  9032. _box.appendChild(_iframe);
  9033. _box.appendChild(_jie);
  9034. _formdiv = new U.UF.UI.form(
  9035. "电子白板",
  9036. _box, {
  9037. "id": "whiteboards" + cid + stage + task + tool,
  9038. "style": {
  9039. "width": "90%",
  9040. "height": "90%",
  9041. "overflow": 'hidden'
  9042. },
  9043. "onresize": function () { }
  9044. }, {
  9045. closecallback: function () { }
  9046. }, {
  9047. "style": {
  9048. "height": "36px"
  9049. }
  9050. }).form; //创建窗体
  9051. _taskbar = {
  9052. "id": str + _formdiv.id,
  9053. "style": {
  9054. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9055. },
  9056. "name": "电子白板",
  9057. "forms": _formdiv,
  9058. "click": function () {
  9059. U.MD.D.I.openApplication(str, obj, info);
  9060. }
  9061. }
  9062. break;
  9063. case "mind":
  9064. aTool = 3;
  9065. _iframe = $$("iframe", {
  9066. "frameborder": "no",
  9067. "border": "0",
  9068. "scrolling ": "no",
  9069. "style": {
  9070. "cssText": "border:0;width:100%;height:100%"
  9071. },
  9072. "src": "/kityminder-editor/dist/index.html"
  9073. });
  9074. _box.appendChild(_iframe);
  9075. _box.appendChild(_jie);
  9076. _formdiv = new U.UF.UI.form(
  9077. "思维导图",
  9078. _box, { //"/jsmind/example/demo.html"
  9079. "id": "minds" + cid + stage + task + tool,
  9080. "style": {
  9081. "width": "90%",
  9082. "height": "90%",
  9083. "overflow": 'hidden'
  9084. },
  9085. "onresize": function () { }
  9086. }, {
  9087. closecallback: function () { }
  9088. }, {
  9089. "style": {
  9090. "height": "36px"
  9091. }
  9092. }).form; //创建窗体
  9093. _taskbar = {
  9094. "id": str + _formdiv.id,
  9095. "style": {
  9096. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9097. },
  9098. "name": "思维导图",
  9099. "forms": _formdiv,
  9100. "click": function () {
  9101. U.MD.D.I.openApplication(str, obj, info);
  9102. }
  9103. }
  9104. break;
  9105. case "doc":
  9106. aTool = 6;
  9107. _iframe = $$("iframe", {
  9108. "frameborder": "no",
  9109. "border": "0",
  9110. "scrolling ": "no",
  9111. "style": {
  9112. "cssText": "border:0;width:100%;height:100%"
  9113. },
  9114. "src": "/Office/Word/WordEditArea.htm"
  9115. })
  9116. _box.appendChild(_iframe);
  9117. _box.appendChild(_jie);
  9118. _formdiv = new U.UF.UI.form(
  9119. "协同文档",
  9120. _box, {
  9121. "id": "docs" + cid + stage + task + tool,
  9122. "style": {
  9123. "width": "90%",
  9124. "height": "90%",
  9125. "overflow": 'hidden'
  9126. },
  9127. "onresize": function () { }
  9128. }, {
  9129. closecallback: function () { }
  9130. }, {
  9131. "style": {
  9132. "height": "36px"
  9133. }
  9134. }).form; //创建窗体
  9135. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9136. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9137. })
  9138. _taskbar = {
  9139. "id": str + _formdiv.id,
  9140. "style": {
  9141. "backgroundImage": "url(/img/icon/doc.png)"
  9142. },
  9143. "name": "协同文档",
  9144. "forms": _formdiv,
  9145. "click": function () {
  9146. U.MD.D.I.openApplication(str, obj, info);
  9147. }
  9148. }
  9149. break;
  9150. }
  9151. const script1 = document.createElement("script");
  9152. script1.type = "text/javascript";
  9153. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9154. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9155. const script2 = document.createElement("script");
  9156. script2.type = "text/javascript";
  9157. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9158. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9159. const script3 = document.createElement("script");
  9160. script3.type = "text/javascript";
  9161. script3.charset = "UTF-8";
  9162. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9163. const script4 = document.createElement("script");
  9164. script4.type = "text/javascript";
  9165. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9166. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9167. if (_iframe) {
  9168. if (str == 'doc') {
  9169. _iframe = _formdiv.querySelector('iframe')
  9170. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9171. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9172. _iframe.contentWindow.document.body.appendChild(script1);
  9173. _iframe.contentWindow.document.body.appendChild(script2);
  9174. // _iframe.contentWindow.document.body.appendChild(script3);
  9175. _iframe.contentWindow.document.body.appendChild(script4);
  9176. })
  9177. if (onloadListener) {
  9178. _iframe.contentDocument.location.reload()
  9179. } else {
  9180. _iframe.contentDocument.location.reload()
  9181. }
  9182. } else if (str == 'mind') {
  9183. _iframe = _formdiv.querySelector('iframe')
  9184. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9185. _iframe.contentWindow.document.body.appendChild(script1);
  9186. _iframe.contentWindow.document.body.appendChild(script2);
  9187. _iframe.contentWindow.document.body.appendChild(script4);
  9188. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9189. })
  9190. if (onloadListener) {
  9191. _iframe.contentDocument.location.reload()
  9192. } else {
  9193. _iframe.contentDocument.location.reload()
  9194. }
  9195. } else {
  9196. _iframe.onload = () => {
  9197. _iframe.contentWindow.document.body.appendChild(script1);
  9198. _iframe.contentWindow.document.body.appendChild(script2);
  9199. // _iframe.contentWindow.document.body.appendChild(script3);
  9200. _iframe.contentWindow.document.body.appendChild(script4);
  9201. };
  9202. }
  9203. _jie.onclick = async () => {
  9204. let text = ''
  9205. if (aTool == 6) {
  9206. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9207. } else if (aTool == 3) {
  9208. text = await U.MD.D.I.getEditorContent(_iframe);
  9209. }
  9210. _loading.style.display = 'flex'
  9211. console.log(_loading);
  9212. var _ajs = _iframe.contentWindow.document.createElement("script");
  9213. _ajs.type = "text/javascript";
  9214. _ajs.innerHTML =
  9215. // 'console.log(' + _loading + ');\n' +
  9216. 'var _js = document.createElement("script");\n' +
  9217. '_js.type="text/javascript";\n' +
  9218. '_js.charset="UTF-8";\n' +
  9219. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9220. "_js.onload = function(){\n" +
  9221. ' var a = document.getElementsByTagName("img")\n' +
  9222. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9223. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9224. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9225. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9226. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9227. "beforeUpload_shishi(file," +
  9228. "'" +
  9229. _userid +
  9230. "'" +
  9231. ", " +
  9232. "'" +
  9233. _cid +
  9234. "'" +
  9235. ", " +
  9236. "'" +
  9237. _stage +
  9238. "'" +
  9239. ", " +
  9240. "'" +
  9241. _task +
  9242. "'" +
  9243. ", " +
  9244. "'" +
  9245. _tool +
  9246. "'" +
  9247. ", " +
  9248. "'" +
  9249. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9250. "'" +
  9251. ", " +
  9252. "'" +
  9253. aTool +
  9254. "'" +
  9255. ", " +
  9256. "`" +
  9257. text +
  9258. "`" +
  9259. ")\n" +
  9260. " });\n" +
  9261. "}\n" +
  9262. "document.head.appendChild(_js);\n";
  9263. _iframe.contentWindow.document.head.appendChild(_ajs);
  9264. }
  9265. }
  9266. //U.MD.D.I.openClick(str);
  9267. //如果有任务栏信息
  9268. // if (_taskbar) {
  9269. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9270. // }
  9271. }
  9272. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9273. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9274. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9275. _userinfo = US.userInfo, //登录用户信息
  9276. _userid = US.userInfo.userid //登录用户id
  9277. let _iframe;
  9278. let _cid = cid,
  9279. _stage = stage,
  9280. _task = task,
  9281. _tool = tool;
  9282. var _jie = $$("div", {
  9283. "style": {
  9284. "position": "absolute",
  9285. "bottom": "50px",
  9286. "right": "50px",
  9287. "zIndex": "9999",
  9288. "backgroundColor": "#2268bc",
  9289. "color": "#fff",
  9290. "padding": "12px 20px",
  9291. "cursor": "pointer",
  9292. "borderRadius": "4px",
  9293. },
  9294. "innerHTML": "确认并提交"
  9295. })
  9296. let aTool = ''
  9297. let _loading = document.createElement('div')
  9298. _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;"
  9299. // _loading.id = "";
  9300. let _lchild = document.createElement('div')
  9301. let _limg = document.createElement('img')
  9302. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9303. _limg.style = "width: 26px;margin-right: 10px;"
  9304. _lchild.appendChild(_limg)
  9305. let _lspan = document.createElement('span')
  9306. _lspan.innerHTML = "上传中..."
  9307. _lchild.appendChild(_lspan)
  9308. _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%);"
  9309. _loading.appendChild(_lchild)
  9310. var _box = $$('div', {
  9311. "style": {
  9312. "position": "relative",
  9313. "width": "100%",
  9314. "height": "100%",
  9315. },
  9316. })
  9317. _box.appendChild(_loading)
  9318. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9319. switch (str) {
  9320. case "whiteboard":
  9321. aTool = 1;
  9322. _iframe = $$("iframe", {
  9323. "frameborder": "no",
  9324. "border": "0",
  9325. "scrolling ": "no",
  9326. "style": {
  9327. "cssText": "border:0;width:100%;height:100%"
  9328. },
  9329. "src": "https://beta.iwb.cocorobo.cn/"
  9330. })
  9331. _box.appendChild(_iframe);
  9332. _box.appendChild(_jie);
  9333. _formdiv = new U.UF.UI.form(
  9334. "电子白板",
  9335. _box, {
  9336. "id": "whiteboards" + cid + stage + task + tool,
  9337. "style": {
  9338. "width": "90%",
  9339. "height": "90%",
  9340. "overflow": 'hidden'
  9341. },
  9342. "onresize": function () { }
  9343. }, {
  9344. closecallback: function () { }
  9345. }, {
  9346. "style": {
  9347. "height": "36px"
  9348. }
  9349. }).form; //创建窗体
  9350. _taskbar = {
  9351. "id": str + _formdiv.id,
  9352. "style": {
  9353. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9354. },
  9355. "name": "电子白板",
  9356. "forms": _formdiv,
  9357. "click": function () {
  9358. U.MD.D.I.openApplication(str, obj, info);
  9359. }
  9360. }
  9361. break;
  9362. case "mind":
  9363. aTool = 3;
  9364. _iframe = $$("iframe", {
  9365. "frameborder": "no",
  9366. "border": "0",
  9367. "scrolling ": "no",
  9368. "style": {
  9369. "cssText": "border:0;width:100%;height:100%"
  9370. },
  9371. "src": "/kityminder-editor/dist/index.html"
  9372. });
  9373. _box.appendChild(_iframe);
  9374. _box.appendChild(_jie);
  9375. _formdiv = new U.UF.UI.form(
  9376. "思维导图",
  9377. _box, { //"/jsmind/example/demo.html"
  9378. "id": "minds" + cid + stage + task + tool,
  9379. "style": {
  9380. "width": "90%",
  9381. "height": "90%",
  9382. "overflow": 'hidden'
  9383. },
  9384. "onresize": function () { }
  9385. }, {
  9386. closecallback: function () { }
  9387. }, {
  9388. "style": {
  9389. "height": "36px"
  9390. }
  9391. }).form; //创建窗体
  9392. _taskbar = {
  9393. "id": str + _formdiv.id,
  9394. "style": {
  9395. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9396. },
  9397. "name": "思维导图",
  9398. "forms": _formdiv,
  9399. "click": function () {
  9400. U.MD.D.I.openApplication(str, obj, info);
  9401. }
  9402. }
  9403. break;
  9404. case "doc":
  9405. aTool = 6;
  9406. _iframe = $$("iframe", {
  9407. "frameborder": "no",
  9408. "border": "0",
  9409. "scrolling ": "no",
  9410. "style": {
  9411. "cssText": "border:0;width:100%;height:100%"
  9412. },
  9413. "src": "/Office/Word/WordEditArea.htm"
  9414. })
  9415. _box.appendChild(_iframe);
  9416. _box.appendChild(_jie);
  9417. _formdiv = new U.UF.UI.form(
  9418. "协同文档",
  9419. _box, {
  9420. "id": "docs" + cid + stage + task + tool,
  9421. "style": {
  9422. "width": "90%",
  9423. "height": "90%",
  9424. "overflow": 'hidden'
  9425. },
  9426. "onresize": function () { }
  9427. }, {
  9428. closecallback: function () { }
  9429. }, {
  9430. "style": {
  9431. "height": "36px"
  9432. }
  9433. }).form; //创建窗体
  9434. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9435. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9436. })
  9437. _taskbar = {
  9438. "id": str + _formdiv.id,
  9439. "style": {
  9440. "backgroundImage": "url(/img/icon/doc.png)"
  9441. },
  9442. "name": "协同文档",
  9443. "forms": _formdiv,
  9444. "click": function () {
  9445. U.MD.D.I.openApplication(str, obj, info);
  9446. }
  9447. }
  9448. break;
  9449. }
  9450. const script1 = document.createElement("script");
  9451. script1.type = "text/javascript";
  9452. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9453. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9454. const script2 = document.createElement("script");
  9455. script2.type = "text/javascript";
  9456. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9457. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9458. const script3 = document.createElement("script");
  9459. script3.type = "text/javascript";
  9460. script3.charset = "UTF-8";
  9461. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9462. const script4 = document.createElement("script");
  9463. script4.type = "text/javascript";
  9464. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9465. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9466. if (_iframe) {
  9467. if (str == 'doc') {
  9468. _iframe = _formdiv.querySelector('iframe')
  9469. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9470. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9471. _iframe.contentWindow.document.body.appendChild(script1);
  9472. _iframe.contentWindow.document.body.appendChild(script2);
  9473. // _iframe.contentWindow.document.body.appendChild(script3);
  9474. _iframe.contentWindow.document.body.appendChild(script4);
  9475. })
  9476. if (onloadListener) {
  9477. _iframe.contentDocument.location.reload()
  9478. } else {
  9479. _iframe.contentDocument.location.reload()
  9480. }
  9481. } else if (str == 'mind') {
  9482. _iframe = _formdiv.querySelector('iframe')
  9483. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9484. _iframe.contentWindow.document.body.appendChild(script1);
  9485. _iframe.contentWindow.document.body.appendChild(script2);
  9486. _iframe.contentWindow.document.body.appendChild(script4);
  9487. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9488. })
  9489. if (onloadListener) {
  9490. _iframe.contentDocument.location.reload()
  9491. } else {
  9492. _iframe.contentDocument.location.reload()
  9493. }
  9494. } else {
  9495. _iframe.onload = () => {
  9496. _iframe.contentWindow.document.body.appendChild(script1);
  9497. _iframe.contentWindow.document.body.appendChild(script2);
  9498. // _iframe.contentWindow.document.body.appendChild(script3);
  9499. _iframe.contentWindow.document.body.appendChild(script4);
  9500. };
  9501. }
  9502. _jie.onclick = async () => {
  9503. let text = ''
  9504. if (aTool == 6) {
  9505. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9506. } else if (aTool == 3) {
  9507. text = await U.MD.D.I.getEditorContent(_iframe);
  9508. }
  9509. _loading.style.display = 'flex'
  9510. console.log(_loading);
  9511. var _ajs = _iframe.contentWindow.document.createElement("script");
  9512. _ajs.type = "text/javascript";
  9513. _ajs.innerHTML =
  9514. // 'console.log(' + _loading + ');\n' +
  9515. 'var _js = document.createElement("script");\n' +
  9516. '_js.type="text/javascript";\n' +
  9517. '_js.charset="UTF-8";\n' +
  9518. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9519. "_js.onload = function(){\n" +
  9520. ' var a = document.getElementsByTagName("img")\n' +
  9521. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9522. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9523. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9524. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9525. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9526. "beforeUpload_shishi(file," +
  9527. "'" +
  9528. _userid +
  9529. "'" +
  9530. ", " +
  9531. "'" +
  9532. _cid +
  9533. "'" +
  9534. ", " +
  9535. "'" +
  9536. _stage +
  9537. "'" +
  9538. ", " +
  9539. "'" +
  9540. _task +
  9541. "'" +
  9542. ", " +
  9543. "'" +
  9544. _tool +
  9545. "'" +
  9546. ", " +
  9547. "'" +
  9548. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9549. "'" +
  9550. ", " +
  9551. "'" +
  9552. aTool +
  9553. "'" +
  9554. ", " +
  9555. "`" +
  9556. text +
  9557. "`" +
  9558. ")\n" +
  9559. " });\n" +
  9560. "}\n" +
  9561. "document.head.appendChild(_js);\n";
  9562. _iframe.contentWindow.document.head.appendChild(_ajs);
  9563. }
  9564. }
  9565. //U.MD.D.I.openClick(str);
  9566. //如果有任务栏信息
  9567. // if (_taskbar) {
  9568. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9569. // }
  9570. }
  9571. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9572. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9573. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9574. _userinfo = US.userInfo, //登录用户信息
  9575. _userid = US.userInfo.userid //登录用户id
  9576. let _iframe;
  9577. let _cid = cid,
  9578. _stage = stage,
  9579. _task = task,
  9580. _tool = tool;
  9581. var _jie = $$("div", {
  9582. "style": {
  9583. "position": "absolute",
  9584. "bottom": "50px",
  9585. "right": "50px",
  9586. "zIndex": "9999",
  9587. "backgroundColor": "#2268bc",
  9588. "color": "#fff",
  9589. "padding": "12px 20px",
  9590. "cursor": "pointer",
  9591. "borderRadius": "4px",
  9592. },
  9593. "innerHTML": "上传模板"
  9594. })
  9595. let aTool = ''
  9596. let _loading = document.createElement('div')
  9597. _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;"
  9598. // _loading.id = "";
  9599. let _lchild = document.createElement('div')
  9600. let _limg = document.createElement('img')
  9601. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9602. _limg.style = "width: 26px;margin-right: 10px;"
  9603. _lchild.appendChild(_limg)
  9604. let _lspan = document.createElement('span')
  9605. _lspan.innerHTML = "上传中..."
  9606. _lchild.appendChild(_lspan)
  9607. _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%);"
  9608. _loading.appendChild(_lchild)
  9609. var _box = $$('div', {
  9610. "style": {
  9611. "position": "relative",
  9612. "width": "100%",
  9613. "height": "100%",
  9614. },
  9615. })
  9616. _box.appendChild(_loading)
  9617. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9618. switch (str) {
  9619. case "whiteboard":
  9620. aTool = 1;
  9621. _iframe = $$("iframe", {
  9622. "frameborder": "no",
  9623. "border": "0",
  9624. "scrolling ": "no",
  9625. "style": {
  9626. "cssText": "border:0;width:100%;height:100%"
  9627. },
  9628. "src": "https://beta.iwb.cocorobo.cn/"
  9629. })
  9630. _box.appendChild(_iframe);
  9631. _box.appendChild(_jie);
  9632. _formdiv = new U.UF.UI.form(
  9633. "电子白板",
  9634. _box, {
  9635. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9636. "style": {
  9637. "width": "90%",
  9638. "height": "90%",
  9639. "overflow": 'hidden'
  9640. },
  9641. "onresize": function () { }
  9642. }, {
  9643. closecallback: function () { }
  9644. }, {
  9645. "style": {
  9646. "height": "36px"
  9647. }
  9648. }).form; //创建窗体
  9649. _taskbar = {
  9650. "id": str + _formdiv.id,
  9651. "style": {
  9652. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9653. },
  9654. "name": "电子白板",
  9655. "forms": _formdiv,
  9656. "click": function () {
  9657. U.MD.D.I.openApplication(str, obj, info);
  9658. }
  9659. }
  9660. break;
  9661. case "mind":
  9662. aTool = 3;
  9663. _iframe = $$("iframe", {
  9664. "frameborder": "no",
  9665. "border": "0",
  9666. "scrolling ": "no",
  9667. "style": {
  9668. "cssText": "border:0;width:100%;height:100%"
  9669. },
  9670. "src": "/kityminder-editor/dist/index.html"
  9671. });
  9672. _box.appendChild(_iframe);
  9673. _box.appendChild(_jie);
  9674. _formdiv = new U.UF.UI.form(
  9675. "思维导图",
  9676. _box, { //"/jsmind/example/demo.html"
  9677. "id": "minds_Yu" + cid + stage + task + tool,
  9678. "style": {
  9679. "width": "90%",
  9680. "height": "90%",
  9681. "overflow": 'hidden'
  9682. },
  9683. "onresize": function () { }
  9684. }, {
  9685. closecallback: function () { }
  9686. }, {
  9687. "style": {
  9688. "height": "36px"
  9689. }
  9690. }).form; //创建窗体
  9691. _taskbar = {
  9692. "id": str + _formdiv.id,
  9693. "style": {
  9694. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9695. },
  9696. "name": "思维导图",
  9697. "forms": _formdiv,
  9698. "click": function () {
  9699. U.MD.D.I.openApplication(str, obj, info);
  9700. }
  9701. }
  9702. break;
  9703. case "doc":
  9704. aTool = 6;
  9705. _iframe = $$("iframe", {
  9706. "frameborder": "no",
  9707. "border": "0",
  9708. "scrolling ": "no",
  9709. "style": {
  9710. "cssText": "border:0;width:100%;height:100%"
  9711. },
  9712. "src": "/Office/Word/WordEditArea.htm"
  9713. })
  9714. _box.appendChild(_iframe);
  9715. _box.appendChild(_jie);
  9716. _formdiv = new U.UF.UI.form(
  9717. "协同文档",
  9718. _box, {
  9719. "id": "docs_Yu" + cid + stage + task + tool,
  9720. "style": {
  9721. "width": "90%",
  9722. "height": "90%",
  9723. "overflow": 'hidden'
  9724. },
  9725. "onresize": function () { }
  9726. }, {
  9727. closecallback: function () { }
  9728. }, {
  9729. "style": {
  9730. "height": "36px"
  9731. }
  9732. }).form; //创建窗体
  9733. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9734. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9735. })
  9736. _taskbar = {
  9737. "id": str + _formdiv.id,
  9738. "style": {
  9739. "backgroundImage": "url(/img/icon/doc.png)"
  9740. },
  9741. "name": "协同文档",
  9742. "forms": _formdiv,
  9743. "click": function () {
  9744. U.MD.D.I.openApplication(str, obj, info);
  9745. }
  9746. }
  9747. break;
  9748. case "CocoPi":
  9749. aTool = 57;
  9750. _iframe = $$("iframe", {
  9751. "allowpaymentrequest": "allowpaymentrequest",
  9752. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9753. "webkitallowfullscreen": "",
  9754. "mozallowfullscreen": "",
  9755. "frameborder": "no",
  9756. "border": "0",
  9757. "scrolling ": "no",
  9758. "style": {
  9759. "cssText": "border:0;width:100%;height:100%"
  9760. },
  9761. "src": "https://pi.cocorobo.cn/"
  9762. })
  9763. _box.appendChild(_iframe);
  9764. _box.appendChild(_jie);
  9765. _formdiv = new U.UF.UI.form(
  9766. "CocoPi",
  9767. _box, {
  9768. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9769. "style": {
  9770. "width": "90%",
  9771. "height": "90%",
  9772. "overflow": 'hidden'
  9773. },
  9774. "onresize": function () { }
  9775. }, {
  9776. closecallback: function () { }
  9777. }, {
  9778. "style": {
  9779. "height": "36px"
  9780. }
  9781. }).form; //创建窗体
  9782. _taskbar = {
  9783. "id": str + _formdiv.id,
  9784. "style": {
  9785. "backgroundImage": "url(/img/icon/cocopi.png)"
  9786. },
  9787. "name": "CocoPi",
  9788. "forms": _formdiv,
  9789. "click": function () {
  9790. U.MD.D.I.openApplication(str, obj, info);
  9791. }
  9792. }
  9793. break;
  9794. }
  9795. if (_iframe) {
  9796. if (str == 'doc') {
  9797. _iframe = _formdiv.querySelector('iframe')
  9798. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9799. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9800. })
  9801. if (onloadListener) {
  9802. _iframe.contentDocument.location.reload()
  9803. } else {
  9804. _iframe.contentDocument.location.reload()
  9805. }
  9806. } else if (str == 'mind') {
  9807. _iframe = _formdiv.querySelector('iframe')
  9808. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9809. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9810. })
  9811. if (onloadListener) {
  9812. _iframe.contentDocument.location.reload()
  9813. } else {
  9814. _iframe.contentDocument.location.reload()
  9815. }
  9816. } else if (str == 'whiteboard') {
  9817. _iframe = _formdiv.querySelector('iframe')
  9818. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9819. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9820. })
  9821. // if (onloadListener) {
  9822. // try {
  9823. // _iframe.src += "?cocorobo="+new Date().getTime()
  9824. // _iframe.contentWindow.document.location.reload()
  9825. // } catch (error) {
  9826. // }
  9827. // } else {
  9828. // _iframe.contentDocument.location.reload()
  9829. // }
  9830. } else if (str == 'CocoPi') {
  9831. _iframe = _formdiv.querySelector('iframe')
  9832. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9833. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9834. })
  9835. if (onloadListener) {
  9836. _iframe.contentDocument.location.reload()
  9837. } else {
  9838. _iframe.contentDocument.location.reload()
  9839. }
  9840. } else {
  9841. _iframe.onload = () => { };
  9842. }
  9843. _jie.onclick = async () => {
  9844. let text = ''
  9845. let type = '2'
  9846. if (aTool == 1) {
  9847. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9848. type = '3'
  9849. } else if (aTool == 6) {
  9850. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9851. type = '1'
  9852. } else if (aTool == 3) {
  9853. text = await U.MD.D.I.getEditorContent(_iframe);
  9854. type = '2'
  9855. } else if (aTool == 57) {
  9856. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9857. type = '4'
  9858. }
  9859. _loading.style.display = 'flex'
  9860. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9861. }
  9862. }
  9863. //U.MD.D.I.openClick(str);
  9864. //如果有任务栏信息
  9865. // if (_taskbar) {
  9866. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9867. // }
  9868. }
  9869. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9870. var xmlhttp;
  9871. var Mac, Sn, DeviceId
  9872. if (window.XMLHttpRequest) {
  9873. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9874. xmlhttp = new XMLHttpRequest();
  9875. } else {
  9876. // IE6, IE5 浏览器执行代码
  9877. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9878. }
  9879. xmlhttp.onreadystatechange = function () {
  9880. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9881. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9882. // resolve(res.value[0][0].text);
  9883. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9884. }
  9885. }
  9886. }
  9887. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9888. xmlhttp.send();
  9889. }
  9890. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9891. var xmlhttp;
  9892. var Mac, Sn, DeviceId
  9893. if (window.XMLHttpRequest) {
  9894. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9895. xmlhttp = new XMLHttpRequest();
  9896. } else {
  9897. // IE6, IE5 浏览器执行代码
  9898. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9899. }
  9900. xmlhttp.onreadystatechange = function () {
  9901. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9902. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9903. // resolve(res.value[0][0].text);
  9904. if (type == '2') {
  9905. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9906. } else if (type == '3') {
  9907. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9908. } else if (type == '4') {
  9909. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9910. }
  9911. } else {
  9912. if (type == '2') {
  9913. iframe.contentWindow.editor.minder.importData('json', '')
  9914. } else if (type == '3') {
  9915. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9916. } else if (type == '4') {
  9917. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9918. }
  9919. }
  9920. }
  9921. }
  9922. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9923. xmlhttp.send();
  9924. }
  9925. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9926. var xmlhttp;
  9927. var Mac, Sn, DeviceId
  9928. if (window.XMLHttpRequest) {
  9929. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9930. xmlhttp = new XMLHttpRequest();
  9931. } else {
  9932. // IE6, IE5 浏览器执行代码
  9933. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9934. }
  9935. xmlhttp.onreadystatechange = function () {
  9936. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9937. if (xmlhttp.response) {
  9938. // resolve(res.value[0][0].text);
  9939. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9940. // $(fileInput).val('');
  9941. // });
  9942. span.innerHTML = '上传成功'
  9943. setTimeout(() => {
  9944. loading.style.display = 'none'
  9945. }, 1000);
  9946. }
  9947. }
  9948. }
  9949. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9950. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9951. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9952. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9953. // 设置请求头,表示请求体的编码格式
  9954. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9955. // 设置请求体,使用url-encoded格式的数据
  9956. }
  9957. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9958. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9959. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9960. _userinfo = US.userInfo, //登录用户信息
  9961. _userid = US.userInfo.userid //登录用户id
  9962. let _iframe;
  9963. let _cid = cid,
  9964. _stage = stage,
  9965. _task = task,
  9966. _tool = tool;
  9967. var _jie = $$("div", {
  9968. "style": {
  9969. "position": "absolute",
  9970. "bottom": "50px",
  9971. "right": "50px",
  9972. "zIndex": "9999",
  9973. "backgroundColor": "#2268bc",
  9974. "color": "#fff",
  9975. "padding": "12px 20px",
  9976. "cursor": "pointer",
  9977. "borderRadius": "4px",
  9978. },
  9979. "innerHTML": "提交作业"
  9980. })
  9981. let aTool = ''
  9982. let _loading = document.createElement('div')
  9983. _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;"
  9984. // _loading.id = "";
  9985. let _lchild = document.createElement('div')
  9986. let _limg = document.createElement('img')
  9987. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9988. _limg.style = "width: 26px;margin-right: 10px;"
  9989. _lchild.appendChild(_limg)
  9990. let _lspan = document.createElement('span')
  9991. _lspan.innerHTML = "上传中..."
  9992. _lchild.appendChild(_lspan)
  9993. _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%);"
  9994. _loading.appendChild(_lchild)
  9995. var _box = $$('div', {
  9996. "style": {
  9997. "position": "relative",
  9998. "width": "100%",
  9999. "height": "100%",
  10000. },
  10001. })
  10002. _box.appendChild(_loading)
  10003. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10004. switch (str) {
  10005. case "CocoPi":
  10006. aTool = 57;
  10007. _iframe = $$("iframe", {
  10008. "allowpaymentrequest": "allowpaymentrequest",
  10009. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10010. "webkitallowfullscreen": "",
  10011. "mozallowfullscreen": "",
  10012. "frameborder": "no",
  10013. "border": "0",
  10014. "scrolling ": "no",
  10015. "style": {
  10016. "cssText": "border:0;width:100%;height:100%"
  10017. },
  10018. "src": "https://pi.cocorobo.cn/"
  10019. })
  10020. _box.appendChild(_iframe);
  10021. _box.appendChild(_jie);
  10022. _formdiv = new U.UF.UI.form(
  10023. "CocoPi",
  10024. _box, {
  10025. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10026. "style": {
  10027. "width": "90%",
  10028. "height": "90%",
  10029. "overflow": 'hidden'
  10030. },
  10031. "onresize": function () { }
  10032. }, {
  10033. closecallback: function () { }
  10034. }, {
  10035. "style": {
  10036. "height": "36px"
  10037. }
  10038. }).form; //创建窗体
  10039. _taskbar = {
  10040. "id": str + _formdiv.id,
  10041. "style": {
  10042. "backgroundImage": "url(/img/icon/cocopi.png)"
  10043. },
  10044. "name": "CocoPi",
  10045. "forms": _formdiv,
  10046. "click": function () {
  10047. U.MD.D.I.openApplication(str, obj, info);
  10048. }
  10049. }
  10050. break;
  10051. }
  10052. if (_iframe) {
  10053. if (str == 'CocoPi') {
  10054. _iframe = _formdiv.querySelector('iframe')
  10055. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10056. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10057. })
  10058. if (onloadListener) {
  10059. _iframe.contentDocument.location.reload()
  10060. } else {
  10061. _iframe.contentDocument.location.reload()
  10062. }
  10063. }
  10064. _jie.onclick = async () => {
  10065. let text = ''
  10066. if (aTool == 57) {
  10067. text = _iframe.contentWindow.getLoadXmlStr()
  10068. }
  10069. _loading.style.display = 'flex'
  10070. console.log(_loading);
  10071. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10072. _loading.style.display = 'none'
  10073. let _div = document.createElement('div')
  10074. _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;"
  10075. let _inner = document.createElement('div')
  10076. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10077. _inner.innerHTML = "上传成功"
  10078. _div.appendChild(_inner)
  10079. _iframe.contentWindow.window.document.body.appendChild(_div)
  10080. _div.onclick = () => {
  10081. _iframe.contentWindow.window.document.body.removeChild(_div)
  10082. }
  10083. setTimeout(() => {
  10084. _iframe.contentWindow.window.document.body.removeChild(_div)
  10085. }, 1000);
  10086. }, [], { "type": "POST", "withCredentials": true });
  10087. }
  10088. }
  10089. }
  10090. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10091. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10092. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10093. _userid = student.userid, //登录用户id
  10094. _username = student.student //用户名字
  10095. let _iframe;
  10096. let _cid = cid,
  10097. _stage = stage,
  10098. _task = task,
  10099. _tool = tool;
  10100. var _jie = $$("div", {
  10101. "style": {
  10102. "position": "absolute",
  10103. "bottom": "50px",
  10104. "right": "50px",
  10105. "zIndex": "9999",
  10106. "backgroundColor": "#2268bc",
  10107. "color": "#fff",
  10108. "padding": "12px 20px",
  10109. "cursor": "pointer",
  10110. "borderRadius": "4px",
  10111. },
  10112. "innerHTML": "提交作业"
  10113. })
  10114. let aTool = ''
  10115. let _loading = document.createElement('div')
  10116. _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;"
  10117. // _loading.id = "";
  10118. let _lchild = document.createElement('div')
  10119. let _limg = document.createElement('img')
  10120. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10121. _limg.style = "width: 26px;margin-right: 10px;"
  10122. _lchild.appendChild(_limg)
  10123. let _lspan = document.createElement('span')
  10124. _lspan.innerHTML = "上传中..."
  10125. _lchild.appendChild(_lspan)
  10126. _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%);"
  10127. _loading.appendChild(_lchild)
  10128. var _box = $$('div', {
  10129. "style": {
  10130. "position": "relative",
  10131. "width": "100%",
  10132. "height": "100%",
  10133. },
  10134. })
  10135. _box.appendChild(_loading)
  10136. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10137. switch (str) {
  10138. case "CocoPi":
  10139. aTool = 57;
  10140. _iframe = $$("iframe", {
  10141. "allowpaymentrequest": "allowpaymentrequest",
  10142. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10143. "webkitallowfullscreen": "",
  10144. "mozallowfullscreen": "",
  10145. "frameborder": "no",
  10146. "border": "0",
  10147. "scrolling ": "no",
  10148. "style": {
  10149. "cssText": "border:0;width:100%;height:100%"
  10150. },
  10151. "src": "https://pi.cocorobo.cn/"
  10152. })
  10153. _box.appendChild(_iframe);
  10154. _box.appendChild(_jie);
  10155. _formdiv = new U.UF.UI.form(
  10156. "CocoPi-" + _username,
  10157. _box, {
  10158. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10159. "style": {
  10160. "width": "90%",
  10161. "height": "90%",
  10162. "overflow": 'hidden'
  10163. },
  10164. "onresize": function () { }
  10165. }, {
  10166. closecallback: function () { }
  10167. }, {
  10168. "style": {
  10169. "height": "36px"
  10170. }
  10171. }).form; //创建窗体
  10172. _taskbar = {
  10173. "id": str + _formdiv.id,
  10174. "style": {
  10175. "backgroundImage": "url(/img/icon/cocopi.png)"
  10176. },
  10177. "name": "CocoPi",
  10178. "forms": _formdiv,
  10179. "click": function () {
  10180. U.MD.D.I.openApplication(str, obj, info);
  10181. }
  10182. }
  10183. break;
  10184. }
  10185. if (_iframe) {
  10186. if (str == 'CocoPi') {
  10187. _iframe = _formdiv.querySelector('iframe')
  10188. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10189. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10190. })
  10191. if (onloadListener) {
  10192. _iframe.contentDocument.location.reload()
  10193. } else {
  10194. _iframe.contentDocument.location.reload()
  10195. }
  10196. }
  10197. _jie.onclick = async () => {
  10198. let text = ''
  10199. if (aTool == 57) {
  10200. text = _iframe.contentWindow.getLoadXmlStr()
  10201. }
  10202. _loading.style.display = 'flex'
  10203. console.log(_loading);
  10204. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10205. _loading.style.display = 'none'
  10206. let _div = document.createElement('div')
  10207. _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;"
  10208. let _inner = document.createElement('div')
  10209. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10210. _inner.innerHTML = "上传成功"
  10211. _div.appendChild(_inner)
  10212. _iframe.contentWindow.window.document.body.appendChild(_div)
  10213. _div.onclick = () => {
  10214. _iframe.contentWindow.window.document.body.removeChild(_div)
  10215. }
  10216. setTimeout(() => {
  10217. _iframe.contentWindow.window.document.body.removeChild(_div)
  10218. }, 1000);
  10219. }, [], { "type": "POST", "withCredentials": true });
  10220. }
  10221. }
  10222. }
  10223. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10224. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10225. if (res.value[0].length > 0) {
  10226. if (atool == 57) {
  10227. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10228. }
  10229. } else {
  10230. if (atool == 57) {
  10231. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10232. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10233. }
  10234. }
  10235. }, [], { "type": "POST", "withCredentials": true });
  10236. }